blob: 9c4272de0c578f170d640a66ec9b62fc08bf6585 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000027#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000028#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000029#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000030#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000031#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000032#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000035#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000036#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000037#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCall60d7b3a2010-08-24 06:29:42 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000250 MultiExprArg(*this, &Arg, 1));
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000251 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000252 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000253 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000254
John McCallb4eb64d2010-10-08 02:01:28 +0000255 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000256 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000257
Anders Carlssoned961f92009-08-25 02:29:20 +0000258 // Okay: add the default argument to the parameter
259 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000261 // We have already instantiated this parameter; provide each of the
262 // instantiations with the uninstantiated default argument.
263 UnparsedDefaultArgInstantiationsMap::iterator InstPos
264 = UnparsedDefaultArgInstantiations.find(Param);
265 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
266 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
267 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
268
269 // We're done tracking this parameter's instantiations.
270 UnparsedDefaultArgInstantiations.erase(InstPos);
271 }
272
Anders Carlsson9351c172009-08-25 03:18:48 +0000273 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000274}
275
Chris Lattner8123a952008-04-10 02:22:51 +0000276/// ActOnParamDefaultArgument - Check whether the default argument
277/// provided for a function parameter is well-formed. If so, attach it
278/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000279void
John McCalld226f652010-08-21 09:40:31 +0000280Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000281 Expr *DefaultArg) {
282 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000283 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000284
John McCalld226f652010-08-21 09:40:31 +0000285 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000286 UnparsedDefaultArgLocs.erase(Param);
287
Chris Lattner3d1cee32008-04-08 05:04:30 +0000288 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000289 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000290 Diag(EqualLoc, diag::err_param_default_argument)
291 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000292 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000293 return;
294 }
295
Douglas Gregor6f526752010-12-16 08:48:57 +0000296 // Check for unexpanded parameter packs.
297 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
298 Param->setInvalidDecl();
299 return;
300 }
301
Anders Carlsson66e30672009-08-25 01:02:06 +0000302 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000303 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
304 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000305 Param->setInvalidDecl();
306 return;
307 }
Mike Stump1eb44332009-09-09 15:08:12 +0000308
John McCall9ae2f072010-08-23 23:25:46 +0000309 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000310}
311
Douglas Gregor61366e92008-12-24 00:01:03 +0000312/// ActOnParamUnparsedDefaultArgument - We've seen a default
313/// argument for a function parameter, but we can't parse it yet
314/// because we're inside a class definition. Note that this default
315/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000316void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000317 SourceLocation EqualLoc,
318 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000319 if (!param)
320 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
John McCalld226f652010-08-21 09:40:31 +0000322 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000323 if (Param)
324 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Anders Carlsson5e300d12009-06-12 16:51:40 +0000326 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000327}
328
Douglas Gregor72b505b2008-12-16 21:30:33 +0000329/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
330/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000331void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000332 if (!param)
333 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000334
John McCalld226f652010-08-21 09:40:31 +0000335 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Anders Carlsson5e300d12009-06-12 16:51:40 +0000337 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Anders Carlsson5e300d12009-06-12 16:51:40 +0000339 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000340}
341
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000342/// CheckExtraCXXDefaultArguments - Check for any extra default
343/// arguments in the declarator, which is not a function declaration
344/// or definition and therefore is not permitted to have default
345/// arguments. This routine should be invoked for every declarator
346/// that is not a function declaration or definition.
347void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
348 // C++ [dcl.fct.default]p3
349 // A default argument expression shall be specified only in the
350 // parameter-declaration-clause of a function declaration or in a
351 // template-parameter (14.1). It shall not be specified for a
352 // parameter pack. If it is specified in a
353 // parameter-declaration-clause, it shall not occur within a
354 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000355 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000356 DeclaratorChunk &chunk = D.getTypeObject(i);
357 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000358 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
359 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000360 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000361 if (Param->hasUnparsedDefaultArg()) {
362 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000363 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
364 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
365 delete Toks;
366 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000367 } else if (Param->getDefaultArg()) {
368 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
369 << Param->getDefaultArg()->getSourceRange();
370 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000371 }
372 }
373 }
374 }
375}
376
Chris Lattner3d1cee32008-04-08 05:04:30 +0000377// MergeCXXFunctionDecl - Merge two declarations of the same C++
378// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000379// type. Subroutine of MergeFunctionDecl. Returns true if there was an
380// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000381bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
382 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000383 bool Invalid = false;
384
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000386 // For non-template functions, default arguments can be added in
387 // later declarations of a function in the same
388 // scope. Declarations in different scopes have completely
389 // distinct sets of default arguments. That is, declarations in
390 // inner scopes do not acquire default arguments from
391 // declarations in outer scopes, and vice versa. In a given
392 // function declaration, all parameters subsequent to a
393 // parameter with a default argument shall have default
394 // arguments supplied in this or previous declarations. A
395 // default argument shall not be redefined by a later
396 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000397 //
398 // C++ [dcl.fct.default]p6:
399 // Except for member functions of class templates, the default arguments
400 // in a member function definition that appears outside of the class
401 // definition are added to the set of default arguments provided by the
402 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000403 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
404 ParmVarDecl *OldParam = Old->getParamDecl(p);
405 ParmVarDecl *NewParam = New->getParamDecl(p);
406
James Molloy9cda03f2012-03-13 08:55:35 +0000407 bool OldParamHasDfl = OldParam->hasDefaultArg();
408 bool NewParamHasDfl = NewParam->hasDefaultArg();
409
410 NamedDecl *ND = Old;
411 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
412 // Ignore default parameters of old decl if they are not in
413 // the same scope.
414 OldParamHasDfl = false;
415
416 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000417
Francois Pichet8d051e02011-04-10 03:03:52 +0000418 unsigned DiagDefaultParamID =
419 diag::err_param_default_argument_redefinition;
420
421 // MSVC accepts that default parameters be redefined for member functions
422 // of template class. The new default parameter's value is ignored.
423 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000424 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000425 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
426 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000427 // Merge the old default argument into the new parameter.
428 NewParam->setHasInheritedDefaultArg();
429 if (OldParam->hasUninstantiatedDefaultArg())
430 NewParam->setUninstantiatedDefaultArg(
431 OldParam->getUninstantiatedDefaultArg());
432 else
433 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000434 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000435 Invalid = false;
436 }
437 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000438
Francois Pichet8cf90492011-04-10 04:58:30 +0000439 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
440 // hint here. Alternatively, we could walk the type-source information
441 // for NewParam to find the last source location in the type... but it
442 // isn't worth the effort right now. This is the kind of test case that
443 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000444 // int f(int);
445 // void g(int (*fp)(int) = f);
446 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000447 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000448 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000449
450 // Look for the function declaration where the default argument was
451 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000452 for (FunctionDecl *Older = Old->getPreviousDecl();
453 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000454 if (!Older->getParamDecl(p)->hasDefaultArg())
455 break;
456
457 OldParam = Older->getParamDecl(p);
458 }
459
460 Diag(OldParam->getLocation(), diag::note_previous_definition)
461 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000462 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000463 // Merge the old default argument into the new parameter.
464 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000465 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000466 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000467 if (OldParam->hasUninstantiatedDefaultArg())
468 NewParam->setUninstantiatedDefaultArg(
469 OldParam->getUninstantiatedDefaultArg());
470 else
John McCall3d6c1782010-05-04 01:53:42 +0000471 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000472 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000473 if (New->getDescribedFunctionTemplate()) {
474 // Paragraph 4, quoted above, only applies to non-template functions.
475 Diag(NewParam->getLocation(),
476 diag::err_param_default_argument_template_redecl)
477 << NewParam->getDefaultArgRange();
478 Diag(Old->getLocation(), diag::note_template_prev_declaration)
479 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000480 } else if (New->getTemplateSpecializationKind()
481 != TSK_ImplicitInstantiation &&
482 New->getTemplateSpecializationKind() != TSK_Undeclared) {
483 // C++ [temp.expr.spec]p21:
484 // Default function arguments shall not be specified in a declaration
485 // or a definition for one of the following explicit specializations:
486 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000487 // - the explicit specialization of a member function template;
488 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000489 // template where the class template specialization to which the
490 // member function specialization belongs is implicitly
491 // instantiated.
492 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
493 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
494 << New->getDeclName()
495 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000496 } else if (New->getDeclContext()->isDependentContext()) {
497 // C++ [dcl.fct.default]p6 (DR217):
498 // Default arguments for a member function of a class template shall
499 // be specified on the initial declaration of the member function
500 // within the class template.
501 //
502 // Reading the tea leaves a bit in DR217 and its reference to DR205
503 // leads me to the conclusion that one cannot add default function
504 // arguments for an out-of-line definition of a member function of a
505 // dependent type.
506 int WhichKind = 2;
507 if (CXXRecordDecl *Record
508 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
509 if (Record->getDescribedClassTemplate())
510 WhichKind = 0;
511 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
512 WhichKind = 1;
513 else
514 WhichKind = 2;
515 }
516
517 Diag(NewParam->getLocation(),
518 diag::err_param_default_argument_member_template_redecl)
519 << WhichKind
520 << NewParam->getDefaultArgRange();
Sean Hunt9ae60d52011-05-26 01:26:05 +0000521 } else if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(New)) {
522 CXXSpecialMember NewSM = getSpecialMember(Ctor),
523 OldSM = getSpecialMember(cast<CXXConstructorDecl>(Old));
524 if (NewSM != OldSM) {
525 Diag(NewParam->getLocation(),diag::warn_default_arg_makes_ctor_special)
526 << NewParam->getDefaultArgRange() << NewSM;
527 Diag(Old->getLocation(), diag::note_previous_declaration_special)
528 << OldSM;
529 }
Douglas Gregor6cc15182009-09-11 18:44:32 +0000530 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000531 }
532 }
533
Richard Smithff234882012-02-20 23:28:05 +0000534 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000535 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000536 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000537 if (New->isConstexpr() != Old->isConstexpr()) {
538 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
539 << New << New->isConstexpr();
540 Diag(Old->getLocation(), diag::note_previous_declaration);
541 Invalid = true;
542 }
543
Douglas Gregore13ad832010-02-12 07:32:17 +0000544 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000545 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000546
Douglas Gregorcda9c672009-02-16 17:45:42 +0000547 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000548}
549
Sebastian Redl60618fa2011-03-12 11:50:43 +0000550/// \brief Merge the exception specifications of two variable declarations.
551///
552/// This is called when there's a redeclaration of a VarDecl. The function
553/// checks if the redeclaration might have an exception specification and
554/// validates compatibility and merges the specs if necessary.
555void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
556 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000557 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000558 return;
559
560 assert(Context.hasSameType(New->getType(), Old->getType()) &&
561 "Should only be called if types are otherwise the same.");
562
563 QualType NewType = New->getType();
564 QualType OldType = Old->getType();
565
566 // We're only interested in pointers and references to functions, as well
567 // as pointers to member functions.
568 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
569 NewType = R->getPointeeType();
570 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
571 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
572 NewType = P->getPointeeType();
573 OldType = OldType->getAs<PointerType>()->getPointeeType();
574 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
575 NewType = M->getPointeeType();
576 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
577 }
578
579 if (!NewType->isFunctionProtoType())
580 return;
581
582 // There's lots of special cases for functions. For function pointers, system
583 // libraries are hopefully not as broken so that we don't need these
584 // workarounds.
585 if (CheckEquivalentExceptionSpec(
586 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
587 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
588 New->setInvalidDecl();
589 }
590}
591
Chris Lattner3d1cee32008-04-08 05:04:30 +0000592/// CheckCXXDefaultArguments - Verify that the default arguments for a
593/// function declaration are well-formed according to C++
594/// [dcl.fct.default].
595void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
596 unsigned NumParams = FD->getNumParams();
597 unsigned p;
598
Douglas Gregorc6889e72012-02-14 22:28:59 +0000599 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
600 isa<CXXMethodDecl>(FD) &&
601 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
602
Chris Lattner3d1cee32008-04-08 05:04:30 +0000603 // Find first parameter with a default argument
604 for (p = 0; p < NumParams; ++p) {
605 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000606 if (Param->hasDefaultArg()) {
607 // C++11 [expr.prim.lambda]p5:
608 // [...] Default arguments (8.3.6) shall not be specified in the
609 // parameter-declaration-clause of a lambda-declarator.
610 //
611 // FIXME: Core issue 974 strikes this sentence, we only provide an
612 // extension warning.
613 if (IsLambda)
614 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
615 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000616 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000617 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000618 }
619
620 // C++ [dcl.fct.default]p4:
621 // In a given function declaration, all parameters
622 // subsequent to a parameter with a default argument shall
623 // have default arguments supplied in this or previous
624 // declarations. A default argument shall not be redefined
625 // by a later declaration (not even to the same value).
626 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000627 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000628 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000629 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000630 if (Param->isInvalidDecl())
631 /* We already complained about this parameter. */;
632 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000633 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000634 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000635 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000636 else
Mike Stump1eb44332009-09-09 15:08:12 +0000637 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000638 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Chris Lattner3d1cee32008-04-08 05:04:30 +0000640 LastMissingDefaultArg = p;
641 }
642 }
643
644 if (LastMissingDefaultArg > 0) {
645 // Some default arguments were missing. Clear out all of the
646 // default arguments up to (and including) the last missing
647 // default argument, so that we leave the function parameters
648 // in a semantically valid state.
649 for (p = 0; p <= LastMissingDefaultArg; ++p) {
650 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000651 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000652 Param->setDefaultArg(0);
653 }
654 }
655 }
656}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000657
Richard Smith9f569cc2011-10-01 02:31:28 +0000658// CheckConstexprParameterTypes - Check whether a function's parameter types
659// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000660// diagnostic and return false.
661static bool CheckConstexprParameterTypes(Sema &SemaRef,
662 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000663 unsigned ArgIndex = 0;
664 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
665 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
666 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
667 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
668 SourceLocation ParamLoc = PD->getLocation();
669 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000670 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000671 diag::err_constexpr_non_literal_param,
672 ArgIndex+1, PD->getSourceRange(),
673 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000674 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000675 }
676 return true;
677}
678
679// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
Richard Smith86c3ae42012-02-13 03:54:03 +0000680// the requirements of a constexpr function definition or a constexpr
681// constructor definition. If so, return true. If not, produce appropriate
682// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000683//
Richard Smith86c3ae42012-02-13 03:54:03 +0000684// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
685bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000686 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
687 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000688 // C++11 [dcl.constexpr]p4:
689 // The definition of a constexpr constructor shall satisfy the following
690 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000691 // - the class shall not have any virtual base classes;
Richard Smith35340502012-01-13 04:54:00 +0000692 const CXXRecordDecl *RD = MD->getParent();
Richard Smith9f569cc2011-10-01 02:31:28 +0000693 if (RD->getNumVBases()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000694 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
695 << isa<CXXConstructorDecl>(NewFD) << RD->isStruct()
696 << RD->getNumVBases();
697 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
698 E = RD->vbases_end(); I != E; ++I)
Daniel Dunbar96a00142012-03-09 18:35:03 +0000699 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000700 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000701 return false;
702 }
Richard Smith35340502012-01-13 04:54:00 +0000703 }
704
705 if (!isa<CXXConstructorDecl>(NewFD)) {
706 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000707 // The definition of a constexpr function shall satisfy the following
708 // constraints:
709 // - it shall not be virtual;
710 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
711 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000712 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000713
Richard Smith86c3ae42012-02-13 03:54:03 +0000714 // If it's not obvious why this function is virtual, find an overridden
715 // function which uses the 'virtual' keyword.
716 const CXXMethodDecl *WrittenVirtual = Method;
717 while (!WrittenVirtual->isVirtualAsWritten())
718 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
719 if (WrittenVirtual != Method)
720 Diag(WrittenVirtual->getLocation(),
721 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000722 return false;
723 }
724
725 // - its return type shall be a literal type;
726 QualType RT = NewFD->getResultType();
727 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000728 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000729 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000730 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000731 }
732
Richard Smith35340502012-01-13 04:54:00 +0000733 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000734 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000735 return false;
736
Richard Smith9f569cc2011-10-01 02:31:28 +0000737 return true;
738}
739
740/// Check the given declaration statement is legal within a constexpr function
741/// body. C++0x [dcl.constexpr]p3,p4.
742///
743/// \return true if the body is OK, false if we have diagnosed a problem.
744static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
745 DeclStmt *DS) {
746 // C++0x [dcl.constexpr]p3 and p4:
747 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
748 // contain only
749 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
750 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
751 switch ((*DclIt)->getKind()) {
752 case Decl::StaticAssert:
753 case Decl::Using:
754 case Decl::UsingShadow:
755 case Decl::UsingDirective:
756 case Decl::UnresolvedUsingTypename:
757 // - static_assert-declarations
758 // - using-declarations,
759 // - using-directives,
760 continue;
761
762 case Decl::Typedef:
763 case Decl::TypeAlias: {
764 // - typedef declarations and alias-declarations that do not define
765 // classes or enumerations,
766 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
767 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
768 // Don't allow variably-modified types in constexpr functions.
769 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
770 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
771 << TL.getSourceRange() << TL.getType()
772 << isa<CXXConstructorDecl>(Dcl);
773 return false;
774 }
775 continue;
776 }
777
778 case Decl::Enum:
779 case Decl::CXXRecord:
780 // As an extension, we allow the declaration (but not the definition) of
781 // classes and enumerations in all declarations, not just in typedef and
782 // alias declarations.
783 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
784 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
785 << isa<CXXConstructorDecl>(Dcl);
786 return false;
787 }
788 continue;
789
790 case Decl::Var:
791 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
792 << isa<CXXConstructorDecl>(Dcl);
793 return false;
794
795 default:
796 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
797 << isa<CXXConstructorDecl>(Dcl);
798 return false;
799 }
800 }
801
802 return true;
803}
804
805/// Check that the given field is initialized within a constexpr constructor.
806///
807/// \param Dcl The constexpr constructor being checked.
808/// \param Field The field being checked. This may be a member of an anonymous
809/// struct or union nested within the class being checked.
810/// \param Inits All declarations, including anonymous struct/union members and
811/// indirect members, for which any initialization was provided.
812/// \param Diagnosed Set to true if an error is produced.
813static void CheckConstexprCtorInitializer(Sema &SemaRef,
814 const FunctionDecl *Dcl,
815 FieldDecl *Field,
816 llvm::SmallSet<Decl*, 16> &Inits,
817 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000818 if (Field->isUnnamedBitfield())
819 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000820
821 if (Field->isAnonymousStructOrUnion() &&
822 Field->getType()->getAsCXXRecordDecl()->isEmpty())
823 return;
824
Richard Smith9f569cc2011-10-01 02:31:28 +0000825 if (!Inits.count(Field)) {
826 if (!Diagnosed) {
827 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
828 Diagnosed = true;
829 }
830 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
831 } else if (Field->isAnonymousStructOrUnion()) {
832 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
833 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
834 I != E; ++I)
835 // If an anonymous union contains an anonymous struct of which any member
836 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000837 if (!RD->isUnion() || Inits.count(*I))
838 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000839 }
840}
841
842/// Check the body for the given constexpr function declaration only contains
843/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
844///
845/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000846bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000847 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000848 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000849 // The definition of a constexpr function shall satisfy the following
850 // constraints: [...]
851 // - its function-body shall be = delete, = default, or a
852 // compound-statement
853 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000854 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000855 // In the definition of a constexpr constructor, [...]
856 // - its function-body shall not be a function-try-block;
857 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
858 << isa<CXXConstructorDecl>(Dcl);
859 return false;
860 }
861
862 // - its function-body shall be [...] a compound-statement that contains only
863 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
864
865 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
866 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
867 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
868 switch ((*BodyIt)->getStmtClass()) {
869 case Stmt::NullStmtClass:
870 // - null statements,
871 continue;
872
873 case Stmt::DeclStmtClass:
874 // - static_assert-declarations
875 // - using-declarations,
876 // - using-directives,
877 // - typedef declarations and alias-declarations that do not define
878 // classes or enumerations,
879 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
880 return false;
881 continue;
882
883 case Stmt::ReturnStmtClass:
884 // - and exactly one return statement;
885 if (isa<CXXConstructorDecl>(Dcl))
886 break;
887
888 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000889 continue;
890
891 default:
892 break;
893 }
894
895 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
896 << isa<CXXConstructorDecl>(Dcl);
897 return false;
898 }
899
900 if (const CXXConstructorDecl *Constructor
901 = dyn_cast<CXXConstructorDecl>(Dcl)) {
902 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000903 // DR1359:
904 // - every non-variant non-static data member and base class sub-object
905 // shall be initialized;
906 // - if the class is a non-empty union, or for each non-empty anonymous
907 // union member of a non-union class, exactly one non-static data member
908 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000909 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000910 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000911 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
912 return false;
913 }
Richard Smith6e433752011-10-10 16:38:04 +0000914 } else if (!Constructor->isDependentContext() &&
915 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000916 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
917
918 // Skip detailed checking if we have enough initializers, and we would
919 // allow at most one initializer per member.
920 bool AnyAnonStructUnionMembers = false;
921 unsigned Fields = 0;
922 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
923 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000924 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000925 AnyAnonStructUnionMembers = true;
926 break;
927 }
928 }
929 if (AnyAnonStructUnionMembers ||
930 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
931 // Check initialization of non-static data members. Base classes are
932 // always initialized so do not need to be checked. Dependent bases
933 // might not have initializers in the member initializer list.
934 llvm::SmallSet<Decl*, 16> Inits;
935 for (CXXConstructorDecl::init_const_iterator
936 I = Constructor->init_begin(), E = Constructor->init_end();
937 I != E; ++I) {
938 if (FieldDecl *FD = (*I)->getMember())
939 Inits.insert(FD);
940 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
941 Inits.insert(ID->chain_begin(), ID->chain_end());
942 }
943
944 bool Diagnosed = false;
945 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
946 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000947 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000948 if (Diagnosed)
949 return false;
950 }
951 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000952 } else {
953 if (ReturnStmts.empty()) {
954 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
955 return false;
956 }
957 if (ReturnStmts.size() > 1) {
958 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
959 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
960 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
961 return false;
962 }
963 }
964
Richard Smith5ba73e12012-02-04 00:33:54 +0000965 // C++11 [dcl.constexpr]p5:
966 // if no function argument values exist such that the function invocation
967 // substitution would produce a constant expression, the program is
968 // ill-formed; no diagnostic required.
969 // C++11 [dcl.constexpr]p3:
970 // - every constructor call and implicit conversion used in initializing the
971 // return value shall be one of those allowed in a constant expression.
972 // C++11 [dcl.constexpr]p4:
973 // - every constructor involved in initializing non-static data members and
974 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000975 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000976 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000977 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
978 << isa<CXXConstructorDecl>(Dcl);
979 for (size_t I = 0, N = Diags.size(); I != N; ++I)
980 Diag(Diags[I].first, Diags[I].second);
981 return false;
982 }
983
Richard Smith9f569cc2011-10-01 02:31:28 +0000984 return true;
985}
986
Douglas Gregorb48fe382008-10-31 09:07:45 +0000987/// isCurrentClassName - Determine whether the identifier II is the
988/// name of the class type currently being defined. In the case of
989/// nested classes, this will only return true if II is the name of
990/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000991bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
992 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000993 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000994
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000995 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000996 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000997 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000998 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
999 } else
1000 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1001
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001002 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001003 return &II == CurDecl->getIdentifier();
1004 else
1005 return false;
1006}
1007
Mike Stump1eb44332009-09-09 15:08:12 +00001008/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001009///
1010/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1011/// and returns NULL otherwise.
1012CXXBaseSpecifier *
1013Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1014 SourceRange SpecifierRange,
1015 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001016 TypeSourceInfo *TInfo,
1017 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001018 QualType BaseType = TInfo->getType();
1019
Douglas Gregor2943aed2009-03-03 04:44:36 +00001020 // C++ [class.union]p1:
1021 // A union shall not have base classes.
1022 if (Class->isUnion()) {
1023 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1024 << SpecifierRange;
1025 return 0;
1026 }
1027
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001028 if (EllipsisLoc.isValid() &&
1029 !TInfo->getType()->containsUnexpandedParameterPack()) {
1030 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1031 << TInfo->getTypeLoc().getSourceRange();
1032 EllipsisLoc = SourceLocation();
1033 }
1034
Douglas Gregor2943aed2009-03-03 04:44:36 +00001035 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +00001036 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001037 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001038 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +00001039
1040 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001041
1042 // Base specifiers must be record types.
1043 if (!BaseType->isRecordType()) {
1044 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1045 return 0;
1046 }
1047
1048 // C++ [class.union]p1:
1049 // A union shall not be used as a base class.
1050 if (BaseType->isUnionType()) {
1051 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1052 return 0;
1053 }
1054
1055 // C++ [class.derived]p2:
1056 // The class-name in a base-specifier shall not be an incompletely
1057 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001058 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001059 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001060 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001061 return 0;
John McCall572fc622010-08-17 07:23:57 +00001062 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001063
Eli Friedman1d954f62009-08-15 21:55:26 +00001064 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001065 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001066 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001067 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001068 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001069 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1070 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001071
Anders Carlsson1d209272011-03-25 14:55:14 +00001072 // C++ [class]p3:
1073 // If a class is marked final and it appears as a base-type-specifier in
1074 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001075 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001076 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1077 << CXXBaseDecl->getDeclName();
1078 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1079 << CXXBaseDecl->getDeclName();
1080 return 0;
1081 }
1082
John McCall572fc622010-08-17 07:23:57 +00001083 if (BaseDecl->isInvalidDecl())
1084 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001085
1086 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001087 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001088 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001089 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001090}
1091
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001092/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1093/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001094/// example:
1095/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001096/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001097BaseResult
John McCalld226f652010-08-21 09:40:31 +00001098Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001099 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001100 ParsedType basetype, SourceLocation BaseLoc,
1101 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001102 if (!classdecl)
1103 return true;
1104
Douglas Gregor40808ce2009-03-09 23:48:35 +00001105 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001106 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001107 if (!Class)
1108 return true;
1109
Nick Lewycky56062202010-07-26 16:56:01 +00001110 TypeSourceInfo *TInfo = 0;
1111 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001112
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001113 if (EllipsisLoc.isInvalid() &&
1114 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001115 UPPC_BaseType))
1116 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001117
Douglas Gregor2943aed2009-03-03 04:44:36 +00001118 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001119 Virtual, Access, TInfo,
1120 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001121 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001122 else
1123 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Douglas Gregor2943aed2009-03-03 04:44:36 +00001125 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001126}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001127
Douglas Gregor2943aed2009-03-03 04:44:36 +00001128/// \brief Performs the actual work of attaching the given base class
1129/// specifiers to a C++ class.
1130bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1131 unsigned NumBases) {
1132 if (NumBases == 0)
1133 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001134
1135 // Used to keep track of which base types we have already seen, so
1136 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001137 // that the key is always the unqualified canonical type of the base
1138 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001139 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1140
1141 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001142 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001143 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001144 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001145 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001146 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001147 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001148
1149 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1150 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001151 // C++ [class.mi]p3:
1152 // A class shall not be specified as a direct base class of a
1153 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001154 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001155 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001156 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001157 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001158
1159 // Delete the duplicate base class specifier; we're going to
1160 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001161 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001162
1163 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001164 } else {
1165 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001166 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001167 Bases[NumGoodBases++] = Bases[idx];
Fariborz Jahanian91589022011-10-24 17:30:45 +00001168 if (const RecordType *Record = NewBaseType->getAs<RecordType>())
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001169 if (const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()))
1170 if (RD->hasAttr<WeakAttr>())
1171 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001172 }
1173 }
1174
1175 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001176 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001177
1178 // Delete the remaining (good) base class specifiers, since their
1179 // data has been copied into the CXXRecordDecl.
1180 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001181 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001182
1183 return Invalid;
1184}
1185
1186/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1187/// class, after checking whether there are any duplicate base
1188/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001189void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001190 unsigned NumBases) {
1191 if (!ClassDecl || !Bases || !NumBases)
1192 return;
1193
1194 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001195 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001196 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001197}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001198
John McCall3cb0ebd2010-03-10 03:28:59 +00001199static CXXRecordDecl *GetClassForType(QualType T) {
1200 if (const RecordType *RT = T->getAs<RecordType>())
1201 return cast<CXXRecordDecl>(RT->getDecl());
1202 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1203 return ICT->getDecl();
1204 else
1205 return 0;
1206}
1207
Douglas Gregora8f32e02009-10-06 17:59:45 +00001208/// \brief Determine whether the type \p Derived is a C++ class that is
1209/// derived from the type \p Base.
1210bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001211 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001212 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001213
1214 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1215 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001216 return false;
1217
John McCall3cb0ebd2010-03-10 03:28:59 +00001218 CXXRecordDecl *BaseRD = GetClassForType(Base);
1219 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001220 return false;
1221
John McCall86ff3082010-02-04 22:26:26 +00001222 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1223 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001224}
1225
1226/// \brief Determine whether the type \p Derived is a C++ class that is
1227/// derived from the type \p Base.
1228bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001229 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001230 return false;
1231
John McCall3cb0ebd2010-03-10 03:28:59 +00001232 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1233 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001234 return false;
1235
John McCall3cb0ebd2010-03-10 03:28:59 +00001236 CXXRecordDecl *BaseRD = GetClassForType(Base);
1237 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001238 return false;
1239
Douglas Gregora8f32e02009-10-06 17:59:45 +00001240 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1241}
1242
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001243void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001244 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001245 assert(BasePathArray.empty() && "Base path array must be empty!");
1246 assert(Paths.isRecordingPaths() && "Must record paths!");
1247
1248 const CXXBasePath &Path = Paths.front();
1249
1250 // We first go backward and check if we have a virtual base.
1251 // FIXME: It would be better if CXXBasePath had the base specifier for
1252 // the nearest virtual base.
1253 unsigned Start = 0;
1254 for (unsigned I = Path.size(); I != 0; --I) {
1255 if (Path[I - 1].Base->isVirtual()) {
1256 Start = I - 1;
1257 break;
1258 }
1259 }
1260
1261 // Now add all bases.
1262 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001263 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001264}
1265
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001266/// \brief Determine whether the given base path includes a virtual
1267/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001268bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1269 for (CXXCastPath::const_iterator B = BasePath.begin(),
1270 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001271 B != BEnd; ++B)
1272 if ((*B)->isVirtual())
1273 return true;
1274
1275 return false;
1276}
1277
Douglas Gregora8f32e02009-10-06 17:59:45 +00001278/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1279/// conversion (where Derived and Base are class types) is
1280/// well-formed, meaning that the conversion is unambiguous (and
1281/// that all of the base classes are accessible). Returns true
1282/// and emits a diagnostic if the code is ill-formed, returns false
1283/// otherwise. Loc is the location where this routine should point to
1284/// if there is an error, and Range is the source range to highlight
1285/// if there is an error.
1286bool
1287Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001288 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001289 unsigned AmbigiousBaseConvID,
1290 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001291 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001292 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001293 // First, determine whether the path from Derived to Base is
1294 // ambiguous. This is slightly more expensive than checking whether
1295 // the Derived to Base conversion exists, because here we need to
1296 // explore multiple paths to determine if there is an ambiguity.
1297 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1298 /*DetectVirtual=*/false);
1299 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1300 assert(DerivationOkay &&
1301 "Can only be used with a derived-to-base conversion");
1302 (void)DerivationOkay;
1303
1304 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001305 if (InaccessibleBaseID) {
1306 // Check that the base class can be accessed.
1307 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1308 InaccessibleBaseID)) {
1309 case AR_inaccessible:
1310 return true;
1311 case AR_accessible:
1312 case AR_dependent:
1313 case AR_delayed:
1314 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001315 }
John McCall6b2accb2010-02-10 09:31:12 +00001316 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001317
1318 // Build a base path if necessary.
1319 if (BasePath)
1320 BuildBasePathArray(Paths, *BasePath);
1321 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001322 }
1323
1324 // We know that the derived-to-base conversion is ambiguous, and
1325 // we're going to produce a diagnostic. Perform the derived-to-base
1326 // search just one more time to compute all of the possible paths so
1327 // that we can print them out. This is more expensive than any of
1328 // the previous derived-to-base checks we've done, but at this point
1329 // performance isn't as much of an issue.
1330 Paths.clear();
1331 Paths.setRecordingPaths(true);
1332 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1333 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1334 (void)StillOkay;
1335
1336 // Build up a textual representation of the ambiguous paths, e.g.,
1337 // D -> B -> A, that will be used to illustrate the ambiguous
1338 // conversions in the diagnostic. We only print one of the paths
1339 // to each base class subobject.
1340 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1341
1342 Diag(Loc, AmbigiousBaseConvID)
1343 << Derived << Base << PathDisplayStr << Range << Name;
1344 return true;
1345}
1346
1347bool
1348Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001349 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001350 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001351 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001352 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001353 IgnoreAccess ? 0
1354 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001355 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001356 Loc, Range, DeclarationName(),
1357 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001358}
1359
1360
1361/// @brief Builds a string representing ambiguous paths from a
1362/// specific derived class to different subobjects of the same base
1363/// class.
1364///
1365/// This function builds a string that can be used in error messages
1366/// to show the different paths that one can take through the
1367/// inheritance hierarchy to go from the derived class to different
1368/// subobjects of a base class. The result looks something like this:
1369/// @code
1370/// struct D -> struct B -> struct A
1371/// struct D -> struct C -> struct A
1372/// @endcode
1373std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1374 std::string PathDisplayStr;
1375 std::set<unsigned> DisplayedPaths;
1376 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1377 Path != Paths.end(); ++Path) {
1378 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1379 // We haven't displayed a path to this particular base
1380 // class subobject yet.
1381 PathDisplayStr += "\n ";
1382 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1383 for (CXXBasePath::const_iterator Element = Path->begin();
1384 Element != Path->end(); ++Element)
1385 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1386 }
1387 }
1388
1389 return PathDisplayStr;
1390}
1391
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001392//===----------------------------------------------------------------------===//
1393// C++ class member Handling
1394//===----------------------------------------------------------------------===//
1395
Abramo Bagnara6206d532010-06-05 05:09:32 +00001396/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001397bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1398 SourceLocation ASLoc,
1399 SourceLocation ColonLoc,
1400 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001401 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001402 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001403 ASLoc, ColonLoc);
1404 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001405 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001406}
1407
Anders Carlsson9e682d92011-01-20 05:57:14 +00001408/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001409void Sema::CheckOverrideControl(const Decl *D) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001410 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001411 if (!MD || !MD->isVirtual())
1412 return;
1413
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001414 if (MD->isDependentContext())
1415 return;
1416
Anders Carlsson9e682d92011-01-20 05:57:14 +00001417 // C++0x [class.virtual]p3:
1418 // If a virtual function is marked with the virt-specifier override and does
1419 // not override a member function of a base class,
1420 // the program is ill-formed.
1421 bool HasOverriddenMethods =
1422 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001423 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001424 Diag(MD->getLocation(),
Anders Carlsson9e682d92011-01-20 05:57:14 +00001425 diag::err_function_marked_override_not_overriding)
1426 << MD->getDeclName();
1427 return;
1428 }
1429}
1430
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001431/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
1432/// function overrides a virtual member function marked 'final', according to
1433/// C++0x [class.virtual]p3.
1434bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1435 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001436 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001437 return false;
1438
1439 Diag(New->getLocation(), diag::err_final_function_overridden)
1440 << New->getDeclName();
1441 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1442 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001443}
1444
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001445static bool InitializationHasSideEffects(const FieldDecl &FD) {
1446 if (!FD.getType().isNull()) {
1447 if (const CXXRecordDecl *RD = FD.getType()->getAsCXXRecordDecl()) {
1448 return !RD->isCompleteDefinition() ||
1449 !RD->hasTrivialDefaultConstructor() ||
1450 !RD->hasTrivialDestructor();
1451 }
1452 }
1453 return false;
1454}
1455
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001456/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1457/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001458/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001459/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1460/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001461Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001462Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001463 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001464 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001465 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001466 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001467 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1468 DeclarationName Name = NameInfo.getName();
1469 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001470
1471 // For anonymous bitfields, the location should point to the type.
1472 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001473 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001474
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001475 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001476
John McCall4bde1e12010-06-04 08:34:12 +00001477 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001478 assert(!DS.isFriendSpecified());
1479
Richard Smith1ab0d902011-06-25 02:28:38 +00001480 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001481
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001482 // C++ 9.2p6: A member shall not be declared to have automatic storage
1483 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001484 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1485 // data members and cannot be applied to names declared const or static,
1486 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001487 switch (DS.getStorageClassSpec()) {
1488 case DeclSpec::SCS_unspecified:
1489 case DeclSpec::SCS_typedef:
1490 case DeclSpec::SCS_static:
1491 // FALL THROUGH.
1492 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001493 case DeclSpec::SCS_mutable:
1494 if (isFunc) {
1495 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001496 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001497 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001498 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Sebastian Redla11f42f2008-11-17 23:24:37 +00001500 // FIXME: It would be nicer if the keyword was ignored only for this
1501 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001502 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001503 }
1504 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001505 default:
1506 if (DS.getStorageClassSpecLoc().isValid())
1507 Diag(DS.getStorageClassSpecLoc(),
1508 diag::err_storageclass_invalid_for_member);
1509 else
1510 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1511 D.getMutableDeclSpec().ClearStorageClassSpecs();
1512 }
1513
Sebastian Redl669d5d72008-11-14 23:42:31 +00001514 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1515 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001516 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001517
1518 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001519 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001520 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001521
1522 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001523 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001524 Diag(Loc, diag::err_bad_variable_name)
1525 << Name;
1526 return 0;
1527 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001528
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001529 IdentifierInfo *II = Name.getAsIdentifierInfo();
1530
Douglas Gregorf2503652011-09-21 14:40:46 +00001531 // Member field could not be with "template" keyword.
1532 // So TemplateParameterLists should be empty in this case.
1533 if (TemplateParameterLists.size()) {
1534 TemplateParameterList* TemplateParams = TemplateParameterLists.get()[0];
1535 if (TemplateParams->size()) {
1536 // There is no such thing as a member field template.
1537 Diag(D.getIdentifierLoc(), diag::err_template_member)
1538 << II
1539 << SourceRange(TemplateParams->getTemplateLoc(),
1540 TemplateParams->getRAngleLoc());
1541 } else {
1542 // There is an extraneous 'template<>' for this member.
1543 Diag(TemplateParams->getTemplateLoc(),
1544 diag::err_template_member_noparams)
1545 << II
1546 << SourceRange(TemplateParams->getTemplateLoc(),
1547 TemplateParams->getRAngleLoc());
1548 }
1549 return 0;
1550 }
1551
Douglas Gregor922fff22010-10-13 22:19:53 +00001552 if (SS.isSet() && !SS.isInvalid()) {
1553 // The user provided a superfluous scope specifier inside a class
1554 // definition:
1555 //
1556 // class X {
1557 // int X::member;
1558 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001559 if (DeclContext *DC = computeDeclContext(SS, false))
1560 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001561 else
1562 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1563 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001564
Douglas Gregor922fff22010-10-13 22:19:53 +00001565 SS.clear();
1566 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001567
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001568 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001569 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001570 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001571 } else {
Richard Smithca523302012-06-10 03:12:00 +00001572 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001573
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00001574 Member = HandleDeclarator(S, D, move(TemplateParameterLists));
Chris Lattner6f8ce142009-03-05 23:03:49 +00001575 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001576 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001577 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001578
1579 // Non-instance-fields can't have a bitfield.
1580 if (BitWidth) {
1581 if (Member->isInvalidDecl()) {
1582 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001583 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001584 // C++ 9.6p3: A bit-field shall not be a static member.
1585 // "static member 'A' cannot be a bit-field"
1586 Diag(Loc, diag::err_static_not_bitfield)
1587 << Name << BitWidth->getSourceRange();
1588 } else if (isa<TypedefDecl>(Member)) {
1589 // "typedef member 'x' cannot be a bit-field"
1590 Diag(Loc, diag::err_typedef_not_bitfield)
1591 << Name << BitWidth->getSourceRange();
1592 } else {
1593 // A function typedef ("typedef int f(); f a;").
1594 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1595 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001596 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001597 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001598 }
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Chris Lattner8b963ef2009-03-05 23:01:03 +00001600 BitWidth = 0;
1601 Member->setInvalidDecl();
1602 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001603
1604 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001605
Douglas Gregor37b372b2009-08-20 22:52:58 +00001606 // If we have declared a member function template, set the access of the
1607 // templated declaration as well.
1608 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1609 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001610 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001611
Anders Carlssonaae5af22011-01-20 04:34:22 +00001612 if (VS.isOverrideSpecified()) {
1613 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1614 if (!MD || !MD->isVirtual()) {
1615 Diag(Member->getLocStart(),
1616 diag::override_keyword_only_allowed_on_virtual_member_functions)
1617 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001618 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001619 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001620 }
1621 if (VS.isFinalSpecified()) {
1622 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1623 if (!MD || !MD->isVirtual()) {
1624 Diag(Member->getLocStart(),
1625 diag::override_keyword_only_allowed_on_virtual_member_functions)
1626 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001627 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001628 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001629 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001630
Douglas Gregorf5251602011-03-08 17:10:18 +00001631 if (VS.getLastLocation().isValid()) {
1632 // Update the end location of a method that has a virt-specifiers.
1633 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1634 MD->setRangeEnd(VS.getLastLocation());
1635 }
1636
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001637 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001638
Douglas Gregor10bd3682008-11-17 22:58:34 +00001639 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001640
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001641 if (isInstField) {
1642 FieldDecl *FD = cast<FieldDecl>(Member);
1643 FieldCollector->Add(FD);
1644
1645 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1646 FD->getLocation())
1647 != DiagnosticsEngine::Ignored) {
1648 // Remember all explicit private FieldDecls that have a name, no side
1649 // effects and are not part of a dependent type declaration.
1650 if (!FD->isImplicit() && FD->getDeclName() &&
1651 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001652 !FD->hasAttr<UnusedAttr>() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001653 !FD->getParent()->getTypeForDecl()->isDependentType() &&
1654 !InitializationHasSideEffects(*FD))
1655 UnusedPrivateFields.insert(FD);
1656 }
1657 }
1658
John McCalld226f652010-08-21 09:40:31 +00001659 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001660}
1661
Richard Smith7a614d82011-06-11 17:19:42 +00001662/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001663/// in-class initializer for a non-static C++ class member, and after
1664/// instantiating an in-class initializer in a class template. Such actions
1665/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001666void
Richard Smithca523302012-06-10 03:12:00 +00001667Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001668 Expr *InitExpr) {
1669 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001670 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1671 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001672
1673 if (!InitExpr) {
1674 FD->setInvalidDecl();
1675 FD->removeInClassInitializer();
1676 return;
1677 }
1678
Peter Collingbournefef21892011-10-23 18:59:44 +00001679 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1680 FD->setInvalidDecl();
1681 FD->removeInClassInitializer();
1682 return;
1683 }
1684
Richard Smith7a614d82011-06-11 17:19:42 +00001685 ExprResult Init = InitExpr;
1686 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001687 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001688 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001689 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1690 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001691 Expr **Inits = &InitExpr;
1692 unsigned NumInits = 1;
1693 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001694 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001695 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001696 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001697 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1698 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001699 if (Init.isInvalid()) {
1700 FD->setInvalidDecl();
1701 return;
1702 }
1703
Richard Smithca523302012-06-10 03:12:00 +00001704 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001705 }
1706
1707 // C++0x [class.base.init]p7:
1708 // The initialization of each base and member constitutes a
1709 // full-expression.
1710 Init = MaybeCreateExprWithCleanups(Init);
1711 if (Init.isInvalid()) {
1712 FD->setInvalidDecl();
1713 return;
1714 }
1715
1716 InitExpr = Init.release();
1717
1718 FD->setInClassInitializer(InitExpr);
1719}
1720
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001721/// \brief Find the direct and/or virtual base specifiers that
1722/// correspond to the given base type, for use in base initialization
1723/// within a constructor.
1724static bool FindBaseInitializer(Sema &SemaRef,
1725 CXXRecordDecl *ClassDecl,
1726 QualType BaseType,
1727 const CXXBaseSpecifier *&DirectBaseSpec,
1728 const CXXBaseSpecifier *&VirtualBaseSpec) {
1729 // First, check for a direct base class.
1730 DirectBaseSpec = 0;
1731 for (CXXRecordDecl::base_class_const_iterator Base
1732 = ClassDecl->bases_begin();
1733 Base != ClassDecl->bases_end(); ++Base) {
1734 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1735 // We found a direct base of this type. That's what we're
1736 // initializing.
1737 DirectBaseSpec = &*Base;
1738 break;
1739 }
1740 }
1741
1742 // Check for a virtual base class.
1743 // FIXME: We might be able to short-circuit this if we know in advance that
1744 // there are no virtual bases.
1745 VirtualBaseSpec = 0;
1746 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1747 // We haven't found a base yet; search the class hierarchy for a
1748 // virtual base class.
1749 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1750 /*DetectVirtual=*/false);
1751 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1752 BaseType, Paths)) {
1753 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1754 Path != Paths.end(); ++Path) {
1755 if (Path->back().Base->isVirtual()) {
1756 VirtualBaseSpec = Path->back().Base;
1757 break;
1758 }
1759 }
1760 }
1761 }
1762
1763 return DirectBaseSpec || VirtualBaseSpec;
1764}
1765
Sebastian Redl6df65482011-09-24 17:48:25 +00001766/// \brief Handle a C++ member initializer using braced-init-list syntax.
1767MemInitResult
1768Sema::ActOnMemInitializer(Decl *ConstructorD,
1769 Scope *S,
1770 CXXScopeSpec &SS,
1771 IdentifierInfo *MemberOrBase,
1772 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001773 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001774 SourceLocation IdLoc,
1775 Expr *InitList,
1776 SourceLocation EllipsisLoc) {
1777 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001778 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001779 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001780}
1781
1782/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001783MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001784Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001785 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001786 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001787 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001788 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001789 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001790 SourceLocation IdLoc,
1791 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001792 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001793 SourceLocation RParenLoc,
1794 SourceLocation EllipsisLoc) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001795 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1796 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001797 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001798 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001799}
1800
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001801namespace {
1802
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001803// Callback to only accept typo corrections that can be a valid C++ member
1804// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001805class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1806 public:
1807 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1808 : ClassDecl(ClassDecl) {}
1809
1810 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1811 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1812 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1813 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1814 else
1815 return isa<TypeDecl>(ND);
1816 }
1817 return false;
1818 }
1819
1820 private:
1821 CXXRecordDecl *ClassDecl;
1822};
1823
1824}
1825
Sebastian Redl6df65482011-09-24 17:48:25 +00001826/// \brief Handle a C++ member initializer.
1827MemInitResult
1828Sema::BuildMemInitializer(Decl *ConstructorD,
1829 Scope *S,
1830 CXXScopeSpec &SS,
1831 IdentifierInfo *MemberOrBase,
1832 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001833 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001834 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001835 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001836 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001837 if (!ConstructorD)
1838 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001839
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001840 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001841
1842 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001843 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001844 if (!Constructor) {
1845 // The user wrote a constructor initializer on a function that is
1846 // not a C++ constructor. Ignore the error for now, because we may
1847 // have more member initializers coming; we'll diagnose it just
1848 // once in ActOnMemInitializers.
1849 return true;
1850 }
1851
1852 CXXRecordDecl *ClassDecl = Constructor->getParent();
1853
1854 // C++ [class.base.init]p2:
1855 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001856 // constructor's class and, if not found in that scope, are looked
1857 // up in the scope containing the constructor's definition.
1858 // [Note: if the constructor's class contains a member with the
1859 // same name as a direct or virtual base class of the class, a
1860 // mem-initializer-id naming the member or base class and composed
1861 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001862 // mem-initializer-id for the hidden base class may be specified
1863 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001864 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001865 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001866 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001867 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001868 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001869 ValueDecl *Member;
1870 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1871 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001872 if (EllipsisLoc.isValid())
1873 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001874 << MemberOrBase
1875 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001876
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001877 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001878 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001879 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001880 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001881 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001882 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001883 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001884
1885 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001886 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001887 } else if (DS.getTypeSpecType() == TST_decltype) {
1888 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001889 } else {
1890 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1891 LookupParsedName(R, S, &SS);
1892
1893 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1894 if (!TyD) {
1895 if (R.isAmbiguous()) return true;
1896
John McCallfd225442010-04-09 19:01:14 +00001897 // We don't want access-control diagnostics here.
1898 R.suppressDiagnostics();
1899
Douglas Gregor7a886e12010-01-19 06:46:48 +00001900 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1901 bool NotUnknownSpecialization = false;
1902 DeclContext *DC = computeDeclContext(SS, false);
1903 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1904 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1905
1906 if (!NotUnknownSpecialization) {
1907 // When the scope specifier can refer to a member of an unknown
1908 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001909 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1910 SS.getWithLocInContext(Context),
1911 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001912 if (BaseType.isNull())
1913 return true;
1914
Douglas Gregor7a886e12010-01-19 06:46:48 +00001915 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001916 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001917 }
1918 }
1919
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001920 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001921 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001922 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001923 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001924 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001925 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001926 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1927 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001928 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001929 // We have found a non-static data member with a similar
1930 // name to what was typed; complain and initialize that
1931 // member.
1932 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1933 << MemberOrBase << true << CorrectedQuotedStr
1934 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1935 Diag(Member->getLocation(), diag::note_previous_decl)
1936 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001937
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001938 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001939 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001940 const CXXBaseSpecifier *DirectBaseSpec;
1941 const CXXBaseSpecifier *VirtualBaseSpec;
1942 if (FindBaseInitializer(*this, ClassDecl,
1943 Context.getTypeDeclType(Type),
1944 DirectBaseSpec, VirtualBaseSpec)) {
1945 // We have found a direct or virtual base class with a
1946 // similar name to what was typed; complain and initialize
1947 // that base class.
1948 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001949 << MemberOrBase << false << CorrectedQuotedStr
1950 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001951
1952 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1953 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001954 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001955 diag::note_base_class_specified_here)
1956 << BaseSpec->getType()
1957 << BaseSpec->getSourceRange();
1958
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001959 TyD = Type;
1960 }
1961 }
1962 }
1963
Douglas Gregor7a886e12010-01-19 06:46:48 +00001964 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001965 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001966 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001967 return true;
1968 }
John McCall2b194412009-12-21 10:41:20 +00001969 }
1970
Douglas Gregor7a886e12010-01-19 06:46:48 +00001971 if (BaseType.isNull()) {
1972 BaseType = Context.getTypeDeclType(TyD);
1973 if (SS.isSet()) {
1974 NestedNameSpecifier *Qualifier =
1975 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001976
Douglas Gregor7a886e12010-01-19 06:46:48 +00001977 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001978 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001979 }
John McCall2b194412009-12-21 10:41:20 +00001980 }
1981 }
Mike Stump1eb44332009-09-09 15:08:12 +00001982
John McCalla93c9342009-12-07 02:54:59 +00001983 if (!TInfo)
1984 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001985
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001986 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001987}
1988
Chandler Carruth81c64772011-09-03 01:14:15 +00001989/// Checks a member initializer expression for cases where reference (or
1990/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00001991static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
1992 Expr *Init,
1993 SourceLocation IdLoc) {
1994 QualType MemberTy = Member->getType();
1995
1996 // We only handle pointers and references currently.
1997 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
1998 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
1999 return;
2000
2001 const bool IsPointer = MemberTy->isPointerType();
2002 if (IsPointer) {
2003 if (const UnaryOperator *Op
2004 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2005 // The only case we're worried about with pointers requires taking the
2006 // address.
2007 if (Op->getOpcode() != UO_AddrOf)
2008 return;
2009
2010 Init = Op->getSubExpr();
2011 } else {
2012 // We only handle address-of expression initializers for pointers.
2013 return;
2014 }
2015 }
2016
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002017 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2018 // Taking the address of a temporary will be diagnosed as a hard error.
2019 if (IsPointer)
2020 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002021
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002022 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2023 << Member << Init->getSourceRange();
2024 } else if (const DeclRefExpr *DRE
2025 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2026 // We only warn when referring to a non-reference parameter declaration.
2027 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2028 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002029 return;
2030
2031 S.Diag(Init->getExprLoc(),
2032 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2033 : diag::warn_bind_ref_member_to_parameter)
2034 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002035 } else {
2036 // Other initializers are fine.
2037 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002038 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002039
2040 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2041 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002042}
2043
Richard Trieude5e75c2012-06-14 23:11:34 +00002044namespace {
2045 class UninitializedFieldVisitor
2046 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2047 Sema &S;
2048 ValueDecl *VD;
2049 public:
2050 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
2051 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
2052 S(S), VD(VD) {
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002053 }
2054
Richard Trieude5e75c2012-06-14 23:11:34 +00002055 void HandleExpr(Expr *E) {
2056 if (!E) return;
2057
2058 // Expressions like x(x) sometimes lack the surrounding expressions
2059 // but need to be checked anyways.
2060 HandleValue(E);
2061 Visit(E);
2062 }
2063
2064 void HandleValue(Expr *E) {
2065 E = E->IgnoreParens();
2066
Richard Trieue0991252012-06-14 23:18:09 +00002067 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
Richard Trieude5e75c2012-06-14 23:11:34 +00002068 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
2069 return;
Richard Trieue0991252012-06-14 23:18:09 +00002070 Expr *Base = E;
Richard Trieude5e75c2012-06-14 23:11:34 +00002071 while (isa<MemberExpr>(Base)) {
2072 ME = dyn_cast<MemberExpr>(Base);
2073 if (VarDecl *VarD = dyn_cast<VarDecl>(ME->getMemberDecl()))
2074 if (VarD->hasGlobalStorage())
2075 return;
2076 Base = ME->getBase();
2077 }
2078
2079 if (VD == ME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
2080 S.Diag(ME->getExprLoc(), diag::warn_field_is_uninit);
2081 return;
2082 }
John McCallb4190042009-11-04 23:02:40 +00002083 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002084
2085 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2086 HandleValue(CO->getTrueExpr());
2087 HandleValue(CO->getFalseExpr());
2088 return;
2089 }
2090
2091 if (BinaryConditionalOperator *BCO =
2092 dyn_cast<BinaryConditionalOperator>(E)) {
2093 HandleValue(BCO->getCommon());
2094 HandleValue(BCO->getFalseExpr());
2095 return;
2096 }
2097
2098 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2099 switch (BO->getOpcode()) {
2100 default:
2101 return;
2102 case(BO_PtrMemD):
2103 case(BO_PtrMemI):
2104 HandleValue(BO->getLHS());
2105 return;
2106 case(BO_Comma):
2107 HandleValue(BO->getRHS());
2108 return;
2109 }
2110 }
John McCallb4190042009-11-04 23:02:40 +00002111 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002112
2113 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
2114 if (E->getCastKind() == CK_LValueToRValue)
2115 HandleValue(E->getSubExpr());
2116
2117 Inherited::VisitImplicitCastExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002118 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002119
2120 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2121 Expr *Callee = E->getCallee();
2122 if (isa<MemberExpr>(Callee))
2123 HandleValue(Callee);
2124
2125 Inherited::VisitCXXMemberCallExpr(E);
2126 }
2127 };
2128 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
2129 ValueDecl *VD) {
2130 UninitializedFieldVisitor(S, VD).HandleExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002131 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002132} // namespace
John McCallb4190042009-11-04 23:02:40 +00002133
John McCallf312b1e2010-08-26 23:41:50 +00002134MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002135Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002136 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002137 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2138 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2139 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002140 "Member must be a FieldDecl or IndirectFieldDecl");
2141
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002142 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002143 return true;
2144
Douglas Gregor464b2f02010-11-05 22:21:31 +00002145 if (Member->isInvalidDecl())
2146 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002147
John McCallb4190042009-11-04 23:02:40 +00002148 // Diagnose value-uses of fields to initialize themselves, e.g.
2149 // foo(foo)
2150 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002151 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002152 Expr **Args;
2153 unsigned NumArgs;
2154 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2155 Args = ParenList->getExprs();
2156 NumArgs = ParenList->getNumExprs();
2157 } else {
2158 InitListExpr *InitList = cast<InitListExpr>(Init);
2159 Args = InitList->getInits();
2160 NumArgs = InitList->getNumInits();
2161 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002162
2163 // Mark FieldDecl as being used if it is a non-primitive type and the
2164 // initializer does not call the default constructor (which is trivial
2165 // for all entries in UnusedPrivateFields).
2166 // FIXME: Make this smarter once more side effect-free types can be
2167 // determined.
2168 if (NumArgs > 0) {
2169 if (Member->getType()->isRecordType()) {
2170 UnusedPrivateFields.remove(Member);
2171 } else {
2172 for (unsigned i = 0; i < NumArgs; ++i) {
2173 if (Args[i]->HasSideEffects(Context)) {
2174 UnusedPrivateFields.remove(Member);
2175 break;
2176 }
2177 }
2178 }
2179 }
2180
Richard Trieude5e75c2012-06-14 23:11:34 +00002181 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2182 != DiagnosticsEngine::Ignored)
2183 for (unsigned i = 0; i < NumArgs; ++i)
2184 // FIXME: Warn about the case when other fields are used before being
John McCallb4190042009-11-04 23:02:40 +00002185 // uninitialized. For example, let this field be the i'th field. When
2186 // initializing the i'th field, throw a warning if any of the >= i'th
2187 // fields are used, as they are not yet initialized.
2188 // Right now we are only handling the case where the i'th field uses
2189 // itself in its initializer.
Richard Trieude5e75c2012-06-14 23:11:34 +00002190 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002191
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002192 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002193
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002194 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002195 // Can't check initialization for a member of dependent type or when
2196 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002197 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002198 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002199 bool InitList = false;
2200 if (isa<InitListExpr>(Init)) {
2201 InitList = true;
2202 Args = &Init;
2203 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002204
2205 if (isStdInitializerList(Member->getType(), 0)) {
2206 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2207 << /*at end of ctor*/1 << InitRange;
2208 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002209 }
2210
Chandler Carruth894aed92010-12-06 09:23:57 +00002211 // Initialize the member.
2212 InitializedEntity MemberEntity =
2213 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2214 : InitializedEntity::InitializeMember(IndirectMember, 0);
2215 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002216 InitList ? InitializationKind::CreateDirectList(IdLoc)
2217 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2218 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002219
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002220 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2221 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
2222 MultiExprArg(*this, Args, NumArgs),
2223 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002224 if (MemberInit.isInvalid())
2225 return true;
2226
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002227 CheckImplicitConversions(MemberInit.get(),
2228 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002229
2230 // C++0x [class.base.init]p7:
2231 // The initialization of each base and member constitutes a
2232 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002233 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002234 if (MemberInit.isInvalid())
2235 return true;
2236
2237 // If we are in a dependent context, template instantiation will
2238 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002239 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002240 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2241 // of the information that we have about the member
2242 // initializer. However, deconstructing the ASTs is a dicey process,
2243 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002244 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002245 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002246 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002247 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002248 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2249 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002250 }
2251
Chandler Carruth894aed92010-12-06 09:23:57 +00002252 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002253 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2254 InitRange.getBegin(), Init,
2255 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002256 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002257 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2258 InitRange.getBegin(), Init,
2259 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002260 }
Eli Friedman59c04372009-07-29 19:44:27 +00002261}
2262
John McCallf312b1e2010-08-26 23:41:50 +00002263MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002264Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002265 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002266 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002267 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002268 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002269 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002270 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002271
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002272 bool InitList = true;
2273 Expr **Args = &Init;
2274 unsigned NumArgs = 1;
2275 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2276 InitList = false;
2277 Args = ParenList->getExprs();
2278 NumArgs = ParenList->getNumExprs();
2279 }
2280
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002281 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002282 // Initialize the object.
2283 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2284 QualType(ClassDecl->getTypeForDecl(), 0));
2285 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002286 InitList ? InitializationKind::CreateDirectList(NameLoc)
2287 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2288 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002289 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2290 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
2291 MultiExprArg(*this, Args,NumArgs),
2292 0);
Sean Hunt41717662011-02-26 19:13:13 +00002293 if (DelegationInit.isInvalid())
2294 return true;
2295
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002296 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2297 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002298
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002299 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002300
2301 // C++0x [class.base.init]p7:
2302 // The initialization of each base and member constitutes a
2303 // full-expression.
2304 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2305 if (DelegationInit.isInvalid())
2306 return true;
2307
Eli Friedmand21016f2012-05-19 23:35:23 +00002308 // If we are in a dependent context, template instantiation will
2309 // perform this type-checking again. Just save the arguments that we
2310 // received in a ParenListExpr.
2311 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2312 // of the information that we have about the base
2313 // initializer. However, deconstructing the ASTs is a dicey process,
2314 // and this approach is far more likely to get the corner cases right.
2315 if (CurContext->isDependentContext())
2316 DelegationInit = Owned(Init);
2317
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002318 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002319 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002320 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002321}
2322
2323MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002324Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002325 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002326 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002327 SourceLocation BaseLoc
2328 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002329
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002330 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2331 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2332 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2333
2334 // C++ [class.base.init]p2:
2335 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002336 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002337 // of that class, the mem-initializer is ill-formed. A
2338 // mem-initializer-list can initialize a base class using any
2339 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002340 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002341
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002342 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002343 if (EllipsisLoc.isValid()) {
2344 // This is a pack expansion.
2345 if (!BaseType->containsUnexpandedParameterPack()) {
2346 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002347 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002348
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002349 EllipsisLoc = SourceLocation();
2350 }
2351 } else {
2352 // Check for any unexpanded parameter packs.
2353 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2354 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002355
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002356 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002357 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002358 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002359
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002360 // Check for direct and virtual base classes.
2361 const CXXBaseSpecifier *DirectBaseSpec = 0;
2362 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2363 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002364 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2365 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002366 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002367
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002368 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2369 VirtualBaseSpec);
2370
2371 // C++ [base.class.init]p2:
2372 // Unless the mem-initializer-id names a nonstatic data member of the
2373 // constructor's class or a direct or virtual base of that class, the
2374 // mem-initializer is ill-formed.
2375 if (!DirectBaseSpec && !VirtualBaseSpec) {
2376 // If the class has any dependent bases, then it's possible that
2377 // one of those types will resolve to the same type as
2378 // BaseType. Therefore, just treat this as a dependent base
2379 // class initialization. FIXME: Should we try to check the
2380 // initialization anyway? It seems odd.
2381 if (ClassDecl->hasAnyDependentBases())
2382 Dependent = true;
2383 else
2384 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2385 << BaseType << Context.getTypeDeclType(ClassDecl)
2386 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2387 }
2388 }
2389
2390 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002391 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002392
Sebastian Redl6df65482011-09-24 17:48:25 +00002393 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2394 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002395 InitRange.getBegin(), Init,
2396 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002397 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002398
2399 // C++ [base.class.init]p2:
2400 // If a mem-initializer-id is ambiguous because it designates both
2401 // a direct non-virtual base class and an inherited virtual base
2402 // class, the mem-initializer is ill-formed.
2403 if (DirectBaseSpec && VirtualBaseSpec)
2404 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002405 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002406
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002407 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002408 if (!BaseSpec)
2409 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2410
2411 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002412 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002413 Expr **Args = &Init;
2414 unsigned NumArgs = 1;
2415 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002416 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002417 Args = ParenList->getExprs();
2418 NumArgs = ParenList->getNumExprs();
2419 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002420
2421 InitializedEntity BaseEntity =
2422 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2423 InitializationKind Kind =
2424 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2425 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2426 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002427 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2428 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
2429 MultiExprArg(*this, Args, NumArgs),
2430 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002431 if (BaseInit.isInvalid())
2432 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002433
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002434 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002435
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002436 // C++0x [class.base.init]p7:
2437 // The initialization of each base and member constitutes a
2438 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002439 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002440 if (BaseInit.isInvalid())
2441 return true;
2442
2443 // If we are in a dependent context, template instantiation will
2444 // perform this type-checking again. Just save the arguments that we
2445 // received in a ParenListExpr.
2446 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2447 // of the information that we have about the base
2448 // initializer. However, deconstructing the ASTs is a dicey process,
2449 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002450 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002451 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002452
Sean Huntcbb67482011-01-08 20:30:50 +00002453 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002454 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002455 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002456 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002457 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002458}
2459
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002460// Create a static_cast\<T&&>(expr).
2461static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2462 QualType ExprType = E->getType();
2463 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2464 SourceLocation ExprLoc = E->getLocStart();
2465 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2466 TargetType, ExprLoc);
2467
2468 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2469 SourceRange(ExprLoc, ExprLoc),
2470 E->getSourceRange()).take();
2471}
2472
Anders Carlssone5ef7402010-04-23 03:10:23 +00002473/// ImplicitInitializerKind - How an implicit base or member initializer should
2474/// initialize its base or member.
2475enum ImplicitInitializerKind {
2476 IIK_Default,
2477 IIK_Copy,
2478 IIK_Move
2479};
2480
Anders Carlssondefefd22010-04-23 02:00:02 +00002481static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002482BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002483 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002484 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002485 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002486 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002487 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002488 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2489 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002490
John McCall60d7b3a2010-08-24 06:29:42 +00002491 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002492
2493 switch (ImplicitInitKind) {
2494 case IIK_Default: {
2495 InitializationKind InitKind
2496 = InitializationKind::CreateDefault(Constructor->getLocation());
2497 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
2498 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002499 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002500 break;
2501 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002502
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002503 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002504 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002505 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002506 ParmVarDecl *Param = Constructor->getParamDecl(0);
2507 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002508
Anders Carlssone5ef7402010-04-23 03:10:23 +00002509 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002510 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002511 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002512 Constructor->getLocation(), ParamType,
2513 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002514
Eli Friedman5f2987c2012-02-02 03:46:19 +00002515 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2516
Anders Carlssonc7957502010-04-24 22:02:54 +00002517 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002518 QualType ArgTy =
2519 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2520 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002521
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002522 if (Moving) {
2523 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2524 }
2525
John McCallf871d0c2010-08-07 06:22:56 +00002526 CXXCastPath BasePath;
2527 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002528 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2529 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002530 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002531 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002532
Anders Carlssone5ef7402010-04-23 03:10:23 +00002533 InitializationKind InitKind
2534 = InitializationKind::CreateDirect(Constructor->getLocation(),
2535 SourceLocation(), SourceLocation());
2536 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2537 &CopyCtorArg, 1);
2538 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002539 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002540 break;
2541 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002542 }
John McCall9ae2f072010-08-23 23:25:46 +00002543
Douglas Gregor53c374f2010-12-07 00:41:46 +00002544 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002545 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002546 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002547
Anders Carlssondefefd22010-04-23 02:00:02 +00002548 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002549 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002550 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2551 SourceLocation()),
2552 BaseSpec->isVirtual(),
2553 SourceLocation(),
2554 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002555 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002556 SourceLocation());
2557
Anders Carlssondefefd22010-04-23 02:00:02 +00002558 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002559}
2560
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002561static bool RefersToRValueRef(Expr *MemRef) {
2562 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2563 return Referenced->getType()->isRValueReferenceType();
2564}
2565
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002566static bool
2567BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002568 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002569 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002570 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002571 if (Field->isInvalidDecl())
2572 return true;
2573
Chandler Carruthf186b542010-06-29 23:50:44 +00002574 SourceLocation Loc = Constructor->getLocation();
2575
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002576 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2577 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002578 ParmVarDecl *Param = Constructor->getParamDecl(0);
2579 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002580
2581 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002582 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2583 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002584
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002585 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002586 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002587 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002588 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002589
Eli Friedman5f2987c2012-02-02 03:46:19 +00002590 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2591
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002592 if (Moving) {
2593 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2594 }
2595
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002596 // Build a reference to this field within the parameter.
2597 CXXScopeSpec SS;
2598 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2599 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002600 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2601 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002602 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002603 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002604 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002605 ParamType, Loc,
2606 /*IsArrow=*/false,
2607 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002608 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002609 /*FirstQualifierInScope=*/0,
2610 MemberLookup,
2611 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002612 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002613 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002614
2615 // C++11 [class.copy]p15:
2616 // - if a member m has rvalue reference type T&&, it is direct-initialized
2617 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002618 if (RefersToRValueRef(CtorArg.get())) {
2619 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002620 }
2621
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002622 // When the field we are copying is an array, create index variables for
2623 // each dimension of the array. We use these index variables to subscript
2624 // the source array, and other clients (e.g., CodeGen) will perform the
2625 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002626 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002627 QualType BaseType = Field->getType();
2628 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002629 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002630 while (const ConstantArrayType *Array
2631 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002632 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002633 // Create the iteration variable for this array index.
2634 IdentifierInfo *IterationVarName = 0;
2635 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002636 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002637 llvm::raw_svector_ostream OS(Str);
2638 OS << "__i" << IndexVariables.size();
2639 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2640 }
2641 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002642 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002643 IterationVarName, SizeType,
2644 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002645 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002646 IndexVariables.push_back(IterationVar);
2647
2648 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002649 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002650 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002651 assert(!IterationVarRef.isInvalid() &&
2652 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002653 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2654 assert(!IterationVarRef.isInvalid() &&
2655 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002656
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002657 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002658 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002659 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002660 Loc);
2661 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002662 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002663
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002664 BaseType = Array->getElementType();
2665 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002666
2667 // The array subscript expression is an lvalue, which is wrong for moving.
2668 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002669 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002670
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002671 // Construct the entity that we will be initializing. For an array, this
2672 // will be first element in the array, which may require several levels
2673 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002674 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002675 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002676 if (Indirect)
2677 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2678 else
2679 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002680 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2681 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2682 0,
2683 Entities.back()));
2684
2685 // Direct-initialize to use the copy constructor.
2686 InitializationKind InitKind =
2687 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2688
Sebastian Redl74e611a2011-09-04 18:14:28 +00002689 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002690 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002691 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002692
John McCall60d7b3a2010-08-24 06:29:42 +00002693 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002694 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002695 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002696 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002697 if (MemberInit.isInvalid())
2698 return true;
2699
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002700 if (Indirect) {
2701 assert(IndexVariables.size() == 0 &&
2702 "Indirect field improperly initialized");
2703 CXXMemberInit
2704 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2705 Loc, Loc,
2706 MemberInit.takeAs<Expr>(),
2707 Loc);
2708 } else
2709 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2710 Loc, MemberInit.takeAs<Expr>(),
2711 Loc,
2712 IndexVariables.data(),
2713 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002714 return false;
2715 }
2716
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002717 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2718
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002719 QualType FieldBaseElementType =
2720 SemaRef.Context.getBaseElementType(Field->getType());
2721
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002722 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002723 InitializedEntity InitEntity
2724 = Indirect? InitializedEntity::InitializeMember(Indirect)
2725 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002726 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002727 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002728
2729 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002730 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002731 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002732
Douglas Gregor53c374f2010-12-07 00:41:46 +00002733 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002734 if (MemberInit.isInvalid())
2735 return true;
2736
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002737 if (Indirect)
2738 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2739 Indirect, Loc,
2740 Loc,
2741 MemberInit.get(),
2742 Loc);
2743 else
2744 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2745 Field, Loc, Loc,
2746 MemberInit.get(),
2747 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002748 return false;
2749 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002750
Sean Hunt1f2f3842011-05-17 00:19:05 +00002751 if (!Field->getParent()->isUnion()) {
2752 if (FieldBaseElementType->isReferenceType()) {
2753 SemaRef.Diag(Constructor->getLocation(),
2754 diag::err_uninitialized_member_in_ctor)
2755 << (int)Constructor->isImplicit()
2756 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2757 << 0 << Field->getDeclName();
2758 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2759 return true;
2760 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002761
Sean Hunt1f2f3842011-05-17 00:19:05 +00002762 if (FieldBaseElementType.isConstQualified()) {
2763 SemaRef.Diag(Constructor->getLocation(),
2764 diag::err_uninitialized_member_in_ctor)
2765 << (int)Constructor->isImplicit()
2766 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2767 << 1 << Field->getDeclName();
2768 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2769 return true;
2770 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002771 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002772
David Blaikie4e4d0842012-03-11 07:00:24 +00002773 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002774 FieldBaseElementType->isObjCRetainableType() &&
2775 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2776 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002777 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002778 // Default-initialize Objective-C pointers to NULL.
2779 CXXMemberInit
2780 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2781 Loc, Loc,
2782 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2783 Loc);
2784 return false;
2785 }
2786
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002787 // Nothing to initialize.
2788 CXXMemberInit = 0;
2789 return false;
2790}
John McCallf1860e52010-05-20 23:23:51 +00002791
2792namespace {
2793struct BaseAndFieldInfo {
2794 Sema &S;
2795 CXXConstructorDecl *Ctor;
2796 bool AnyErrorsInInits;
2797 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002798 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002799 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002800
2801 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2802 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002803 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2804 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002805 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002806 else if (Generated && Ctor->isMoveConstructor())
2807 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002808 else
2809 IIK = IIK_Default;
2810 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002811
2812 bool isImplicitCopyOrMove() const {
2813 switch (IIK) {
2814 case IIK_Copy:
2815 case IIK_Move:
2816 return true;
2817
2818 case IIK_Default:
2819 return false;
2820 }
David Blaikie30263482012-01-20 21:50:17 +00002821
2822 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002823 }
John McCallf1860e52010-05-20 23:23:51 +00002824};
2825}
2826
Richard Smitha4950662011-09-19 13:34:43 +00002827/// \brief Determine whether the given indirect field declaration is somewhere
2828/// within an anonymous union.
2829static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2830 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2831 CEnd = F->chain_end();
2832 C != CEnd; ++C)
2833 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2834 if (Record->isUnion())
2835 return true;
2836
2837 return false;
2838}
2839
Douglas Gregorddb21472011-11-02 23:04:16 +00002840/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2841/// array type.
2842static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2843 if (T->isIncompleteArrayType())
2844 return true;
2845
2846 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2847 if (!ArrayT->getSize())
2848 return true;
2849
2850 T = ArrayT->getElementType();
2851 }
2852
2853 return false;
2854}
2855
Richard Smith7a614d82011-06-11 17:19:42 +00002856static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002857 FieldDecl *Field,
2858 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002859
Chandler Carruthe861c602010-06-30 02:59:29 +00002860 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00002861 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002862 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00002863 return false;
2864 }
2865
Richard Smith7a614d82011-06-11 17:19:42 +00002866 // C++0x [class.base.init]p8: if the entity is a non-static data member that
2867 // has a brace-or-equal-initializer, the entity is initialized as specified
2868 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002869 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002870 CXXCtorInitializer *Init;
2871 if (Indirect)
2872 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2873 SourceLocation(),
2874 SourceLocation(), 0,
2875 SourceLocation());
2876 else
2877 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2878 SourceLocation(),
2879 SourceLocation(), 0,
2880 SourceLocation());
2881 Info.AllToInit.push_back(Init);
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002882
2883 // Check whether this initializer makes the field "used".
2884 Expr *InitExpr = Field->getInClassInitializer();
2885 if (Field->getType()->isRecordType() ||
2886 (InitExpr && InitExpr->HasSideEffects(SemaRef.Context)))
2887 SemaRef.UnusedPrivateFields.remove(Field);
2888
Richard Smith7a614d82011-06-11 17:19:42 +00002889 return false;
2890 }
2891
Richard Smithc115f632011-09-18 11:14:50 +00002892 // Don't build an implicit initializer for union members if none was
2893 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00002894 if (Field->getParent()->isUnion() ||
2895 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00002896 return false;
2897
Douglas Gregorddb21472011-11-02 23:04:16 +00002898 // Don't initialize incomplete or zero-length arrays.
2899 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2900 return false;
2901
John McCallf1860e52010-05-20 23:23:51 +00002902 // Don't try to build an implicit initializer if there were semantic
2903 // errors in any of the initializers (and therefore we might be
2904 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00002905 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00002906 return false;
2907
Sean Huntcbb67482011-01-08 20:30:50 +00002908 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002909 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2910 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00002911 return true;
John McCallf1860e52010-05-20 23:23:51 +00002912
Francois Pichet00eb3f92010-12-04 09:14:42 +00002913 if (Init)
2914 Info.AllToInit.push_back(Init);
2915
John McCallf1860e52010-05-20 23:23:51 +00002916 return false;
2917}
Sean Hunt059ce0d2011-05-01 07:04:31 +00002918
2919bool
2920Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2921 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00002922 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00002923 Constructor->setNumCtorInitializers(1);
2924 CXXCtorInitializer **initializer =
2925 new (Context) CXXCtorInitializer*[1];
2926 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2927 Constructor->setCtorInitializers(initializer);
2928
Sean Huntb76af9c2011-05-03 23:05:34 +00002929 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002930 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00002931 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2932 }
2933
Sean Huntc1598702011-05-05 00:05:47 +00002934 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00002935
Sean Hunt059ce0d2011-05-01 07:04:31 +00002936 return false;
2937}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002938
John McCallb77115d2011-06-17 00:18:42 +00002939bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2940 CXXCtorInitializer **Initializers,
2941 unsigned NumInitializers,
2942 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00002943 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002944 // Just store the initializers as written, they will be checked during
2945 // instantiation.
2946 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002947 Constructor->setNumCtorInitializers(NumInitializers);
2948 CXXCtorInitializer **baseOrMemberInitializers =
2949 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002950 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002951 NumInitializers * sizeof(CXXCtorInitializer*));
2952 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002953 }
2954
2955 return false;
2956 }
2957
John McCallf1860e52010-05-20 23:23:51 +00002958 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002959
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002960 // We need to build the initializer AST according to order of construction
2961 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002962 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002963 if (!ClassDecl)
2964 return true;
2965
Eli Friedman80c30da2009-11-09 19:20:36 +00002966 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002967
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002968 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002969 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002970
2971 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002972 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002973 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002974 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002975 }
2976
Anders Carlsson711f34a2010-04-21 19:52:01 +00002977 // Keep track of the direct virtual bases.
2978 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2979 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2980 E = ClassDecl->bases_end(); I != E; ++I) {
2981 if (I->isVirtual())
2982 DirectVBases.insert(I);
2983 }
2984
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002985 // Push virtual bases before others.
2986 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2987 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2988
Sean Huntcbb67482011-01-08 20:30:50 +00002989 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002990 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2991 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002992 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002993 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002994 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002995 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002996 VBase, IsInheritedVirtualBase,
2997 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002998 HadError = true;
2999 continue;
3000 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003001
John McCallf1860e52010-05-20 23:23:51 +00003002 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003003 }
3004 }
Mike Stump1eb44332009-09-09 15:08:12 +00003005
John McCallf1860e52010-05-20 23:23:51 +00003006 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003007 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3008 E = ClassDecl->bases_end(); Base != E; ++Base) {
3009 // Virtuals are in the virtual base list and already constructed.
3010 if (Base->isVirtual())
3011 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003012
Sean Huntcbb67482011-01-08 20:30:50 +00003013 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003014 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3015 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003016 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003017 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003018 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003019 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003020 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003021 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003022 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003023 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003024
John McCallf1860e52010-05-20 23:23:51 +00003025 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003026 }
3027 }
Mike Stump1eb44332009-09-09 15:08:12 +00003028
John McCallf1860e52010-05-20 23:23:51 +00003029 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003030 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3031 MemEnd = ClassDecl->decls_end();
3032 Mem != MemEnd; ++Mem) {
3033 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003034 // C++ [class.bit]p2:
3035 // A declaration for a bit-field that omits the identifier declares an
3036 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3037 // initialized.
3038 if (F->isUnnamedBitfield())
3039 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003040
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003041 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003042 // handle anonymous struct/union fields based on their individual
3043 // indirect fields.
3044 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3045 continue;
3046
3047 if (CollectFieldInitializer(*this, Info, F))
3048 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003049 continue;
3050 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003051
3052 // Beyond this point, we only consider default initialization.
3053 if (Info.IIK != IIK_Default)
3054 continue;
3055
3056 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3057 if (F->getType()->isIncompleteArrayType()) {
3058 assert(ClassDecl->hasFlexibleArrayMember() &&
3059 "Incomplete array type is not valid");
3060 continue;
3061 }
3062
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003063 // Initialize each field of an anonymous struct individually.
3064 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3065 HadError = true;
3066
3067 continue;
3068 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003069 }
Mike Stump1eb44332009-09-09 15:08:12 +00003070
John McCallf1860e52010-05-20 23:23:51 +00003071 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003072 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003073 Constructor->setNumCtorInitializers(NumInitializers);
3074 CXXCtorInitializer **baseOrMemberInitializers =
3075 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003076 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003077 NumInitializers * sizeof(CXXCtorInitializer*));
3078 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003079
John McCallef027fe2010-03-16 21:39:52 +00003080 // Constructors implicitly reference the base and member
3081 // destructors.
3082 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3083 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003084 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003085
3086 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003087}
3088
Eli Friedman6347f422009-07-21 19:28:10 +00003089static void *GetKeyForTopLevelField(FieldDecl *Field) {
3090 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003091 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003092 if (RT->getDecl()->isAnonymousStructOrUnion())
3093 return static_cast<void *>(RT->getDecl());
3094 }
3095 return static_cast<void *>(Field);
3096}
3097
Anders Carlssonea356fb2010-04-02 05:42:15 +00003098static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003099 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003100}
3101
Anders Carlssonea356fb2010-04-02 05:42:15 +00003102static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003103 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003104 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003105 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003106
Eli Friedman6347f422009-07-21 19:28:10 +00003107 // For fields injected into the class via declaration of an anonymous union,
3108 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003109 FieldDecl *Field = Member->getAnyMember();
3110
John McCall3c3ccdb2010-04-10 09:28:51 +00003111 // If the field is a member of an anonymous struct or union, our key
3112 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003113 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003114 if (RD->isAnonymousStructOrUnion()) {
3115 while (true) {
3116 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3117 if (Parent->isAnonymousStructOrUnion())
3118 RD = Parent;
3119 else
3120 break;
3121 }
3122
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003123 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003124 }
Mike Stump1eb44332009-09-09 15:08:12 +00003125
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003126 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003127}
3128
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003129static void
3130DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003131 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003132 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003133 unsigned NumInits) {
3134 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003135 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003136
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003137 // Don't check initializers order unless the warning is enabled at the
3138 // location of at least one initializer.
3139 bool ShouldCheckOrder = false;
3140 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003141 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003142 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3143 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003144 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003145 ShouldCheckOrder = true;
3146 break;
3147 }
3148 }
3149 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003150 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003151
John McCalld6ca8da2010-04-10 07:37:23 +00003152 // Build the list of bases and members in the order that they'll
3153 // actually be initialized. The explicit initializers should be in
3154 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003155 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003156
Anders Carlsson071d6102010-04-02 03:38:04 +00003157 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3158
John McCalld6ca8da2010-04-10 07:37:23 +00003159 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003160 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003161 ClassDecl->vbases_begin(),
3162 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003163 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003164
John McCalld6ca8da2010-04-10 07:37:23 +00003165 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003166 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003167 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003168 if (Base->isVirtual())
3169 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003170 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003171 }
Mike Stump1eb44332009-09-09 15:08:12 +00003172
John McCalld6ca8da2010-04-10 07:37:23 +00003173 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003174 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003175 E = ClassDecl->field_end(); Field != E; ++Field) {
3176 if (Field->isUnnamedBitfield())
3177 continue;
3178
David Blaikie581deb32012-06-06 20:45:41 +00003179 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003180 }
3181
John McCalld6ca8da2010-04-10 07:37:23 +00003182 unsigned NumIdealInits = IdealInitKeys.size();
3183 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003184
Sean Huntcbb67482011-01-08 20:30:50 +00003185 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003186 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003187 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003188 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003189
3190 // Scan forward to try to find this initializer in the idealized
3191 // initializers list.
3192 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3193 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003194 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003195
3196 // If we didn't find this initializer, it must be because we
3197 // scanned past it on a previous iteration. That can only
3198 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003199 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003200 Sema::SemaDiagnosticBuilder D =
3201 SemaRef.Diag(PrevInit->getSourceLocation(),
3202 diag::warn_initializer_out_of_order);
3203
Francois Pichet00eb3f92010-12-04 09:14:42 +00003204 if (PrevInit->isAnyMemberInitializer())
3205 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003206 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003207 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003208
Francois Pichet00eb3f92010-12-04 09:14:42 +00003209 if (Init->isAnyMemberInitializer())
3210 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003211 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003212 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003213
3214 // Move back to the initializer's location in the ideal list.
3215 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3216 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003217 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003218
3219 assert(IdealIndex != NumIdealInits &&
3220 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003221 }
John McCalld6ca8da2010-04-10 07:37:23 +00003222
3223 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003224 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003225}
3226
John McCall3c3ccdb2010-04-10 09:28:51 +00003227namespace {
3228bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003229 CXXCtorInitializer *Init,
3230 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003231 if (!PrevInit) {
3232 PrevInit = Init;
3233 return false;
3234 }
3235
3236 if (FieldDecl *Field = Init->getMember())
3237 S.Diag(Init->getSourceLocation(),
3238 diag::err_multiple_mem_initialization)
3239 << Field->getDeclName()
3240 << Init->getSourceRange();
3241 else {
John McCallf4c73712011-01-19 06:33:43 +00003242 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003243 assert(BaseClass && "neither field nor base");
3244 S.Diag(Init->getSourceLocation(),
3245 diag::err_multiple_base_initialization)
3246 << QualType(BaseClass, 0)
3247 << Init->getSourceRange();
3248 }
3249 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3250 << 0 << PrevInit->getSourceRange();
3251
3252 return true;
3253}
3254
Sean Huntcbb67482011-01-08 20:30:50 +00003255typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003256typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3257
3258bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003259 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003260 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003261 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003262 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003263 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003264
3265 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003266 if (Parent->isUnion()) {
3267 UnionEntry &En = Unions[Parent];
3268 if (En.first && En.first != Child) {
3269 S.Diag(Init->getSourceLocation(),
3270 diag::err_multiple_mem_union_initialization)
3271 << Field->getDeclName()
3272 << Init->getSourceRange();
3273 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3274 << 0 << En.second->getSourceRange();
3275 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003276 }
3277 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003278 En.first = Child;
3279 En.second = Init;
3280 }
David Blaikie6fe29652011-11-17 06:01:57 +00003281 if (!Parent->isAnonymousStructOrUnion())
3282 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003283 }
3284
3285 Child = Parent;
3286 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003287 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003288
3289 return false;
3290}
3291}
3292
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003293/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003294void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003295 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003296 CXXCtorInitializer **meminits,
3297 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003298 bool AnyErrors) {
3299 if (!ConstructorDecl)
3300 return;
3301
3302 AdjustDeclIfTemplate(ConstructorDecl);
3303
3304 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003305 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003306
3307 if (!Constructor) {
3308 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3309 return;
3310 }
3311
Sean Huntcbb67482011-01-08 20:30:50 +00003312 CXXCtorInitializer **MemInits =
3313 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003314
3315 // Mapping for the duplicate initializers check.
3316 // For member initializers, this is keyed with a FieldDecl*.
3317 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003318 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003319
3320 // Mapping for the inconsistent anonymous-union initializers check.
3321 RedundantUnionMap MemberUnions;
3322
Anders Carlssonea356fb2010-04-02 05:42:15 +00003323 bool HadError = false;
3324 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003325 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003326
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003327 // Set the source order index.
3328 Init->setSourceOrder(i);
3329
Francois Pichet00eb3f92010-12-04 09:14:42 +00003330 if (Init->isAnyMemberInitializer()) {
3331 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003332 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3333 CheckRedundantUnionInit(*this, Init, MemberUnions))
3334 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003335 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003336 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3337 if (CheckRedundantInit(*this, Init, Members[Key]))
3338 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003339 } else {
3340 assert(Init->isDelegatingInitializer());
3341 // This must be the only initializer
3342 if (i != 0 || NumMemInits > 1) {
3343 Diag(MemInits[0]->getSourceLocation(),
3344 diag::err_delegating_initializer_alone)
3345 << MemInits[0]->getSourceRange();
3346 HadError = true;
Sean Hunt059ce0d2011-05-01 07:04:31 +00003347 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003348 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003349 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003350 // Return immediately as the initializer is set.
3351 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003352 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003353 }
3354
Anders Carlssonea356fb2010-04-02 05:42:15 +00003355 if (HadError)
3356 return;
3357
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003358 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003359
Sean Huntcbb67482011-01-08 20:30:50 +00003360 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003361}
3362
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003363void
John McCallef027fe2010-03-16 21:39:52 +00003364Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3365 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003366 // Ignore dependent contexts. Also ignore unions, since their members never
3367 // have destructors implicitly called.
3368 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003369 return;
John McCall58e6f342010-03-16 05:22:47 +00003370
3371 // FIXME: all the access-control diagnostics are positioned on the
3372 // field/base declaration. That's probably good; that said, the
3373 // user might reasonably want to know why the destructor is being
3374 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003375
Anders Carlsson9f853df2009-11-17 04:44:12 +00003376 // Non-static data members.
3377 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3378 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003379 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003380 if (Field->isInvalidDecl())
3381 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003382
3383 // Don't destroy incomplete or zero-length arrays.
3384 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3385 continue;
3386
Anders Carlsson9f853df2009-11-17 04:44:12 +00003387 QualType FieldType = Context.getBaseElementType(Field->getType());
3388
3389 const RecordType* RT = FieldType->getAs<RecordType>();
3390 if (!RT)
3391 continue;
3392
3393 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003394 if (FieldClassDecl->isInvalidDecl())
3395 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003396 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003397 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003398 // The destructor for an implicit anonymous union member is never invoked.
3399 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3400 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003401
Douglas Gregordb89f282010-07-01 22:47:18 +00003402 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003403 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003404 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003405 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003406 << Field->getDeclName()
3407 << FieldType);
3408
Eli Friedman5f2987c2012-02-02 03:46:19 +00003409 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003410 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003411 }
3412
John McCall58e6f342010-03-16 05:22:47 +00003413 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3414
Anders Carlsson9f853df2009-11-17 04:44:12 +00003415 // Bases.
3416 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3417 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003418 // Bases are always records in a well-formed non-dependent class.
3419 const RecordType *RT = Base->getType()->getAs<RecordType>();
3420
3421 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003422 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003423 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003424
John McCall58e6f342010-03-16 05:22:47 +00003425 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003426 // If our base class is invalid, we probably can't get its dtor anyway.
3427 if (BaseClassDecl->isInvalidDecl())
3428 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003429 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003430 continue;
John McCall58e6f342010-03-16 05:22:47 +00003431
Douglas Gregordb89f282010-07-01 22:47:18 +00003432 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003433 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003434
3435 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003436 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003437 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003438 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003439 << Base->getSourceRange(),
3440 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003441
Eli Friedman5f2987c2012-02-02 03:46:19 +00003442 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003443 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003444 }
3445
3446 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003447 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3448 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003449
3450 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003451 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003452
3453 // Ignore direct virtual bases.
3454 if (DirectVirtualBases.count(RT))
3455 continue;
3456
John McCall58e6f342010-03-16 05:22:47 +00003457 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003458 // If our base class is invalid, we probably can't get its dtor anyway.
3459 if (BaseClassDecl->isInvalidDecl())
3460 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003461 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003462 continue;
John McCall58e6f342010-03-16 05:22:47 +00003463
Douglas Gregordb89f282010-07-01 22:47:18 +00003464 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003465 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003466 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003467 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003468 << VBase->getType(),
3469 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003470
Eli Friedman5f2987c2012-02-02 03:46:19 +00003471 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003472 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003473 }
3474}
3475
John McCalld226f652010-08-21 09:40:31 +00003476void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003477 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003478 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003479
Mike Stump1eb44332009-09-09 15:08:12 +00003480 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003481 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003482 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003483}
3484
Mike Stump1eb44332009-09-09 15:08:12 +00003485bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003486 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003487 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3488 unsigned DiagID;
3489 AbstractDiagSelID SelID;
3490
3491 public:
3492 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3493 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3494
3495 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
3496 if (SelID == -1)
3497 S.Diag(Loc, DiagID) << T;
3498 else
3499 S.Diag(Loc, DiagID) << SelID << T;
3500 }
3501 } Diagnoser(DiagID, SelID);
3502
3503 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003504}
3505
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003506bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003507 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003508 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003509 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003510
Anders Carlsson11f21a02009-03-23 19:10:31 +00003511 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003512 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003513
Ted Kremenek6217b802009-07-29 21:53:49 +00003514 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003515 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003516 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003517 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003518
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003519 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003520 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003521 }
Mike Stump1eb44332009-09-09 15:08:12 +00003522
Ted Kremenek6217b802009-07-29 21:53:49 +00003523 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003524 if (!RT)
3525 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003526
John McCall86ff3082010-02-04 22:26:26 +00003527 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003528
John McCall94c3b562010-08-18 09:41:07 +00003529 // We can't answer whether something is abstract until it has a
3530 // definition. If it's currently being defined, we'll walk back
3531 // over all the declarations when we have a full definition.
3532 const CXXRecordDecl *Def = RD->getDefinition();
3533 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003534 return false;
3535
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003536 if (!RD->isAbstract())
3537 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003538
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003539 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003540 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003541
John McCall94c3b562010-08-18 09:41:07 +00003542 return true;
3543}
3544
3545void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3546 // Check if we've already emitted the list of pure virtual functions
3547 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003548 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003549 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003550
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003551 CXXFinalOverriderMap FinalOverriders;
3552 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003553
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003554 // Keep a set of seen pure methods so we won't diagnose the same method
3555 // more than once.
3556 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3557
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003558 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3559 MEnd = FinalOverriders.end();
3560 M != MEnd;
3561 ++M) {
3562 for (OverridingMethods::iterator SO = M->second.begin(),
3563 SOEnd = M->second.end();
3564 SO != SOEnd; ++SO) {
3565 // C++ [class.abstract]p4:
3566 // A class is abstract if it contains or inherits at least one
3567 // pure virtual function for which the final overrider is pure
3568 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003569
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003570 //
3571 if (SO->second.size() != 1)
3572 continue;
3573
3574 if (!SO->second.front().Method->isPure())
3575 continue;
3576
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003577 if (!SeenPureMethods.insert(SO->second.front().Method))
3578 continue;
3579
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003580 Diag(SO->second.front().Method->getLocation(),
3581 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003582 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003583 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003584 }
3585
3586 if (!PureVirtualClassDiagSet)
3587 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3588 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003589}
3590
Anders Carlsson8211eff2009-03-24 01:19:16 +00003591namespace {
John McCall94c3b562010-08-18 09:41:07 +00003592struct AbstractUsageInfo {
3593 Sema &S;
3594 CXXRecordDecl *Record;
3595 CanQualType AbstractType;
3596 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003597
John McCall94c3b562010-08-18 09:41:07 +00003598 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3599 : S(S), Record(Record),
3600 AbstractType(S.Context.getCanonicalType(
3601 S.Context.getTypeDeclType(Record))),
3602 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003603
John McCall94c3b562010-08-18 09:41:07 +00003604 void DiagnoseAbstractType() {
3605 if (Invalid) return;
3606 S.DiagnoseAbstractType(Record);
3607 Invalid = true;
3608 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003609
John McCall94c3b562010-08-18 09:41:07 +00003610 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3611};
3612
3613struct CheckAbstractUsage {
3614 AbstractUsageInfo &Info;
3615 const NamedDecl *Ctx;
3616
3617 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3618 : Info(Info), Ctx(Ctx) {}
3619
3620 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3621 switch (TL.getTypeLocClass()) {
3622#define ABSTRACT_TYPELOC(CLASS, PARENT)
3623#define TYPELOC(CLASS, PARENT) \
3624 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3625#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003626 }
John McCall94c3b562010-08-18 09:41:07 +00003627 }
Mike Stump1eb44332009-09-09 15:08:12 +00003628
John McCall94c3b562010-08-18 09:41:07 +00003629 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3630 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3631 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003632 if (!TL.getArg(I))
3633 continue;
3634
John McCall94c3b562010-08-18 09:41:07 +00003635 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3636 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003637 }
John McCall94c3b562010-08-18 09:41:07 +00003638 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003639
John McCall94c3b562010-08-18 09:41:07 +00003640 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3641 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3642 }
Mike Stump1eb44332009-09-09 15:08:12 +00003643
John McCall94c3b562010-08-18 09:41:07 +00003644 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3645 // Visit the type parameters from a permissive context.
3646 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3647 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3648 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3649 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3650 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3651 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003652 }
John McCall94c3b562010-08-18 09:41:07 +00003653 }
Mike Stump1eb44332009-09-09 15:08:12 +00003654
John McCall94c3b562010-08-18 09:41:07 +00003655 // Visit pointee types from a permissive context.
3656#define CheckPolymorphic(Type) \
3657 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3658 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3659 }
3660 CheckPolymorphic(PointerTypeLoc)
3661 CheckPolymorphic(ReferenceTypeLoc)
3662 CheckPolymorphic(MemberPointerTypeLoc)
3663 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003664 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003665
John McCall94c3b562010-08-18 09:41:07 +00003666 /// Handle all the types we haven't given a more specific
3667 /// implementation for above.
3668 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3669 // Every other kind of type that we haven't called out already
3670 // that has an inner type is either (1) sugar or (2) contains that
3671 // inner type in some way as a subobject.
3672 if (TypeLoc Next = TL.getNextTypeLoc())
3673 return Visit(Next, Sel);
3674
3675 // If there's no inner type and we're in a permissive context,
3676 // don't diagnose.
3677 if (Sel == Sema::AbstractNone) return;
3678
3679 // Check whether the type matches the abstract type.
3680 QualType T = TL.getType();
3681 if (T->isArrayType()) {
3682 Sel = Sema::AbstractArrayType;
3683 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003684 }
John McCall94c3b562010-08-18 09:41:07 +00003685 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3686 if (CT != Info.AbstractType) return;
3687
3688 // It matched; do some magic.
3689 if (Sel == Sema::AbstractArrayType) {
3690 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3691 << T << TL.getSourceRange();
3692 } else {
3693 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3694 << Sel << T << TL.getSourceRange();
3695 }
3696 Info.DiagnoseAbstractType();
3697 }
3698};
3699
3700void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3701 Sema::AbstractDiagSelID Sel) {
3702 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3703}
3704
3705}
3706
3707/// Check for invalid uses of an abstract type in a method declaration.
3708static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3709 CXXMethodDecl *MD) {
3710 // No need to do the check on definitions, which require that
3711 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003712 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003713 return;
3714
3715 // For safety's sake, just ignore it if we don't have type source
3716 // information. This should never happen for non-implicit methods,
3717 // but...
3718 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3719 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3720}
3721
3722/// Check for invalid uses of an abstract type within a class definition.
3723static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3724 CXXRecordDecl *RD) {
3725 for (CXXRecordDecl::decl_iterator
3726 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3727 Decl *D = *I;
3728 if (D->isImplicit()) continue;
3729
3730 // Methods and method templates.
3731 if (isa<CXXMethodDecl>(D)) {
3732 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3733 } else if (isa<FunctionTemplateDecl>(D)) {
3734 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3735 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3736
3737 // Fields and static variables.
3738 } else if (isa<FieldDecl>(D)) {
3739 FieldDecl *FD = cast<FieldDecl>(D);
3740 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3741 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3742 } else if (isa<VarDecl>(D)) {
3743 VarDecl *VD = cast<VarDecl>(D);
3744 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3745 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3746
3747 // Nested classes and class templates.
3748 } else if (isa<CXXRecordDecl>(D)) {
3749 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3750 } else if (isa<ClassTemplateDecl>(D)) {
3751 CheckAbstractClassUsage(Info,
3752 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3753 }
3754 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003755}
3756
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003757/// \brief Perform semantic checks on a class definition that has been
3758/// completing, introducing implicitly-declared members, checking for
3759/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003760void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003761 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003762 return;
3763
John McCall94c3b562010-08-18 09:41:07 +00003764 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3765 AbstractUsageInfo Info(*this, Record);
3766 CheckAbstractClassUsage(Info, Record);
3767 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003768
3769 // If this is not an aggregate type and has no user-declared constructor,
3770 // complain about any non-static data members of reference or const scalar
3771 // type, since they will never get initializers.
3772 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003773 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3774 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003775 bool Complained = false;
3776 for (RecordDecl::field_iterator F = Record->field_begin(),
3777 FEnd = Record->field_end();
3778 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003779 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003780 continue;
3781
Douglas Gregor325e5932010-04-15 00:00:53 +00003782 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003783 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003784 if (!Complained) {
3785 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3786 << Record->getTagKind() << Record;
3787 Complained = true;
3788 }
3789
3790 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3791 << F->getType()->isReferenceType()
3792 << F->getDeclName();
3793 }
3794 }
3795 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003796
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003797 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003798 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003799
3800 if (Record->getIdentifier()) {
3801 // C++ [class.mem]p13:
3802 // If T is the name of a class, then each of the following shall have a
3803 // name different from T:
3804 // - every member of every anonymous union that is a member of class T.
3805 //
3806 // C++ [class.mem]p14:
3807 // In addition, if class T has a user-declared constructor (12.1), every
3808 // non-static data member of class T shall have a name different from T.
3809 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003810 R.first != R.second; ++R.first) {
3811 NamedDecl *D = *R.first;
3812 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3813 isa<IndirectFieldDecl>(D)) {
3814 Diag(D->getLocation(), diag::err_member_name_of_class)
3815 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003816 break;
3817 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003818 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003819 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003820
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003821 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003822 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003823 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003824 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003825 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3826 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3827 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003828
3829 // See if a method overloads virtual methods in a base
3830 /// class without overriding any.
3831 if (!Record->isDependentType()) {
3832 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3833 MEnd = Record->method_end();
3834 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003835 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003836 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003837 }
3838 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003839
Richard Smith9f569cc2011-10-01 02:31:28 +00003840 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3841 // function that is not a constructor declares that member function to be
3842 // const. [...] The class of which that function is a member shall be
3843 // a literal type.
3844 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003845 // If the class has virtual bases, any constexpr members will already have
3846 // been diagnosed by the checks performed on the member declaration, so
3847 // suppress this (less useful) diagnostic.
3848 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3849 !Record->isLiteral() && !Record->getNumVBases()) {
3850 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3851 MEnd = Record->method_end();
3852 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003853 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003854 switch (Record->getTemplateSpecializationKind()) {
3855 case TSK_ImplicitInstantiation:
3856 case TSK_ExplicitInstantiationDeclaration:
3857 case TSK_ExplicitInstantiationDefinition:
3858 // If a template instantiates to a non-literal type, but its members
3859 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003860 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003861 continue;
3862
3863 case TSK_Undeclared:
3864 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003865 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003866 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003867 break;
3868 }
3869
3870 // Only produce one error per class.
3871 break;
3872 }
3873 }
3874 }
3875
Sebastian Redlf677ea32011-02-05 19:23:19 +00003876 // Declare inherited constructors. We do this eagerly here because:
3877 // - The standard requires an eager diagnostic for conflicting inherited
3878 // constructors from different classes.
3879 // - The lazy declaration of the other implicit constructors is so as to not
3880 // waste space and performance on classes that are not meant to be
3881 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3882 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003883 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003884}
3885
3886void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003887 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3888 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003889 MI != ME; ++MI)
3890 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00003891 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003892}
3893
Richard Smith7756afa2012-06-10 05:43:50 +00003894/// Is the special member function which would be selected to perform the
3895/// specified operation on the specified class type a constexpr constructor?
3896static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3897 Sema::CXXSpecialMember CSM,
3898 bool ConstArg) {
3899 Sema::SpecialMemberOverloadResult *SMOR =
3900 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
3901 false, false, false, false);
3902 if (!SMOR || !SMOR->getMethod())
3903 // A constructor we wouldn't select can't be "involved in initializing"
3904 // anything.
3905 return true;
3906 return SMOR->getMethod()->isConstexpr();
3907}
3908
3909/// Determine whether the specified special member function would be constexpr
3910/// if it were implicitly defined.
3911static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3912 Sema::CXXSpecialMember CSM,
3913 bool ConstArg) {
3914 if (!S.getLangOpts().CPlusPlus0x)
3915 return false;
3916
3917 // C++11 [dcl.constexpr]p4:
3918 // In the definition of a constexpr constructor [...]
3919 switch (CSM) {
3920 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003921 // Since default constructor lookup is essentially trivial (and cannot
3922 // involve, for instance, template instantiation), we compute whether a
3923 // defaulted default constructor is constexpr directly within CXXRecordDecl.
3924 //
3925 // This is important for performance; we need to know whether the default
3926 // constructor is constexpr to determine whether the type is a literal type.
3927 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
3928
Richard Smith7756afa2012-06-10 05:43:50 +00003929 case Sema::CXXCopyConstructor:
3930 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003931 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00003932 break;
3933
3934 case Sema::CXXCopyAssignment:
3935 case Sema::CXXMoveAssignment:
3936 case Sema::CXXDestructor:
3937 case Sema::CXXInvalid:
3938 return false;
3939 }
3940
3941 // -- if the class is a non-empty union, or for each non-empty anonymous
3942 // union member of a non-union class, exactly one non-static data member
3943 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00003944 //
3945 // If we squint, this is guaranteed, since exactly one non-static data member
3946 // will be initialized (if the constructor isn't deleted), we just don't know
3947 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00003948 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00003949 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00003950
3951 // -- the class shall not have any virtual base classes;
3952 if (ClassDecl->getNumVBases())
3953 return false;
3954
3955 // -- every constructor involved in initializing [...] base class
3956 // sub-objects shall be a constexpr constructor;
3957 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
3958 BEnd = ClassDecl->bases_end();
3959 B != BEnd; ++B) {
3960 const RecordType *BaseType = B->getType()->getAs<RecordType>();
3961 if (!BaseType) continue;
3962
3963 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
3964 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
3965 return false;
3966 }
3967
3968 // -- every constructor involved in initializing non-static data members
3969 // [...] shall be a constexpr constructor;
3970 // -- every non-static data member and base class sub-object shall be
3971 // initialized
3972 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
3973 FEnd = ClassDecl->field_end();
3974 F != FEnd; ++F) {
3975 if (F->isInvalidDecl())
3976 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00003977 if (const RecordType *RecordTy =
3978 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00003979 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
3980 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
3981 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00003982 }
3983 }
3984
3985 // All OK, it's constexpr!
3986 return true;
3987}
3988
Richard Smithb9d0b762012-07-27 04:22:15 +00003989static Sema::ImplicitExceptionSpecification
3990computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
3991 switch (S.getSpecialMember(MD)) {
3992 case Sema::CXXDefaultConstructor:
3993 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
3994 case Sema::CXXCopyConstructor:
3995 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
3996 case Sema::CXXCopyAssignment:
3997 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
3998 case Sema::CXXMoveConstructor:
3999 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4000 case Sema::CXXMoveAssignment:
4001 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4002 case Sema::CXXDestructor:
4003 return S.ComputeDefaultedDtorExceptionSpec(MD);
4004 case Sema::CXXInvalid:
4005 break;
4006 }
4007 llvm_unreachable("only special members have implicit exception specs");
4008}
4009
4010void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4011 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4012 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4013 return;
4014
4015 // Evaluate the exception specification and update the type of the special
4016 // member to use it.
4017 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4018 computeImplicitExceptionSpec(*this, Loc, MD).getEPI(EPI);
4019 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4020 Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4021 FPT->getNumArgs(), EPI));
4022 MD->setType(QualType(NewFPT, 0));
4023}
4024
4025static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4026static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4027
Richard Smith3003e1d2012-05-15 04:39:51 +00004028void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4029 CXXRecordDecl *RD = MD->getParent();
4030 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004031
Richard Smith3003e1d2012-05-15 04:39:51 +00004032 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4033 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004034
4035 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004036 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004037 bool First = MD == MD->getCanonicalDecl();
4038
4039 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004040
4041 // C++11 [dcl.fct.def.default]p1:
4042 // A function that is explicitly defaulted shall
4043 // -- be a special member function (checked elsewhere),
4044 // -- have the same type (except for ref-qualifiers, and except that a
4045 // copy operation can take a non-const reference) as an implicit
4046 // declaration, and
4047 // -- not have default arguments.
4048 unsigned ExpectedParams = 1;
4049 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4050 ExpectedParams = 0;
4051 if (MD->getNumParams() != ExpectedParams) {
4052 // This also checks for default arguments: a copy or move constructor with a
4053 // default argument is classified as a default constructor, and assignment
4054 // operations and destructors can't have default arguments.
4055 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4056 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004057 HadError = true;
4058 }
4059
Richard Smith3003e1d2012-05-15 04:39:51 +00004060 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004061
Richard Smithb9d0b762012-07-27 04:22:15 +00004062 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004063 bool CanHaveConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004064 bool Trivial;
4065 switch (CSM) {
4066 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004067 Trivial = RD->hasTrivialDefaultConstructor();
4068 break;
4069 case CXXCopyConstructor:
Richard Smithb9d0b762012-07-27 04:22:15 +00004070 CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004071 Trivial = RD->hasTrivialCopyConstructor();
4072 break;
4073 case CXXCopyAssignment:
Richard Smithb9d0b762012-07-27 04:22:15 +00004074 CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004075 Trivial = RD->hasTrivialCopyAssignment();
4076 break;
4077 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004078 Trivial = RD->hasTrivialMoveConstructor();
4079 break;
4080 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004081 Trivial = RD->hasTrivialMoveAssignment();
4082 break;
4083 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004084 Trivial = RD->hasTrivialDestructor();
4085 break;
4086 case CXXInvalid:
4087 llvm_unreachable("non-special member explicitly defaulted!");
4088 }
Sean Hunt2b188082011-05-14 05:23:28 +00004089
Richard Smith3003e1d2012-05-15 04:39:51 +00004090 QualType ReturnType = Context.VoidTy;
4091 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4092 // Check for return type matching.
4093 ReturnType = Type->getResultType();
4094 QualType ExpectedReturnType =
4095 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4096 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4097 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4098 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4099 HadError = true;
4100 }
4101
4102 // A defaulted special member cannot have cv-qualifiers.
4103 if (Type->getTypeQuals()) {
4104 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4105 << (CSM == CXXMoveAssignment);
4106 HadError = true;
4107 }
4108 }
4109
4110 // Check for parameter type matching.
4111 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004112 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004113 if (ExpectedParams && ArgType->isReferenceType()) {
4114 // Argument must be reference to possibly-const T.
4115 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004116 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004117
4118 if (ReferentType.isVolatileQualified()) {
4119 Diag(MD->getLocation(),
4120 diag::err_defaulted_special_member_volatile_param) << CSM;
4121 HadError = true;
4122 }
4123
Richard Smith7756afa2012-06-10 05:43:50 +00004124 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004125 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4126 Diag(MD->getLocation(),
4127 diag::err_defaulted_special_member_copy_const_param)
4128 << (CSM == CXXCopyAssignment);
4129 // FIXME: Explain why this special member can't be const.
4130 } else {
4131 Diag(MD->getLocation(),
4132 diag::err_defaulted_special_member_move_const_param)
4133 << (CSM == CXXMoveAssignment);
4134 }
4135 HadError = true;
4136 }
4137
4138 // If a function is explicitly defaulted on its first declaration, it shall
4139 // have the same parameter type as if it had been implicitly declared.
4140 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004141 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004142 Diag(MD->getLocation(),
4143 diag::err_defaulted_special_member_copy_non_const_param)
4144 << (CSM == CXXCopyAssignment);
4145 } else if (ExpectedParams) {
4146 // A copy assignment operator can take its argument by value, but a
4147 // defaulted one cannot.
4148 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004149 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004150 HadError = true;
4151 }
Sean Huntbe631222011-05-17 20:44:43 +00004152
Richard Smithb9d0b762012-07-27 04:22:15 +00004153 // Rebuild the type with the implicit exception specification added, if we
4154 // are going to need it.
4155 const FunctionProtoType *ImplicitType = 0;
4156 if (First || Type->hasExceptionSpec()) {
4157 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4158 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4159 ImplicitType = cast<FunctionProtoType>(
4160 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4161 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004162
Richard Smith61802452011-12-22 02:22:31 +00004163 // C++11 [dcl.fct.def.default]p2:
4164 // An explicitly-defaulted function may be declared constexpr only if it
4165 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004166 // Do not apply this rule to members of class templates, since core issue 1358
4167 // makes such functions always instantiate to constexpr functions. For
4168 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004169 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4170 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004171 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4172 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4173 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004174 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004175 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004176 }
4177 // and may have an explicit exception-specification only if it is compatible
4178 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004179 if (Type->hasExceptionSpec() &&
4180 CheckEquivalentExceptionSpec(
4181 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4182 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4183 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004184
4185 // If a function is explicitly defaulted on its first declaration,
4186 if (First) {
4187 // -- it is implicitly considered to be constexpr if the implicit
4188 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004189 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004190
Richard Smith3003e1d2012-05-15 04:39:51 +00004191 // -- it is implicitly considered to have the same exception-specification
4192 // as if it had been implicitly declared,
4193 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004194
4195 // Such a function is also trivial if the implicitly-declared function
4196 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004197 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004198 }
4199
Richard Smith3003e1d2012-05-15 04:39:51 +00004200 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004201 if (First) {
4202 MD->setDeletedAsWritten();
4203 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004204 // C++11 [dcl.fct.def.default]p4:
4205 // [For a] user-provided explicitly-defaulted function [...] if such a
4206 // function is implicitly defined as deleted, the program is ill-formed.
4207 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4208 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004209 }
4210 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004211
Richard Smith3003e1d2012-05-15 04:39:51 +00004212 if (HadError)
4213 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004214}
4215
Richard Smith7d5088a2012-02-18 02:02:13 +00004216namespace {
4217struct SpecialMemberDeletionInfo {
4218 Sema &S;
4219 CXXMethodDecl *MD;
4220 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004221 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004222
4223 // Properties of the special member, computed for convenience.
4224 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4225 SourceLocation Loc;
4226
4227 bool AllFieldsAreConst;
4228
4229 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004230 Sema::CXXSpecialMember CSM, bool Diagnose)
4231 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004232 IsConstructor(false), IsAssignment(false), IsMove(false),
4233 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4234 AllFieldsAreConst(true) {
4235 switch (CSM) {
4236 case Sema::CXXDefaultConstructor:
4237 case Sema::CXXCopyConstructor:
4238 IsConstructor = true;
4239 break;
4240 case Sema::CXXMoveConstructor:
4241 IsConstructor = true;
4242 IsMove = true;
4243 break;
4244 case Sema::CXXCopyAssignment:
4245 IsAssignment = true;
4246 break;
4247 case Sema::CXXMoveAssignment:
4248 IsAssignment = true;
4249 IsMove = true;
4250 break;
4251 case Sema::CXXDestructor:
4252 break;
4253 case Sema::CXXInvalid:
4254 llvm_unreachable("invalid special member kind");
4255 }
4256
4257 if (MD->getNumParams()) {
4258 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4259 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4260 }
4261 }
4262
4263 bool inUnion() const { return MD->getParent()->isUnion(); }
4264
4265 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004266 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4267 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004268 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004269 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4270 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4271 Quals = 0;
4272 return S.LookupSpecialMember(Class, CSM,
4273 ConstArg || (Quals & Qualifiers::Const),
4274 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004275 MD->getRefQualifier() == RQ_RValue,
4276 TQ & Qualifiers::Const,
4277 TQ & Qualifiers::Volatile);
4278 }
4279
Richard Smith6c4c36c2012-03-30 20:53:28 +00004280 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004281
Richard Smith6c4c36c2012-03-30 20:53:28 +00004282 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004283 bool shouldDeleteForField(FieldDecl *FD);
4284 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004285
Richard Smith517bb842012-07-18 03:51:16 +00004286 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4287 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004288 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4289 Sema::SpecialMemberOverloadResult *SMOR,
4290 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004291
4292 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004293};
4294}
4295
John McCall12d8d802012-04-09 20:53:23 +00004296/// Is the given special member inaccessible when used on the given
4297/// sub-object.
4298bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4299 CXXMethodDecl *target) {
4300 /// If we're operating on a base class, the object type is the
4301 /// type of this special member.
4302 QualType objectTy;
4303 AccessSpecifier access = target->getAccess();;
4304 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4305 objectTy = S.Context.getTypeDeclType(MD->getParent());
4306 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4307
4308 // If we're operating on a field, the object type is the type of the field.
4309 } else {
4310 objectTy = S.Context.getTypeDeclType(target->getParent());
4311 }
4312
4313 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4314}
4315
Richard Smith6c4c36c2012-03-30 20:53:28 +00004316/// Check whether we should delete a special member due to the implicit
4317/// definition containing a call to a special member of a subobject.
4318bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4319 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4320 bool IsDtorCallInCtor) {
4321 CXXMethodDecl *Decl = SMOR->getMethod();
4322 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4323
4324 int DiagKind = -1;
4325
4326 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4327 DiagKind = !Decl ? 0 : 1;
4328 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4329 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004330 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004331 DiagKind = 3;
4332 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4333 !Decl->isTrivial()) {
4334 // A member of a union must have a trivial corresponding special member.
4335 // As a weird special case, a destructor call from a union's constructor
4336 // must be accessible and non-deleted, but need not be trivial. Such a
4337 // destructor is never actually called, but is semantically checked as
4338 // if it were.
4339 DiagKind = 4;
4340 }
4341
4342 if (DiagKind == -1)
4343 return false;
4344
4345 if (Diagnose) {
4346 if (Field) {
4347 S.Diag(Field->getLocation(),
4348 diag::note_deleted_special_member_class_subobject)
4349 << CSM << MD->getParent() << /*IsField*/true
4350 << Field << DiagKind << IsDtorCallInCtor;
4351 } else {
4352 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4353 S.Diag(Base->getLocStart(),
4354 diag::note_deleted_special_member_class_subobject)
4355 << CSM << MD->getParent() << /*IsField*/false
4356 << Base->getType() << DiagKind << IsDtorCallInCtor;
4357 }
4358
4359 if (DiagKind == 1)
4360 S.NoteDeletedFunction(Decl);
4361 // FIXME: Explain inaccessibility if DiagKind == 3.
4362 }
4363
4364 return true;
4365}
4366
Richard Smith9a561d52012-02-26 09:11:52 +00004367/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004368/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004369bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004370 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004371 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004372
4373 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004374 // -- any direct or virtual base class, or non-static data member with no
4375 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004376 // either M has no default constructor or overload resolution as applied
4377 // to M's default constructor results in an ambiguity or in a function
4378 // that is deleted or inaccessible
4379 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4380 // -- a direct or virtual base class B that cannot be copied/moved because
4381 // overload resolution, as applied to B's corresponding special member,
4382 // results in an ambiguity or a function that is deleted or inaccessible
4383 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004384 // C++11 [class.dtor]p5:
4385 // -- any direct or virtual base class [...] has a type with a destructor
4386 // that is deleted or inaccessible
4387 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004388 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004389 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004390 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004391
Richard Smith6c4c36c2012-03-30 20:53:28 +00004392 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4393 // -- any direct or virtual base class or non-static data member has a
4394 // type with a destructor that is deleted or inaccessible
4395 if (IsConstructor) {
4396 Sema::SpecialMemberOverloadResult *SMOR =
4397 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4398 false, false, false, false, false);
4399 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4400 return true;
4401 }
4402
Richard Smith9a561d52012-02-26 09:11:52 +00004403 return false;
4404}
4405
4406/// Check whether we should delete a special member function due to the class
4407/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004408bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004409 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004410 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004411}
4412
4413/// Check whether we should delete a special member function due to the class
4414/// having a particular non-static data member.
4415bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4416 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4417 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4418
4419 if (CSM == Sema::CXXDefaultConstructor) {
4420 // For a default constructor, all references must be initialized in-class
4421 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004422 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4423 if (Diagnose)
4424 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4425 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004426 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004427 }
Richard Smith79363f52012-02-27 06:07:25 +00004428 // C++11 [class.ctor]p5: any non-variant non-static data member of
4429 // const-qualified type (or array thereof) with no
4430 // brace-or-equal-initializer does not have a user-provided default
4431 // constructor.
4432 if (!inUnion() && FieldType.isConstQualified() &&
4433 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004434 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4435 if (Diagnose)
4436 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004437 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004438 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004439 }
4440
4441 if (inUnion() && !FieldType.isConstQualified())
4442 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004443 } else if (CSM == Sema::CXXCopyConstructor) {
4444 // For a copy constructor, data members must not be of rvalue reference
4445 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004446 if (FieldType->isRValueReferenceType()) {
4447 if (Diagnose)
4448 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4449 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004450 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004451 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004452 } else if (IsAssignment) {
4453 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004454 if (FieldType->isReferenceType()) {
4455 if (Diagnose)
4456 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4457 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004458 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004459 }
4460 if (!FieldRecord && FieldType.isConstQualified()) {
4461 // C++11 [class.copy]p23:
4462 // -- a non-static data member of const non-class type (or array thereof)
4463 if (Diagnose)
4464 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004465 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004466 return true;
4467 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004468 }
4469
4470 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004471 // Some additional restrictions exist on the variant members.
4472 if (!inUnion() && FieldRecord->isUnion() &&
4473 FieldRecord->isAnonymousStructOrUnion()) {
4474 bool AllVariantFieldsAreConst = true;
4475
Richard Smithdf8dc862012-03-29 19:00:10 +00004476 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004477 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4478 UE = FieldRecord->field_end();
4479 UI != UE; ++UI) {
4480 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004481
4482 if (!UnionFieldType.isConstQualified())
4483 AllVariantFieldsAreConst = false;
4484
Richard Smith9a561d52012-02-26 09:11:52 +00004485 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4486 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004487 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4488 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004489 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004490 }
4491
4492 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004493 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004494 FieldRecord->field_begin() != FieldRecord->field_end()) {
4495 if (Diagnose)
4496 S.Diag(FieldRecord->getLocation(),
4497 diag::note_deleted_default_ctor_all_const)
4498 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004499 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004500 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004501
Richard Smithdf8dc862012-03-29 19:00:10 +00004502 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004503 // This is technically non-conformant, but sanity demands it.
4504 return false;
4505 }
4506
Richard Smith517bb842012-07-18 03:51:16 +00004507 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4508 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004509 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004510 }
4511
4512 return false;
4513}
4514
4515/// C++11 [class.ctor] p5:
4516/// A defaulted default constructor for a class X is defined as deleted if
4517/// X is a union and all of its variant members are of const-qualified type.
4518bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004519 // This is a silly definition, because it gives an empty union a deleted
4520 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004521 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4522 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4523 if (Diagnose)
4524 S.Diag(MD->getParent()->getLocation(),
4525 diag::note_deleted_default_ctor_all_const)
4526 << MD->getParent() << /*not anonymous union*/0;
4527 return true;
4528 }
4529 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004530}
4531
4532/// Determine whether a defaulted special member function should be defined as
4533/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4534/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004535bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4536 bool Diagnose) {
Sean Hunte16da072011-10-10 06:18:57 +00004537 assert(!MD->isInvalidDecl());
4538 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004539 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004540 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004541 return false;
4542
Richard Smith7d5088a2012-02-18 02:02:13 +00004543 // C++11 [expr.lambda.prim]p19:
4544 // The closure type associated with a lambda-expression has a
4545 // deleted (8.4.3) default constructor and a deleted copy
4546 // assignment operator.
4547 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004548 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4549 if (Diagnose)
4550 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004551 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004552 }
4553
Richard Smith5bdaac52012-04-02 20:59:25 +00004554 // For an anonymous struct or union, the copy and assignment special members
4555 // will never be used, so skip the check. For an anonymous union declared at
4556 // namespace scope, the constructor and destructor are used.
4557 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4558 RD->isAnonymousStructOrUnion())
4559 return false;
4560
Richard Smith6c4c36c2012-03-30 20:53:28 +00004561 // C++11 [class.copy]p7, p18:
4562 // If the class definition declares a move constructor or move assignment
4563 // operator, an implicitly declared copy constructor or copy assignment
4564 // operator is defined as deleted.
4565 if (MD->isImplicit() &&
4566 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4567 CXXMethodDecl *UserDeclaredMove = 0;
4568
4569 // In Microsoft mode, a user-declared move only causes the deletion of the
4570 // corresponding copy operation, not both copy operations.
4571 if (RD->hasUserDeclaredMoveConstructor() &&
4572 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4573 if (!Diagnose) return true;
4574 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004575 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004576 } else if (RD->hasUserDeclaredMoveAssignment() &&
4577 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4578 if (!Diagnose) return true;
4579 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004580 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004581 }
4582
4583 if (UserDeclaredMove) {
4584 Diag(UserDeclaredMove->getLocation(),
4585 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004586 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004587 << UserDeclaredMove->isMoveAssignmentOperator();
4588 return true;
4589 }
4590 }
Sean Hunte16da072011-10-10 06:18:57 +00004591
Richard Smith5bdaac52012-04-02 20:59:25 +00004592 // Do access control from the special member function
4593 ContextRAII MethodContext(*this, MD);
4594
Richard Smith9a561d52012-02-26 09:11:52 +00004595 // C++11 [class.dtor]p5:
4596 // -- for a virtual destructor, lookup of the non-array deallocation function
4597 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004598 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004599 FunctionDecl *OperatorDelete = 0;
4600 DeclarationName Name =
4601 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4602 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004603 OperatorDelete, false)) {
4604 if (Diagnose)
4605 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004606 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004607 }
Richard Smith9a561d52012-02-26 09:11:52 +00004608 }
4609
Richard Smith6c4c36c2012-03-30 20:53:28 +00004610 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004611
Sean Huntcdee3fe2011-05-11 22:34:38 +00004612 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004613 BE = RD->bases_end(); BI != BE; ++BI)
4614 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004615 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004616 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004617
4618 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004619 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004620 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004621 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004622
4623 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004624 FE = RD->field_end(); FI != FE; ++FI)
4625 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004626 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004627 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004628
Richard Smith7d5088a2012-02-18 02:02:13 +00004629 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004630 return true;
4631
4632 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004633}
4634
4635/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004636namespace {
4637 struct FindHiddenVirtualMethodData {
4638 Sema *S;
4639 CXXMethodDecl *Method;
4640 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004641 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004642 };
4643}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004644
4645/// \brief Member lookup function that determines whether a given C++
4646/// method overloads virtual methods in a base class without overriding any,
4647/// to be used with CXXRecordDecl::lookupInBases().
4648static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4649 CXXBasePath &Path,
4650 void *UserData) {
4651 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4652
4653 FindHiddenVirtualMethodData &Data
4654 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4655
4656 DeclarationName Name = Data.Method->getDeclName();
4657 assert(Name.getNameKind() == DeclarationName::Identifier);
4658
4659 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004660 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004661 for (Path.Decls = BaseRecord->lookup(Name);
4662 Path.Decls.first != Path.Decls.second;
4663 ++Path.Decls.first) {
4664 NamedDecl *D = *Path.Decls.first;
4665 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004666 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004667 foundSameNameMethod = true;
4668 // Interested only in hidden virtual methods.
4669 if (!MD->isVirtual())
4670 continue;
4671 // If the method we are checking overrides a method from its base
4672 // don't warn about the other overloaded methods.
4673 if (!Data.S->IsOverload(Data.Method, MD, false))
4674 return true;
4675 // Collect the overload only if its hidden.
4676 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4677 overloadedMethods.push_back(MD);
4678 }
4679 }
4680
4681 if (foundSameNameMethod)
4682 Data.OverloadedMethods.append(overloadedMethods.begin(),
4683 overloadedMethods.end());
4684 return foundSameNameMethod;
4685}
4686
4687/// \brief See if a method overloads virtual methods in a base class without
4688/// overriding any.
4689void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4690 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004691 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004692 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004693 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004694 return;
4695
4696 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4697 /*bool RecordPaths=*/false,
4698 /*bool DetectVirtual=*/false);
4699 FindHiddenVirtualMethodData Data;
4700 Data.Method = MD;
4701 Data.S = this;
4702
4703 // Keep the base methods that were overriden or introduced in the subclass
4704 // by 'using' in a set. A base method not in this set is hidden.
4705 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4706 res.first != res.second; ++res.first) {
4707 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4708 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4709 E = MD->end_overridden_methods();
4710 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004711 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004712 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4713 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004714 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004715 }
4716
4717 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4718 !Data.OverloadedMethods.empty()) {
4719 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4720 << MD << (Data.OverloadedMethods.size() > 1);
4721
4722 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4723 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4724 Diag(overloadedMD->getLocation(),
4725 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4726 }
4727 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004728}
4729
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004730void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004731 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004732 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004733 SourceLocation RBrac,
4734 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004735 if (!TagDecl)
4736 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004737
Douglas Gregor42af25f2009-05-11 19:58:34 +00004738 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004739
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004740 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4741 if (l->getKind() != AttributeList::AT_Visibility)
4742 continue;
4743 l->setInvalid();
4744 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4745 l->getName();
4746 }
4747
David Blaikie77b6de02011-09-22 02:58:26 +00004748 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004749 // strict aliasing violation!
4750 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004751 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004752
Douglas Gregor23c94db2010-07-02 17:43:08 +00004753 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004754 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004755}
4756
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004757/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4758/// special functions, such as the default constructor, copy
4759/// constructor, or destructor, to the given C++ class (C++
4760/// [special]p1). This routine can only be executed just before the
4761/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004762void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004763 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004764 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004765
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004766 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004767 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004768
David Blaikie4e4d0842012-03-11 07:00:24 +00004769 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004770 ++ASTContext::NumImplicitMoveConstructors;
4771
Douglas Gregora376d102010-07-02 21:50:04 +00004772 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4773 ++ASTContext::NumImplicitCopyAssignmentOperators;
4774
4775 // If we have a dynamic class, then the copy assignment operator may be
4776 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4777 // it shows up in the right place in the vtable and that we diagnose
4778 // problems with the implicit exception specification.
4779 if (ClassDecl->isDynamicClass())
4780 DeclareImplicitCopyAssignment(ClassDecl);
4781 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004782
Richard Smith1c931be2012-04-02 18:40:40 +00004783 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004784 ++ASTContext::NumImplicitMoveAssignmentOperators;
4785
4786 // Likewise for the move assignment operator.
4787 if (ClassDecl->isDynamicClass())
4788 DeclareImplicitMoveAssignment(ClassDecl);
4789 }
4790
Douglas Gregor4923aa22010-07-02 20:37:36 +00004791 if (!ClassDecl->hasUserDeclaredDestructor()) {
4792 ++ASTContext::NumImplicitDestructors;
4793
4794 // If we have a dynamic class, then the destructor may be virtual, so we
4795 // have to declare the destructor immediately. This ensures that, e.g., it
4796 // shows up in the right place in the vtable and that we diagnose problems
4797 // with the implicit exception specification.
4798 if (ClassDecl->isDynamicClass())
4799 DeclareImplicitDestructor(ClassDecl);
4800 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004801}
4802
Francois Pichet8387e2a2011-04-22 22:18:13 +00004803void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4804 if (!D)
4805 return;
4806
4807 int NumParamList = D->getNumTemplateParameterLists();
4808 for (int i = 0; i < NumParamList; i++) {
4809 TemplateParameterList* Params = D->getTemplateParameterList(i);
4810 for (TemplateParameterList::iterator Param = Params->begin(),
4811 ParamEnd = Params->end();
4812 Param != ParamEnd; ++Param) {
4813 NamedDecl *Named = cast<NamedDecl>(*Param);
4814 if (Named->getDeclName()) {
4815 S->AddDecl(Named);
4816 IdResolver.AddDecl(Named);
4817 }
4818 }
4819 }
4820}
4821
John McCalld226f652010-08-21 09:40:31 +00004822void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004823 if (!D)
4824 return;
4825
4826 TemplateParameterList *Params = 0;
4827 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4828 Params = Template->getTemplateParameters();
4829 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4830 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4831 Params = PartialSpec->getTemplateParameters();
4832 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004833 return;
4834
Douglas Gregor6569d682009-05-27 23:11:45 +00004835 for (TemplateParameterList::iterator Param = Params->begin(),
4836 ParamEnd = Params->end();
4837 Param != ParamEnd; ++Param) {
4838 NamedDecl *Named = cast<NamedDecl>(*Param);
4839 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004840 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004841 IdResolver.AddDecl(Named);
4842 }
4843 }
4844}
4845
John McCalld226f652010-08-21 09:40:31 +00004846void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004847 if (!RecordD) return;
4848 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004849 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004850 PushDeclContext(S, Record);
4851}
4852
John McCalld226f652010-08-21 09:40:31 +00004853void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004854 if (!RecordD) return;
4855 PopDeclContext();
4856}
4857
Douglas Gregor72b505b2008-12-16 21:30:33 +00004858/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4859/// parsing a top-level (non-nested) C++ class, and we are now
4860/// parsing those parts of the given Method declaration that could
4861/// not be parsed earlier (C++ [class.mem]p2), such as default
4862/// arguments. This action should enter the scope of the given
4863/// Method declaration as if we had just parsed the qualified method
4864/// name. However, it should not bring the parameters into scope;
4865/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004866void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004867}
4868
4869/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4870/// C++ method declaration. We're (re-)introducing the given
4871/// function parameter into scope for use in parsing later parts of
4872/// the method declaration. For example, we could see an
4873/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004874void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004875 if (!ParamD)
4876 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004877
John McCalld226f652010-08-21 09:40:31 +00004878 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004879
4880 // If this parameter has an unparsed default argument, clear it out
4881 // to make way for the parsed default argument.
4882 if (Param->hasUnparsedDefaultArg())
4883 Param->setDefaultArg(0);
4884
John McCalld226f652010-08-21 09:40:31 +00004885 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004886 if (Param->getDeclName())
4887 IdResolver.AddDecl(Param);
4888}
4889
4890/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4891/// processing the delayed method declaration for Method. The method
4892/// declaration is now considered finished. There may be a separate
4893/// ActOnStartOfFunctionDef action later (not necessarily
4894/// immediately!) for this method, if it was also defined inside the
4895/// class body.
John McCalld226f652010-08-21 09:40:31 +00004896void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004897 if (!MethodD)
4898 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004899
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004900 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004901
John McCalld226f652010-08-21 09:40:31 +00004902 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004903
4904 // Now that we have our default arguments, check the constructor
4905 // again. It could produce additional diagnostics or affect whether
4906 // the class has implicitly-declared destructors, among other
4907 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004908 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4909 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004910
4911 // Check the default arguments, which we may have added.
4912 if (!Method->isInvalidDecl())
4913 CheckCXXDefaultArguments(Method);
4914}
4915
Douglas Gregor42a552f2008-11-05 20:51:48 +00004916/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004917/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004918/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004919/// emit diagnostics and set the invalid bit to true. In any case, the type
4920/// will be updated to reflect a well-formed type for the constructor and
4921/// returned.
4922QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004923 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004924 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004925
4926 // C++ [class.ctor]p3:
4927 // A constructor shall not be virtual (10.3) or static (9.4). A
4928 // constructor can be invoked for a const, volatile or const
4929 // volatile object. A constructor shall not be declared const,
4930 // volatile, or const volatile (9.3.2).
4931 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004932 if (!D.isInvalidType())
4933 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4934 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4935 << SourceRange(D.getIdentifierLoc());
4936 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004937 }
John McCalld931b082010-08-26 03:08:43 +00004938 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004939 if (!D.isInvalidType())
4940 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4941 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4942 << SourceRange(D.getIdentifierLoc());
4943 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004944 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004945 }
Mike Stump1eb44332009-09-09 15:08:12 +00004946
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004947 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004948 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004949 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004950 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4951 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004952 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004953 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4954 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004955 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004956 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4957 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004958 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004959 }
Mike Stump1eb44332009-09-09 15:08:12 +00004960
Douglas Gregorc938c162011-01-26 05:01:58 +00004961 // C++0x [class.ctor]p4:
4962 // A constructor shall not be declared with a ref-qualifier.
4963 if (FTI.hasRefQualifier()) {
4964 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4965 << FTI.RefQualifierIsLValueRef
4966 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4967 D.setInvalidType();
4968 }
4969
Douglas Gregor42a552f2008-11-05 20:51:48 +00004970 // Rebuild the function type "R" without any type qualifiers (in
4971 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004972 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004973 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004974 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4975 return R;
4976
4977 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4978 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004979 EPI.RefQualifier = RQ_None;
4980
Chris Lattner65401802009-04-25 08:28:21 +00004981 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00004982 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00004983}
4984
Douglas Gregor72b505b2008-12-16 21:30:33 +00004985/// CheckConstructor - Checks a fully-formed constructor for
4986/// well-formedness, issuing any diagnostics required. Returns true if
4987/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00004988void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00004989 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00004990 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
4991 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00004992 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00004993
4994 // C++ [class.copy]p3:
4995 // A declaration of a constructor for a class X is ill-formed if
4996 // its first parameter is of type (optionally cv-qualified) X and
4997 // either there are no other parameters or else all other
4998 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00004999 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005000 ((Constructor->getNumParams() == 1) ||
5001 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005002 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5003 Constructor->getTemplateSpecializationKind()
5004 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005005 QualType ParamType = Constructor->getParamDecl(0)->getType();
5006 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5007 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005008 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005009 const char *ConstRef
5010 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5011 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005012 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005013 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005014
5015 // FIXME: Rather that making the constructor invalid, we should endeavor
5016 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005017 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005018 }
5019 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005020}
5021
John McCall15442822010-08-04 01:04:25 +00005022/// CheckDestructor - Checks a fully-formed destructor definition for
5023/// well-formedness, issuing any diagnostics required. Returns true
5024/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005025bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005026 CXXRecordDecl *RD = Destructor->getParent();
5027
5028 if (Destructor->isVirtual()) {
5029 SourceLocation Loc;
5030
5031 if (!Destructor->isImplicit())
5032 Loc = Destructor->getLocation();
5033 else
5034 Loc = RD->getLocation();
5035
5036 // If we have a virtual destructor, look up the deallocation function
5037 FunctionDecl *OperatorDelete = 0;
5038 DeclarationName Name =
5039 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005040 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005041 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005042
Eli Friedman5f2987c2012-02-02 03:46:19 +00005043 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005044
5045 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005046 }
Anders Carlsson37909802009-11-30 21:24:50 +00005047
5048 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005049}
5050
Mike Stump1eb44332009-09-09 15:08:12 +00005051static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005052FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5053 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5054 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005055 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005056}
5057
Douglas Gregor42a552f2008-11-05 20:51:48 +00005058/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5059/// the well-formednes of the destructor declarator @p D with type @p
5060/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005061/// emit diagnostics and set the declarator to invalid. Even if this happens,
5062/// will be updated to reflect a well-formed type for the destructor and
5063/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005064QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005065 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005066 // C++ [class.dtor]p1:
5067 // [...] A typedef-name that names a class is a class-name
5068 // (7.1.3); however, a typedef-name that names a class shall not
5069 // be used as the identifier in the declarator for a destructor
5070 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005071 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005072 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005073 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005074 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005075 else if (const TemplateSpecializationType *TST =
5076 DeclaratorType->getAs<TemplateSpecializationType>())
5077 if (TST->isTypeAlias())
5078 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5079 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005080
5081 // C++ [class.dtor]p2:
5082 // A destructor is used to destroy objects of its class type. A
5083 // destructor takes no parameters, and no return type can be
5084 // specified for it (not even void). The address of a destructor
5085 // shall not be taken. A destructor shall not be static. A
5086 // destructor can be invoked for a const, volatile or const
5087 // volatile object. A destructor shall not be declared const,
5088 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005089 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005090 if (!D.isInvalidType())
5091 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5092 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005093 << SourceRange(D.getIdentifierLoc())
5094 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5095
John McCalld931b082010-08-26 03:08:43 +00005096 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005097 }
Chris Lattner65401802009-04-25 08:28:21 +00005098 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005099 // Destructors don't have return types, but the parser will
5100 // happily parse something like:
5101 //
5102 // class X {
5103 // float ~X();
5104 // };
5105 //
5106 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005107 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5108 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5109 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005110 }
Mike Stump1eb44332009-09-09 15:08:12 +00005111
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005112 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005113 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005114 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005115 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5116 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005117 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005118 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5119 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005120 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005121 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5122 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005123 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005124 }
5125
Douglas Gregorc938c162011-01-26 05:01:58 +00005126 // C++0x [class.dtor]p2:
5127 // A destructor shall not be declared with a ref-qualifier.
5128 if (FTI.hasRefQualifier()) {
5129 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5130 << FTI.RefQualifierIsLValueRef
5131 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5132 D.setInvalidType();
5133 }
5134
Douglas Gregor42a552f2008-11-05 20:51:48 +00005135 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005136 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005137 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5138
5139 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005140 FTI.freeArgs();
5141 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005142 }
5143
Mike Stump1eb44332009-09-09 15:08:12 +00005144 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005145 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005146 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005147 D.setInvalidType();
5148 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005149
5150 // Rebuild the function type "R" without any type qualifiers or
5151 // parameters (in case any of the errors above fired) and with
5152 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005153 // types.
John McCalle23cf432010-12-14 08:05:40 +00005154 if (!D.isInvalidType())
5155 return R;
5156
Douglas Gregord92ec472010-07-01 05:10:53 +00005157 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005158 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5159 EPI.Variadic = false;
5160 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005161 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005162 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005163}
5164
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005165/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5166/// well-formednes of the conversion function declarator @p D with
5167/// type @p R. If there are any errors in the declarator, this routine
5168/// will emit diagnostics and return true. Otherwise, it will return
5169/// false. Either way, the type @p R will be updated to reflect a
5170/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005171void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005172 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005173 // C++ [class.conv.fct]p1:
5174 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005175 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005176 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005177 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005178 if (!D.isInvalidType())
5179 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5180 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5181 << SourceRange(D.getIdentifierLoc());
5182 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005183 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005184 }
John McCalla3f81372010-04-13 00:04:31 +00005185
5186 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5187
Chris Lattner6e475012009-04-25 08:35:12 +00005188 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005189 // Conversion functions don't have return types, but the parser will
5190 // happily parse something like:
5191 //
5192 // class X {
5193 // float operator bool();
5194 // };
5195 //
5196 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005197 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5198 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5199 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005200 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005201 }
5202
John McCalla3f81372010-04-13 00:04:31 +00005203 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5204
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005205 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005206 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005207 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5208
5209 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005210 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005211 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005212 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005213 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005214 D.setInvalidType();
5215 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005216
John McCalla3f81372010-04-13 00:04:31 +00005217 // Diagnose "&operator bool()" and other such nonsense. This
5218 // is actually a gcc extension which we don't support.
5219 if (Proto->getResultType() != ConvType) {
5220 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5221 << Proto->getResultType();
5222 D.setInvalidType();
5223 ConvType = Proto->getResultType();
5224 }
5225
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005226 // C++ [class.conv.fct]p4:
5227 // The conversion-type-id shall not represent a function type nor
5228 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005229 if (ConvType->isArrayType()) {
5230 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5231 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005232 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005233 } else if (ConvType->isFunctionType()) {
5234 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5235 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005236 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005237 }
5238
5239 // Rebuild the function type "R" without any parameters (in case any
5240 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005241 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005242 if (D.isInvalidType())
5243 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005244
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005245 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005246 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005247 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005248 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005249 diag::warn_cxx98_compat_explicit_conversion_functions :
5250 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005251 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005252}
5253
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005254/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5255/// the declaration of the given C++ conversion function. This routine
5256/// is responsible for recording the conversion function in the C++
5257/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005258Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005259 assert(Conversion && "Expected to receive a conversion function declaration");
5260
Douglas Gregor9d350972008-12-12 08:25:50 +00005261 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005262
5263 // Make sure we aren't redeclaring the conversion function.
5264 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005265
5266 // C++ [class.conv.fct]p1:
5267 // [...] A conversion function is never used to convert a
5268 // (possibly cv-qualified) object to the (possibly cv-qualified)
5269 // same object type (or a reference to it), to a (possibly
5270 // cv-qualified) base class of that type (or a reference to it),
5271 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005272 // FIXME: Suppress this warning if the conversion function ends up being a
5273 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005274 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005275 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005276 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005277 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005278 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5279 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005280 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005281 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005282 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5283 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005284 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005285 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005286 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005287 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005288 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005289 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005290 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005291 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005292 }
5293
Douglas Gregore80622f2010-09-29 04:25:11 +00005294 if (FunctionTemplateDecl *ConversionTemplate
5295 = Conversion->getDescribedFunctionTemplate())
5296 return ConversionTemplate;
5297
John McCalld226f652010-08-21 09:40:31 +00005298 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005299}
5300
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005301//===----------------------------------------------------------------------===//
5302// Namespace Handling
5303//===----------------------------------------------------------------------===//
5304
John McCallea318642010-08-26 09:15:37 +00005305
5306
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005307/// ActOnStartNamespaceDef - This is called at the start of a namespace
5308/// definition.
John McCalld226f652010-08-21 09:40:31 +00005309Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005310 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005311 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005312 SourceLocation IdentLoc,
5313 IdentifierInfo *II,
5314 SourceLocation LBrace,
5315 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005316 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5317 // For anonymous namespace, take the location of the left brace.
5318 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005319 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005320 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005321 bool IsStd = false;
5322 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005323 Scope *DeclRegionScope = NamespcScope->getParent();
5324
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005325 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005326 if (II) {
5327 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005328 // The identifier in an original-namespace-definition shall not
5329 // have been previously defined in the declarative region in
5330 // which the original-namespace-definition appears. The
5331 // identifier in an original-namespace-definition is the name of
5332 // the namespace. Subsequently in that declarative region, it is
5333 // treated as an original-namespace-name.
5334 //
5335 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005336 // look through using directives, just look for any ordinary names.
5337
5338 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005339 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5340 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005341 NamedDecl *PrevDecl = 0;
5342 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005343 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005344 R.first != R.second; ++R.first) {
5345 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5346 PrevDecl = *R.first;
5347 break;
5348 }
5349 }
5350
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005351 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5352
5353 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005354 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005355 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005356 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005357 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005358 // The user probably just forgot the 'inline', so suggest that it
5359 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005360 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005361 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5362 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005363 Diag(Loc, diag::err_inline_namespace_mismatch)
5364 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005365 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005366 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5367
5368 IsInline = PrevNS->isInline();
5369 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005370 } else if (PrevDecl) {
5371 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005372 Diag(Loc, diag::err_redefinition_different_kind)
5373 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005374 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005375 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005376 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005377 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005378 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005379 // This is the first "real" definition of the namespace "std", so update
5380 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005381 PrevNS = getStdNamespace();
5382 IsStd = true;
5383 AddToKnown = !IsInline;
5384 } else {
5385 // We've seen this namespace for the first time.
5386 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005387 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005388 } else {
John McCall9aeed322009-10-01 00:25:31 +00005389 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005390
5391 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005392 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005393 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005394 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005395 } else {
5396 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005397 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005398 }
5399
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005400 if (PrevNS && IsInline != PrevNS->isInline()) {
5401 // inline-ness must match
5402 Diag(Loc, diag::err_inline_namespace_mismatch)
5403 << IsInline;
5404 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005405
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005406 // Recover by ignoring the new namespace's inline status.
5407 IsInline = PrevNS->isInline();
5408 }
5409 }
5410
5411 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5412 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005413 if (IsInvalid)
5414 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005415
5416 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005417
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005418 // FIXME: Should we be merging attributes?
5419 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005420 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005421
5422 if (IsStd)
5423 StdNamespace = Namespc;
5424 if (AddToKnown)
5425 KnownNamespaces[Namespc] = false;
5426
5427 if (II) {
5428 PushOnScopeChains(Namespc, DeclRegionScope);
5429 } else {
5430 // Link the anonymous namespace into its parent.
5431 DeclContext *Parent = CurContext->getRedeclContext();
5432 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5433 TU->setAnonymousNamespace(Namespc);
5434 } else {
5435 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005436 }
John McCall9aeed322009-10-01 00:25:31 +00005437
Douglas Gregora4181472010-03-24 00:46:35 +00005438 CurContext->addDecl(Namespc);
5439
John McCall9aeed322009-10-01 00:25:31 +00005440 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5441 // behaves as if it were replaced by
5442 // namespace unique { /* empty body */ }
5443 // using namespace unique;
5444 // namespace unique { namespace-body }
5445 // where all occurrences of 'unique' in a translation unit are
5446 // replaced by the same identifier and this identifier differs
5447 // from all other identifiers in the entire program.
5448
5449 // We just create the namespace with an empty name and then add an
5450 // implicit using declaration, just like the standard suggests.
5451 //
5452 // CodeGen enforces the "universally unique" aspect by giving all
5453 // declarations semantically contained within an anonymous
5454 // namespace internal linkage.
5455
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005456 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005457 UsingDirectiveDecl* UD
5458 = UsingDirectiveDecl::Create(Context, CurContext,
5459 /* 'using' */ LBrace,
5460 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005461 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005462 /* identifier */ SourceLocation(),
5463 Namespc,
5464 /* Ancestor */ CurContext);
5465 UD->setImplicit();
5466 CurContext->addDecl(UD);
5467 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005468 }
5469
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005470 ActOnDocumentableDecl(Namespc);
5471
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005472 // Although we could have an invalid decl (i.e. the namespace name is a
5473 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005474 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5475 // for the namespace has the declarations that showed up in that particular
5476 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005477 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005478 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005479}
5480
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005481/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5482/// is a namespace alias, returns the namespace it points to.
5483static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5484 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5485 return AD->getNamespace();
5486 return dyn_cast_or_null<NamespaceDecl>(D);
5487}
5488
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005489/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5490/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005491void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005492 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5493 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005494 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005495 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005496 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005497 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005498}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005499
John McCall384aff82010-08-25 07:42:41 +00005500CXXRecordDecl *Sema::getStdBadAlloc() const {
5501 return cast_or_null<CXXRecordDecl>(
5502 StdBadAlloc.get(Context.getExternalSource()));
5503}
5504
5505NamespaceDecl *Sema::getStdNamespace() const {
5506 return cast_or_null<NamespaceDecl>(
5507 StdNamespace.get(Context.getExternalSource()));
5508}
5509
Douglas Gregor66992202010-06-29 17:53:46 +00005510/// \brief Retrieve the special "std" namespace, which may require us to
5511/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005512NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005513 if (!StdNamespace) {
5514 // The "std" namespace has not yet been defined, so build one implicitly.
5515 StdNamespace = NamespaceDecl::Create(Context,
5516 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005517 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005518 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005519 &PP.getIdentifierTable().get("std"),
5520 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005521 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005522 }
5523
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005524 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005525}
5526
Sebastian Redl395e04d2012-01-17 22:49:33 +00005527bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005528 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005529 "Looking for std::initializer_list outside of C++.");
5530
5531 // We're looking for implicit instantiations of
5532 // template <typename E> class std::initializer_list.
5533
5534 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5535 return false;
5536
Sebastian Redl84760e32012-01-17 22:49:58 +00005537 ClassTemplateDecl *Template = 0;
5538 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005539
Sebastian Redl84760e32012-01-17 22:49:58 +00005540 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005541
Sebastian Redl84760e32012-01-17 22:49:58 +00005542 ClassTemplateSpecializationDecl *Specialization =
5543 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5544 if (!Specialization)
5545 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005546
Sebastian Redl84760e32012-01-17 22:49:58 +00005547 Template = Specialization->getSpecializedTemplate();
5548 Arguments = Specialization->getTemplateArgs().data();
5549 } else if (const TemplateSpecializationType *TST =
5550 Ty->getAs<TemplateSpecializationType>()) {
5551 Template = dyn_cast_or_null<ClassTemplateDecl>(
5552 TST->getTemplateName().getAsTemplateDecl());
5553 Arguments = TST->getArgs();
5554 }
5555 if (!Template)
5556 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005557
5558 if (!StdInitializerList) {
5559 // Haven't recognized std::initializer_list yet, maybe this is it.
5560 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5561 if (TemplateClass->getIdentifier() !=
5562 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005563 !getStdNamespace()->InEnclosingNamespaceSetOf(
5564 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005565 return false;
5566 // This is a template called std::initializer_list, but is it the right
5567 // template?
5568 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005569 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005570 return false;
5571 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5572 return false;
5573
5574 // It's the right template.
5575 StdInitializerList = Template;
5576 }
5577
5578 if (Template != StdInitializerList)
5579 return false;
5580
5581 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005582 if (Element)
5583 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005584 return true;
5585}
5586
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005587static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5588 NamespaceDecl *Std = S.getStdNamespace();
5589 if (!Std) {
5590 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5591 return 0;
5592 }
5593
5594 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5595 Loc, Sema::LookupOrdinaryName);
5596 if (!S.LookupQualifiedName(Result, Std)) {
5597 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5598 return 0;
5599 }
5600 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5601 if (!Template) {
5602 Result.suppressDiagnostics();
5603 // We found something weird. Complain about the first thing we found.
5604 NamedDecl *Found = *Result.begin();
5605 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5606 return 0;
5607 }
5608
5609 // We found some template called std::initializer_list. Now verify that it's
5610 // correct.
5611 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005612 if (Params->getMinRequiredArguments() != 1 ||
5613 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005614 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5615 return 0;
5616 }
5617
5618 return Template;
5619}
5620
5621QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5622 if (!StdInitializerList) {
5623 StdInitializerList = LookupStdInitializerList(*this, Loc);
5624 if (!StdInitializerList)
5625 return QualType();
5626 }
5627
5628 TemplateArgumentListInfo Args(Loc, Loc);
5629 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5630 Context.getTrivialTypeSourceInfo(Element,
5631 Loc)));
5632 return Context.getCanonicalType(
5633 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5634}
5635
Sebastian Redl98d36062012-01-17 22:50:14 +00005636bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5637 // C++ [dcl.init.list]p2:
5638 // A constructor is an initializer-list constructor if its first parameter
5639 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5640 // std::initializer_list<E> for some type E, and either there are no other
5641 // parameters or else all other parameters have default arguments.
5642 if (Ctor->getNumParams() < 1 ||
5643 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5644 return false;
5645
5646 QualType ArgType = Ctor->getParamDecl(0)->getType();
5647 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5648 ArgType = RT->getPointeeType().getUnqualifiedType();
5649
5650 return isStdInitializerList(ArgType, 0);
5651}
5652
Douglas Gregor9172aa62011-03-26 22:25:30 +00005653/// \brief Determine whether a using statement is in a context where it will be
5654/// apply in all contexts.
5655static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5656 switch (CurContext->getDeclKind()) {
5657 case Decl::TranslationUnit:
5658 return true;
5659 case Decl::LinkageSpec:
5660 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5661 default:
5662 return false;
5663 }
5664}
5665
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005666namespace {
5667
5668// Callback to only accept typo corrections that are namespaces.
5669class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5670 public:
5671 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5672 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5673 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5674 }
5675 return false;
5676 }
5677};
5678
5679}
5680
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005681static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5682 CXXScopeSpec &SS,
5683 SourceLocation IdentLoc,
5684 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005685 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005686 R.clear();
5687 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005688 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005689 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005690 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5691 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005692 if (DeclContext *DC = S.computeDeclContext(SS, false))
5693 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5694 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5695 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5696 else
5697 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5698 << Ident << CorrectedQuotedStr
5699 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005700
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005701 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5702 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005703
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005704 R.addDecl(Corrected.getCorrectionDecl());
5705 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005706 }
5707 return false;
5708}
5709
John McCalld226f652010-08-21 09:40:31 +00005710Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005711 SourceLocation UsingLoc,
5712 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005713 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005714 SourceLocation IdentLoc,
5715 IdentifierInfo *NamespcName,
5716 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005717 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5718 assert(NamespcName && "Invalid NamespcName.");
5719 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005720
5721 // This can only happen along a recovery path.
5722 while (S->getFlags() & Scope::TemplateParamScope)
5723 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005724 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005725
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005726 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005727 NestedNameSpecifier *Qualifier = 0;
5728 if (SS.isSet())
5729 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5730
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005731 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005732 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5733 LookupParsedName(R, S, &SS);
5734 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005735 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005736
Douglas Gregor66992202010-06-29 17:53:46 +00005737 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005738 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005739 // Allow "using namespace std;" or "using namespace ::std;" even if
5740 // "std" hasn't been defined yet, for GCC compatibility.
5741 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5742 NamespcName->isStr("std")) {
5743 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005744 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005745 R.resolveKind();
5746 }
5747 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005748 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005749 }
5750
John McCallf36e02d2009-10-09 21:13:30 +00005751 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005752 NamedDecl *Named = R.getFoundDecl();
5753 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5754 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005755 // C++ [namespace.udir]p1:
5756 // A using-directive specifies that the names in the nominated
5757 // namespace can be used in the scope in which the
5758 // using-directive appears after the using-directive. During
5759 // unqualified name lookup (3.4.1), the names appear as if they
5760 // were declared in the nearest enclosing namespace which
5761 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005762 // namespace. [Note: in this context, "contains" means "contains
5763 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005764
5765 // Find enclosing context containing both using-directive and
5766 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005767 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005768 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5769 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5770 CommonAncestor = CommonAncestor->getParent();
5771
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005772 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005773 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005774 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005775
Douglas Gregor9172aa62011-03-26 22:25:30 +00005776 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005777 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005778 Diag(IdentLoc, diag::warn_using_directive_in_header);
5779 }
5780
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005781 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005782 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005783 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005784 }
5785
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005786 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005787 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005788}
5789
5790void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005791 // If the scope has an associated entity and the using directive is at
5792 // namespace or translation unit scope, add the UsingDirectiveDecl into
5793 // its lookup structure so qualified name lookup can find it.
5794 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5795 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005796 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005797 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005798 // Otherwise, it is at block sope. The using-directives will affect lookup
5799 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005800 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005801}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005802
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005803
John McCalld226f652010-08-21 09:40:31 +00005804Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005805 AccessSpecifier AS,
5806 bool HasUsingKeyword,
5807 SourceLocation UsingLoc,
5808 CXXScopeSpec &SS,
5809 UnqualifiedId &Name,
5810 AttributeList *AttrList,
5811 bool IsTypeName,
5812 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005813 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005814
Douglas Gregor12c118a2009-11-04 16:30:06 +00005815 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005816 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005817 case UnqualifiedId::IK_Identifier:
5818 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005819 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005820 case UnqualifiedId::IK_ConversionFunctionId:
5821 break;
5822
5823 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005824 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005825 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005826 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005827 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005828 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5829 // instead once inheriting constructors work.
5830 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005831 diag::err_using_decl_constructor)
5832 << SS.getRange();
5833
David Blaikie4e4d0842012-03-11 07:00:24 +00005834 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005835
John McCalld226f652010-08-21 09:40:31 +00005836 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005837
5838 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005839 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005840 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005841 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005842
5843 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005844 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005845 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005846 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005847 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005848
5849 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5850 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005851 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005852 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005853
John McCall60fa3cf2009-12-11 02:10:03 +00005854 // Warn about using declarations.
5855 // TODO: store that the declaration was written without 'using' and
5856 // talk about access decls instead of using decls in the
5857 // diagnostics.
5858 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005859 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005860
5861 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005862 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005863 }
5864
Douglas Gregor56c04582010-12-16 00:46:58 +00005865 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5866 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5867 return 0;
5868
John McCall9488ea12009-11-17 05:59:44 +00005869 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005870 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005871 /* IsInstantiation */ false,
5872 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005873 if (UD)
5874 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005875
John McCalld226f652010-08-21 09:40:31 +00005876 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005877}
5878
Douglas Gregor09acc982010-07-07 23:08:52 +00005879/// \brief Determine whether a using declaration considers the given
5880/// declarations as "equivalent", e.g., if they are redeclarations of
5881/// the same entity or are both typedefs of the same type.
5882static bool
5883IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5884 bool &SuppressRedeclaration) {
5885 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5886 SuppressRedeclaration = false;
5887 return true;
5888 }
5889
Richard Smith162e1c12011-04-15 14:24:37 +00005890 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5891 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005892 SuppressRedeclaration = true;
5893 return Context.hasSameType(TD1->getUnderlyingType(),
5894 TD2->getUnderlyingType());
5895 }
5896
5897 return false;
5898}
5899
5900
John McCall9f54ad42009-12-10 09:41:52 +00005901/// Determines whether to create a using shadow decl for a particular
5902/// decl, given the set of decls existing prior to this using lookup.
5903bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5904 const LookupResult &Previous) {
5905 // Diagnose finding a decl which is not from a base class of the
5906 // current class. We do this now because there are cases where this
5907 // function will silently decide not to build a shadow decl, which
5908 // will pre-empt further diagnostics.
5909 //
5910 // We don't need to do this in C++0x because we do the check once on
5911 // the qualifier.
5912 //
5913 // FIXME: diagnose the following if we care enough:
5914 // struct A { int foo; };
5915 // struct B : A { using A::foo; };
5916 // template <class T> struct C : A {};
5917 // template <class T> struct D : C<T> { using B::foo; } // <---
5918 // This is invalid (during instantiation) in C++03 because B::foo
5919 // resolves to the using decl in B, which is not a base class of D<T>.
5920 // We can't diagnose it immediately because C<T> is an unknown
5921 // specialization. The UsingShadowDecl in D<T> then points directly
5922 // to A::foo, which will look well-formed when we instantiate.
5923 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005924 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005925 DeclContext *OrigDC = Orig->getDeclContext();
5926
5927 // Handle enums and anonymous structs.
5928 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5929 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5930 while (OrigRec->isAnonymousStructOrUnion())
5931 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5932
5933 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5934 if (OrigDC == CurContext) {
5935 Diag(Using->getLocation(),
5936 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005937 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005938 Diag(Orig->getLocation(), diag::note_using_decl_target);
5939 return true;
5940 }
5941
Douglas Gregordc355712011-02-25 00:36:19 +00005942 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005943 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005944 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005945 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005946 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005947 Diag(Orig->getLocation(), diag::note_using_decl_target);
5948 return true;
5949 }
5950 }
5951
5952 if (Previous.empty()) return false;
5953
5954 NamedDecl *Target = Orig;
5955 if (isa<UsingShadowDecl>(Target))
5956 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5957
John McCalld7533ec2009-12-11 02:33:26 +00005958 // If the target happens to be one of the previous declarations, we
5959 // don't have a conflict.
5960 //
5961 // FIXME: but we might be increasing its access, in which case we
5962 // should redeclare it.
5963 NamedDecl *NonTag = 0, *Tag = 0;
5964 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5965 I != E; ++I) {
5966 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005967 bool Result;
5968 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5969 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005970
5971 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5972 }
5973
John McCall9f54ad42009-12-10 09:41:52 +00005974 if (Target->isFunctionOrFunctionTemplate()) {
5975 FunctionDecl *FD;
5976 if (isa<FunctionTemplateDecl>(Target))
5977 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5978 else
5979 FD = cast<FunctionDecl>(Target);
5980
5981 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00005982 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00005983 case Ovl_Overload:
5984 return false;
5985
5986 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00005987 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00005988 break;
5989
5990 // We found a decl with the exact signature.
5991 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00005992 // If we're in a record, we want to hide the target, so we
5993 // return true (without a diagnostic) to tell the caller not to
5994 // build a shadow decl.
5995 if (CurContext->isRecord())
5996 return true;
5997
5998 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00005999 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006000 break;
6001 }
6002
6003 Diag(Target->getLocation(), diag::note_using_decl_target);
6004 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6005 return true;
6006 }
6007
6008 // Target is not a function.
6009
John McCall9f54ad42009-12-10 09:41:52 +00006010 if (isa<TagDecl>(Target)) {
6011 // No conflict between a tag and a non-tag.
6012 if (!Tag) return false;
6013
John McCall41ce66f2009-12-10 19:51:03 +00006014 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006015 Diag(Target->getLocation(), diag::note_using_decl_target);
6016 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6017 return true;
6018 }
6019
6020 // No conflict between a tag and a non-tag.
6021 if (!NonTag) return false;
6022
John McCall41ce66f2009-12-10 19:51:03 +00006023 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006024 Diag(Target->getLocation(), diag::note_using_decl_target);
6025 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6026 return true;
6027}
6028
John McCall9488ea12009-11-17 05:59:44 +00006029/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006030UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006031 UsingDecl *UD,
6032 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006033
6034 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006035 NamedDecl *Target = Orig;
6036 if (isa<UsingShadowDecl>(Target)) {
6037 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6038 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006039 }
6040
6041 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006042 = UsingShadowDecl::Create(Context, CurContext,
6043 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006044 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006045
6046 Shadow->setAccess(UD->getAccess());
6047 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6048 Shadow->setInvalidDecl();
6049
John McCall9488ea12009-11-17 05:59:44 +00006050 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006051 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006052 else
John McCall604e7f12009-12-08 07:46:18 +00006053 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006054
John McCall604e7f12009-12-08 07:46:18 +00006055
John McCall9f54ad42009-12-10 09:41:52 +00006056 return Shadow;
6057}
John McCall604e7f12009-12-08 07:46:18 +00006058
John McCall9f54ad42009-12-10 09:41:52 +00006059/// Hides a using shadow declaration. This is required by the current
6060/// using-decl implementation when a resolvable using declaration in a
6061/// class is followed by a declaration which would hide or override
6062/// one or more of the using decl's targets; for example:
6063///
6064/// struct Base { void foo(int); };
6065/// struct Derived : Base {
6066/// using Base::foo;
6067/// void foo(int);
6068/// };
6069///
6070/// The governing language is C++03 [namespace.udecl]p12:
6071///
6072/// When a using-declaration brings names from a base class into a
6073/// derived class scope, member functions in the derived class
6074/// override and/or hide member functions with the same name and
6075/// parameter types in a base class (rather than conflicting).
6076///
6077/// There are two ways to implement this:
6078/// (1) optimistically create shadow decls when they're not hidden
6079/// by existing declarations, or
6080/// (2) don't create any shadow decls (or at least don't make them
6081/// visible) until we've fully parsed/instantiated the class.
6082/// The problem with (1) is that we might have to retroactively remove
6083/// a shadow decl, which requires several O(n) operations because the
6084/// decl structures are (very reasonably) not designed for removal.
6085/// (2) avoids this but is very fiddly and phase-dependent.
6086void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006087 if (Shadow->getDeclName().getNameKind() ==
6088 DeclarationName::CXXConversionFunctionName)
6089 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6090
John McCall9f54ad42009-12-10 09:41:52 +00006091 // Remove it from the DeclContext...
6092 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006093
John McCall9f54ad42009-12-10 09:41:52 +00006094 // ...and the scope, if applicable...
6095 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006096 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006097 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006098 }
6099
John McCall9f54ad42009-12-10 09:41:52 +00006100 // ...and the using decl.
6101 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6102
6103 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006104 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006105}
6106
John McCall7ba107a2009-11-18 02:36:19 +00006107/// Builds a using declaration.
6108///
6109/// \param IsInstantiation - Whether this call arises from an
6110/// instantiation of an unresolved using declaration. We treat
6111/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006112NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6113 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006114 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006115 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006116 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006117 bool IsInstantiation,
6118 bool IsTypeName,
6119 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006120 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006121 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006122 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006123
Anders Carlsson550b14b2009-08-28 05:49:21 +00006124 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006125
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006126 if (SS.isEmpty()) {
6127 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006128 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006129 }
Mike Stump1eb44332009-09-09 15:08:12 +00006130
John McCall9f54ad42009-12-10 09:41:52 +00006131 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006132 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006133 ForRedeclaration);
6134 Previous.setHideTags(false);
6135 if (S) {
6136 LookupName(Previous, S);
6137
6138 // It is really dumb that we have to do this.
6139 LookupResult::Filter F = Previous.makeFilter();
6140 while (F.hasNext()) {
6141 NamedDecl *D = F.next();
6142 if (!isDeclInScope(D, CurContext, S))
6143 F.erase();
6144 }
6145 F.done();
6146 } else {
6147 assert(IsInstantiation && "no scope in non-instantiation");
6148 assert(CurContext->isRecord() && "scope not record in instantiation");
6149 LookupQualifiedName(Previous, CurContext);
6150 }
6151
John McCall9f54ad42009-12-10 09:41:52 +00006152 // Check for invalid redeclarations.
6153 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6154 return 0;
6155
6156 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006157 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6158 return 0;
6159
John McCallaf8e6ed2009-11-12 03:15:40 +00006160 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006161 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006162 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006163 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006164 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006165 // FIXME: not all declaration name kinds are legal here
6166 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6167 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006168 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006169 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006170 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006171 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6172 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006173 }
John McCalled976492009-12-04 22:46:56 +00006174 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006175 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6176 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006177 }
John McCalled976492009-12-04 22:46:56 +00006178 D->setAccess(AS);
6179 CurContext->addDecl(D);
6180
6181 if (!LookupContext) return D;
6182 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006183
John McCall77bb1aa2010-05-01 00:40:08 +00006184 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006185 UD->setInvalidDecl();
6186 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006187 }
6188
Richard Smithc5a89a12012-04-02 01:30:27 +00006189 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006190 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006191 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006192 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006193 return UD;
6194 }
6195
6196 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006197
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006198 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006199
John McCall604e7f12009-12-08 07:46:18 +00006200 // Unlike most lookups, we don't always want to hide tag
6201 // declarations: tag names are visible through the using declaration
6202 // even if hidden by ordinary names, *except* in a dependent context
6203 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006204 if (!IsInstantiation)
6205 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006206
John McCallb9abd8722012-04-07 03:04:20 +00006207 // For the purposes of this lookup, we have a base object type
6208 // equal to that of the current context.
6209 if (CurContext->isRecord()) {
6210 R.setBaseObjectType(
6211 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6212 }
6213
John McCalla24dc2e2009-11-17 02:14:36 +00006214 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006215
John McCallf36e02d2009-10-09 21:13:30 +00006216 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006217 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006218 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006219 UD->setInvalidDecl();
6220 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006221 }
6222
John McCalled976492009-12-04 22:46:56 +00006223 if (R.isAmbiguous()) {
6224 UD->setInvalidDecl();
6225 return UD;
6226 }
Mike Stump1eb44332009-09-09 15:08:12 +00006227
John McCall7ba107a2009-11-18 02:36:19 +00006228 if (IsTypeName) {
6229 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006230 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006231 Diag(IdentLoc, diag::err_using_typename_non_type);
6232 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6233 Diag((*I)->getUnderlyingDecl()->getLocation(),
6234 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006235 UD->setInvalidDecl();
6236 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006237 }
6238 } else {
6239 // If we asked for a non-typename and we got a type, error out,
6240 // but only if this is an instantiation of an unresolved using
6241 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006242 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006243 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6244 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006245 UD->setInvalidDecl();
6246 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006247 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006248 }
6249
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006250 // C++0x N2914 [namespace.udecl]p6:
6251 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006252 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006253 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6254 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006255 UD->setInvalidDecl();
6256 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006257 }
Mike Stump1eb44332009-09-09 15:08:12 +00006258
John McCall9f54ad42009-12-10 09:41:52 +00006259 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6260 if (!CheckUsingShadowDecl(UD, *I, Previous))
6261 BuildUsingShadowDecl(S, UD, *I);
6262 }
John McCall9488ea12009-11-17 05:59:44 +00006263
6264 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006265}
6266
Sebastian Redlf677ea32011-02-05 19:23:19 +00006267/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006268bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6269 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006270
Douglas Gregordc355712011-02-25 00:36:19 +00006271 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006272 assert(SourceType &&
6273 "Using decl naming constructor doesn't have type in scope spec.");
6274 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6275
6276 // Check whether the named type is a direct base class.
6277 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6278 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6279 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6280 BaseIt != BaseE; ++BaseIt) {
6281 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6282 if (CanonicalSourceType == BaseType)
6283 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006284 if (BaseIt->getType()->isDependentType())
6285 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006286 }
6287
6288 if (BaseIt == BaseE) {
6289 // Did not find SourceType in the bases.
6290 Diag(UD->getUsingLocation(),
6291 diag::err_using_decl_constructor_not_in_direct_base)
6292 << UD->getNameInfo().getSourceRange()
6293 << QualType(SourceType, 0) << TargetClass;
6294 return true;
6295 }
6296
Richard Smithc5a89a12012-04-02 01:30:27 +00006297 if (!CurContext->isDependentContext())
6298 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006299
6300 return false;
6301}
6302
John McCall9f54ad42009-12-10 09:41:52 +00006303/// Checks that the given using declaration is not an invalid
6304/// redeclaration. Note that this is checking only for the using decl
6305/// itself, not for any ill-formedness among the UsingShadowDecls.
6306bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6307 bool isTypeName,
6308 const CXXScopeSpec &SS,
6309 SourceLocation NameLoc,
6310 const LookupResult &Prev) {
6311 // C++03 [namespace.udecl]p8:
6312 // C++0x [namespace.udecl]p10:
6313 // A using-declaration is a declaration and can therefore be used
6314 // repeatedly where (and only where) multiple declarations are
6315 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006316 //
John McCall8a726212010-11-29 18:01:58 +00006317 // That's in non-member contexts.
6318 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006319 return false;
6320
6321 NestedNameSpecifier *Qual
6322 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6323
6324 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6325 NamedDecl *D = *I;
6326
6327 bool DTypename;
6328 NestedNameSpecifier *DQual;
6329 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6330 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006331 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006332 } else if (UnresolvedUsingValueDecl *UD
6333 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6334 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006335 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006336 } else if (UnresolvedUsingTypenameDecl *UD
6337 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6338 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006339 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006340 } else continue;
6341
6342 // using decls differ if one says 'typename' and the other doesn't.
6343 // FIXME: non-dependent using decls?
6344 if (isTypeName != DTypename) continue;
6345
6346 // using decls differ if they name different scopes (but note that
6347 // template instantiation can cause this check to trigger when it
6348 // didn't before instantiation).
6349 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6350 Context.getCanonicalNestedNameSpecifier(DQual))
6351 continue;
6352
6353 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006354 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006355 return true;
6356 }
6357
6358 return false;
6359}
6360
John McCall604e7f12009-12-08 07:46:18 +00006361
John McCalled976492009-12-04 22:46:56 +00006362/// Checks that the given nested-name qualifier used in a using decl
6363/// in the current context is appropriately related to the current
6364/// scope. If an error is found, diagnoses it and returns true.
6365bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6366 const CXXScopeSpec &SS,
6367 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006368 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006369
John McCall604e7f12009-12-08 07:46:18 +00006370 if (!CurContext->isRecord()) {
6371 // C++03 [namespace.udecl]p3:
6372 // C++0x [namespace.udecl]p8:
6373 // A using-declaration for a class member shall be a member-declaration.
6374
6375 // If we weren't able to compute a valid scope, it must be a
6376 // dependent class scope.
6377 if (!NamedContext || NamedContext->isRecord()) {
6378 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6379 << SS.getRange();
6380 return true;
6381 }
6382
6383 // Otherwise, everything is known to be fine.
6384 return false;
6385 }
6386
6387 // The current scope is a record.
6388
6389 // If the named context is dependent, we can't decide much.
6390 if (!NamedContext) {
6391 // FIXME: in C++0x, we can diagnose if we can prove that the
6392 // nested-name-specifier does not refer to a base class, which is
6393 // still possible in some cases.
6394
6395 // Otherwise we have to conservatively report that things might be
6396 // okay.
6397 return false;
6398 }
6399
6400 if (!NamedContext->isRecord()) {
6401 // Ideally this would point at the last name in the specifier,
6402 // but we don't have that level of source info.
6403 Diag(SS.getRange().getBegin(),
6404 diag::err_using_decl_nested_name_specifier_is_not_class)
6405 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6406 return true;
6407 }
6408
Douglas Gregor6fb07292010-12-21 07:41:49 +00006409 if (!NamedContext->isDependentContext() &&
6410 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6411 return true;
6412
David Blaikie4e4d0842012-03-11 07:00:24 +00006413 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006414 // C++0x [namespace.udecl]p3:
6415 // In a using-declaration used as a member-declaration, the
6416 // nested-name-specifier shall name a base class of the class
6417 // being defined.
6418
6419 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6420 cast<CXXRecordDecl>(NamedContext))) {
6421 if (CurContext == NamedContext) {
6422 Diag(NameLoc,
6423 diag::err_using_decl_nested_name_specifier_is_current_class)
6424 << SS.getRange();
6425 return true;
6426 }
6427
6428 Diag(SS.getRange().getBegin(),
6429 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6430 << (NestedNameSpecifier*) SS.getScopeRep()
6431 << cast<CXXRecordDecl>(CurContext)
6432 << SS.getRange();
6433 return true;
6434 }
6435
6436 return false;
6437 }
6438
6439 // C++03 [namespace.udecl]p4:
6440 // A using-declaration used as a member-declaration shall refer
6441 // to a member of a base class of the class being defined [etc.].
6442
6443 // Salient point: SS doesn't have to name a base class as long as
6444 // lookup only finds members from base classes. Therefore we can
6445 // diagnose here only if we can prove that that can't happen,
6446 // i.e. if the class hierarchies provably don't intersect.
6447
6448 // TODO: it would be nice if "definitely valid" results were cached
6449 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6450 // need to be repeated.
6451
6452 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006453 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006454
6455 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6456 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6457 Data->Bases.insert(Base);
6458 return true;
6459 }
6460
6461 bool hasDependentBases(const CXXRecordDecl *Class) {
6462 return !Class->forallBases(collect, this);
6463 }
6464
6465 /// Returns true if the base is dependent or is one of the
6466 /// accumulated base classes.
6467 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6468 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6469 return !Data->Bases.count(Base);
6470 }
6471
6472 bool mightShareBases(const CXXRecordDecl *Class) {
6473 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6474 }
6475 };
6476
6477 UserData Data;
6478
6479 // Returns false if we find a dependent base.
6480 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6481 return false;
6482
6483 // Returns false if the class has a dependent base or if it or one
6484 // of its bases is present in the base set of the current context.
6485 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6486 return false;
6487
6488 Diag(SS.getRange().getBegin(),
6489 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6490 << (NestedNameSpecifier*) SS.getScopeRep()
6491 << cast<CXXRecordDecl>(CurContext)
6492 << SS.getRange();
6493
6494 return true;
John McCalled976492009-12-04 22:46:56 +00006495}
6496
Richard Smith162e1c12011-04-15 14:24:37 +00006497Decl *Sema::ActOnAliasDeclaration(Scope *S,
6498 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006499 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006500 SourceLocation UsingLoc,
6501 UnqualifiedId &Name,
6502 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006503 // Skip up to the relevant declaration scope.
6504 while (S->getFlags() & Scope::TemplateParamScope)
6505 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006506 assert((S->getFlags() & Scope::DeclScope) &&
6507 "got alias-declaration outside of declaration scope");
6508
6509 if (Type.isInvalid())
6510 return 0;
6511
6512 bool Invalid = false;
6513 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6514 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006515 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006516
6517 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6518 return 0;
6519
6520 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006521 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006522 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006523 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6524 TInfo->getTypeLoc().getBeginLoc());
6525 }
Richard Smith162e1c12011-04-15 14:24:37 +00006526
6527 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6528 LookupName(Previous, S);
6529
6530 // Warn about shadowing the name of a template parameter.
6531 if (Previous.isSingleResult() &&
6532 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006533 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006534 Previous.clear();
6535 }
6536
6537 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6538 "name in alias declaration must be an identifier");
6539 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6540 Name.StartLocation,
6541 Name.Identifier, TInfo);
6542
6543 NewTD->setAccess(AS);
6544
6545 if (Invalid)
6546 NewTD->setInvalidDecl();
6547
Richard Smith3e4c6c42011-05-05 21:57:07 +00006548 CheckTypedefForVariablyModifiedType(S, NewTD);
6549 Invalid |= NewTD->isInvalidDecl();
6550
Richard Smith162e1c12011-04-15 14:24:37 +00006551 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006552
6553 NamedDecl *NewND;
6554 if (TemplateParamLists.size()) {
6555 TypeAliasTemplateDecl *OldDecl = 0;
6556 TemplateParameterList *OldTemplateParams = 0;
6557
6558 if (TemplateParamLists.size() != 1) {
6559 Diag(UsingLoc, diag::err_alias_template_extra_headers)
6560 << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
6561 TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
6562 }
6563 TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
6564
6565 // Only consider previous declarations in the same scope.
6566 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6567 /*ExplicitInstantiationOrSpecialization*/false);
6568 if (!Previous.empty()) {
6569 Redeclaration = true;
6570
6571 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6572 if (!OldDecl && !Invalid) {
6573 Diag(UsingLoc, diag::err_redefinition_different_kind)
6574 << Name.Identifier;
6575
6576 NamedDecl *OldD = Previous.getRepresentativeDecl();
6577 if (OldD->getLocation().isValid())
6578 Diag(OldD->getLocation(), diag::note_previous_definition);
6579
6580 Invalid = true;
6581 }
6582
6583 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6584 if (TemplateParameterListsAreEqual(TemplateParams,
6585 OldDecl->getTemplateParameters(),
6586 /*Complain=*/true,
6587 TPL_TemplateMatch))
6588 OldTemplateParams = OldDecl->getTemplateParameters();
6589 else
6590 Invalid = true;
6591
6592 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6593 if (!Invalid &&
6594 !Context.hasSameType(OldTD->getUnderlyingType(),
6595 NewTD->getUnderlyingType())) {
6596 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6597 // but we can't reasonably accept it.
6598 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6599 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6600 if (OldTD->getLocation().isValid())
6601 Diag(OldTD->getLocation(), diag::note_previous_definition);
6602 Invalid = true;
6603 }
6604 }
6605 }
6606
6607 // Merge any previous default template arguments into our parameters,
6608 // and check the parameter list.
6609 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6610 TPC_TypeAliasTemplate))
6611 return 0;
6612
6613 TypeAliasTemplateDecl *NewDecl =
6614 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6615 Name.Identifier, TemplateParams,
6616 NewTD);
6617
6618 NewDecl->setAccess(AS);
6619
6620 if (Invalid)
6621 NewDecl->setInvalidDecl();
6622 else if (OldDecl)
6623 NewDecl->setPreviousDeclaration(OldDecl);
6624
6625 NewND = NewDecl;
6626 } else {
6627 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6628 NewND = NewTD;
6629 }
Richard Smith162e1c12011-04-15 14:24:37 +00006630
6631 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006632 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006633
Richard Smith3e4c6c42011-05-05 21:57:07 +00006634 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006635}
6636
John McCalld226f652010-08-21 09:40:31 +00006637Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006638 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006639 SourceLocation AliasLoc,
6640 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006641 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006642 SourceLocation IdentLoc,
6643 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006644
Anders Carlsson81c85c42009-03-28 23:53:49 +00006645 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006646 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6647 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006648
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006649 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006650 NamedDecl *PrevDecl
6651 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6652 ForRedeclaration);
6653 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6654 PrevDecl = 0;
6655
6656 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006657 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006658 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006659 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006660 // FIXME: At some point, we'll want to create the (redundant)
6661 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006662 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006663 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006664 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006665 }
Mike Stump1eb44332009-09-09 15:08:12 +00006666
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006667 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6668 diag::err_redefinition_different_kind;
6669 Diag(AliasLoc, DiagID) << Alias;
6670 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006671 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006672 }
6673
John McCalla24dc2e2009-11-17 02:14:36 +00006674 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006675 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006676
John McCallf36e02d2009-10-09 21:13:30 +00006677 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006678 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006679 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006680 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006681 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006682 }
Mike Stump1eb44332009-09-09 15:08:12 +00006683
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006684 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006685 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006686 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006687 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006688
John McCall3dbd3d52010-02-16 06:53:13 +00006689 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006690 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006691}
6692
Douglas Gregor39957dc2010-05-01 15:04:51 +00006693namespace {
6694 /// \brief Scoped object used to handle the state changes required in Sema
6695 /// to implicitly define the body of a C++ member function;
6696 class ImplicitlyDefinedFunctionScope {
6697 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006698 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006699
6700 public:
6701 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006702 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006703 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006704 S.PushFunctionScope();
6705 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6706 }
6707
6708 ~ImplicitlyDefinedFunctionScope() {
6709 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006710 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006711 }
6712 };
6713}
6714
Sean Hunt001cad92011-05-10 00:49:42 +00006715Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006716Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6717 CXXMethodDecl *MD) {
6718 CXXRecordDecl *ClassDecl = MD->getParent();
6719
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006720 // C++ [except.spec]p14:
6721 // An implicitly declared special member function (Clause 12) shall have an
6722 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006723 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006724 if (ClassDecl->isInvalidDecl())
6725 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006726
Sebastian Redl60618fa2011-03-12 11:50:43 +00006727 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006728 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6729 BEnd = ClassDecl->bases_end();
6730 B != BEnd; ++B) {
6731 if (B->isVirtual()) // Handled below.
6732 continue;
6733
Douglas Gregor18274032010-07-03 00:47:00 +00006734 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6735 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006736 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6737 // If this is a deleted function, add it anyway. This might be conformant
6738 // with the standard. This might not. I'm not sure. It might not matter.
6739 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006740 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006741 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006742 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006743
6744 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006745 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6746 BEnd = ClassDecl->vbases_end();
6747 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006748 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6749 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006750 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6751 // If this is a deleted function, add it anyway. This might be conformant
6752 // with the standard. This might not. I'm not sure. It might not matter.
6753 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006754 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006755 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006756 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006757
6758 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006759 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6760 FEnd = ClassDecl->field_end();
6761 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006762 if (F->hasInClassInitializer()) {
6763 if (Expr *E = F->getInClassInitializer())
6764 ExceptSpec.CalledExpr(E);
6765 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006766 // DR1351:
6767 // If the brace-or-equal-initializer of a non-static data member
6768 // invokes a defaulted default constructor of its class or of an
6769 // enclosing class in a potentially evaluated subexpression, the
6770 // program is ill-formed.
6771 //
6772 // This resolution is unworkable: the exception specification of the
6773 // default constructor can be needed in an unevaluated context, in
6774 // particular, in the operand of a noexcept-expression, and we can be
6775 // unable to compute an exception specification for an enclosed class.
6776 //
6777 // We do not allow an in-class initializer to require the evaluation
6778 // of the exception specification for any in-class initializer whose
6779 // definition is not lexically complete.
6780 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006781 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006782 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006783 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6784 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6785 // If this is a deleted function, add it anyway. This might be conformant
6786 // with the standard. This might not. I'm not sure. It might not matter.
6787 // In particular, the problem is that this function never gets called. It
6788 // might just be ill-formed because this function attempts to refer to
6789 // a deleted function here.
6790 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006791 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006792 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006793 }
John McCalle23cf432010-12-14 08:05:40 +00006794
Sean Hunt001cad92011-05-10 00:49:42 +00006795 return ExceptSpec;
6796}
6797
6798CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6799 CXXRecordDecl *ClassDecl) {
6800 // C++ [class.ctor]p5:
6801 // A default constructor for a class X is a constructor of class X
6802 // that can be called without an argument. If there is no
6803 // user-declared constructor for class X, a default constructor is
6804 // implicitly declared. An implicitly-declared default constructor
6805 // is an inline public member of its class.
6806 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6807 "Should not build implicit default constructor!");
6808
Richard Smith7756afa2012-06-10 05:43:50 +00006809 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6810 CXXDefaultConstructor,
6811 false);
6812
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006813 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006814 CanQualType ClassType
6815 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006816 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006817 DeclarationName Name
6818 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006819 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006820 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00006821 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00006822 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00006823 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006824 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006825 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006826 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006827 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00006828
6829 // Build an exception specification pointing back at this constructor.
6830 FunctionProtoType::ExtProtoInfo EPI;
6831 EPI.ExceptionSpecType = EST_Unevaluated;
6832 EPI.ExceptionSpecDecl = DefaultCon;
6833 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6834
Douglas Gregor18274032010-07-03 00:47:00 +00006835 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006836 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6837
Douglas Gregor23c94db2010-07-02 17:43:08 +00006838 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006839 PushOnScopeChains(DefaultCon, S, false);
6840 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006841
Sean Hunte16da072011-10-10 06:18:57 +00006842 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006843 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006844
Douglas Gregor32df23e2010-07-01 22:02:46 +00006845 return DefaultCon;
6846}
6847
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006848void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6849 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006850 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006851 !Constructor->doesThisDeclarationHaveABody() &&
6852 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006853 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006854
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006855 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006856 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006857
Douglas Gregor39957dc2010-05-01 15:04:51 +00006858 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006859 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006860 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006861 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006862 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006863 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006864 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006865 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006866 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006867
6868 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00006869 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006870
6871 Constructor->setUsed();
6872 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006873
6874 if (ASTMutationListener *L = getASTMutationListener()) {
6875 L->CompletedImplicitDefinition(Constructor);
6876 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006877}
6878
Richard Smith7a614d82011-06-11 17:19:42 +00006879void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6880 if (!D) return;
6881 AdjustDeclIfTemplate(D);
6882
6883 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00006884
Richard Smithb9d0b762012-07-27 04:22:15 +00006885 if (!ClassDecl->isDependentType())
6886 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006887}
6888
Sebastian Redlf677ea32011-02-05 19:23:19 +00006889void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6890 // We start with an initial pass over the base classes to collect those that
6891 // inherit constructors from. If there are none, we can forgo all further
6892 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006893 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006894 BasesVector BasesToInheritFrom;
6895 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6896 BaseE = ClassDecl->bases_end();
6897 BaseIt != BaseE; ++BaseIt) {
6898 if (BaseIt->getInheritConstructors()) {
6899 QualType Base = BaseIt->getType();
6900 if (Base->isDependentType()) {
6901 // If we inherit constructors from anything that is dependent, just
6902 // abort processing altogether. We'll get another chance for the
6903 // instantiations.
6904 return;
6905 }
6906 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6907 }
6908 }
6909 if (BasesToInheritFrom.empty())
6910 return;
6911
6912 // Now collect the constructors that we already have in the current class.
6913 // Those take precedence over inherited constructors.
6914 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6915 // unless there is a user-declared constructor with the same signature in
6916 // the class where the using-declaration appears.
6917 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6918 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6919 CtorE = ClassDecl->ctor_end();
6920 CtorIt != CtorE; ++CtorIt) {
6921 ExistingConstructors.insert(
6922 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6923 }
6924
Sebastian Redlf677ea32011-02-05 19:23:19 +00006925 DeclarationName CreatedCtorName =
6926 Context.DeclarationNames.getCXXConstructorName(
6927 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6928
6929 // Now comes the true work.
6930 // First, we keep a map from constructor types to the base that introduced
6931 // them. Needed for finding conflicting constructors. We also keep the
6932 // actually inserted declarations in there, for pretty diagnostics.
6933 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6934 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6935 ConstructorToSourceMap InheritedConstructors;
6936 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6937 BaseE = BasesToInheritFrom.end();
6938 BaseIt != BaseE; ++BaseIt) {
6939 const RecordType *Base = *BaseIt;
6940 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6941 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6942 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6943 CtorE = BaseDecl->ctor_end();
6944 CtorIt != CtorE; ++CtorIt) {
6945 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006946 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006947 DeclarationName Name =
6948 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006949 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6950 LookupQualifiedName(Result, CurContext);
6951 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006952 SourceLocation UsingLoc = UD ? UD->getLocation() :
6953 ClassDecl->getLocation();
6954
6955 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6956 // from the class X named in the using-declaration consists of actual
6957 // constructors and notional constructors that result from the
6958 // transformation of defaulted parameters as follows:
6959 // - all non-template default constructors of X, and
6960 // - for each non-template constructor of X that has at least one
6961 // parameter with a default argument, the set of constructors that
6962 // results from omitting any ellipsis parameter specification and
6963 // successively omitting parameters with a default argument from the
6964 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00006965 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006966 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6967 const FunctionProtoType *BaseCtorType =
6968 BaseCtor->getType()->getAs<FunctionProtoType>();
6969
6970 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6971 maxParams = BaseCtor->getNumParams();
6972 params <= maxParams; ++params) {
6973 // Skip default constructors. They're never inherited.
6974 if (params == 0)
6975 continue;
6976 // Skip copy and move constructors for the same reason.
6977 if (CanBeCopyOrMove && params == 1)
6978 continue;
6979
6980 // Build up a function type for this particular constructor.
6981 // FIXME: The working paper does not consider that the exception spec
6982 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00006983 // source. This code doesn't yet, either. When it does, this code will
6984 // need to be delayed until after exception specifications and in-class
6985 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006986 const Type *NewCtorType;
6987 if (params == maxParams)
6988 NewCtorType = BaseCtorType;
6989 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00006990 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006991 for (unsigned i = 0; i < params; ++i) {
6992 Args.push_back(BaseCtorType->getArgType(i));
6993 }
6994 FunctionProtoType::ExtProtoInfo ExtInfo =
6995 BaseCtorType->getExtProtoInfo();
6996 ExtInfo.Variadic = false;
6997 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
6998 Args.data(), params, ExtInfo)
6999 .getTypePtr();
7000 }
7001 const Type *CanonicalNewCtorType =
7002 Context.getCanonicalType(NewCtorType);
7003
7004 // Now that we have the type, first check if the class already has a
7005 // constructor with this signature.
7006 if (ExistingConstructors.count(CanonicalNewCtorType))
7007 continue;
7008
7009 // Then we check if we have already declared an inherited constructor
7010 // with this signature.
7011 std::pair<ConstructorToSourceMap::iterator, bool> result =
7012 InheritedConstructors.insert(std::make_pair(
7013 CanonicalNewCtorType,
7014 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7015 if (!result.second) {
7016 // Already in the map. If it came from a different class, that's an
7017 // error. Not if it's from the same.
7018 CanQualType PreviousBase = result.first->second.first;
7019 if (CanonicalBase != PreviousBase) {
7020 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7021 const CXXConstructorDecl *PrevBaseCtor =
7022 PrevCtor->getInheritedConstructor();
7023 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7024
7025 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7026 Diag(BaseCtor->getLocation(),
7027 diag::note_using_decl_constructor_conflict_current_ctor);
7028 Diag(PrevBaseCtor->getLocation(),
7029 diag::note_using_decl_constructor_conflict_previous_ctor);
7030 Diag(PrevCtor->getLocation(),
7031 diag::note_using_decl_constructor_conflict_previous_using);
7032 }
7033 continue;
7034 }
7035
7036 // OK, we're there, now add the constructor.
7037 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007038 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007039 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7040 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007041 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7042 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007043 /*ImplicitlyDeclared=*/true,
7044 // FIXME: Due to a defect in the standard, we treat inherited
7045 // constructors as constexpr even if that makes them ill-formed.
7046 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007047 NewCtor->setAccess(BaseCtor->getAccess());
7048
7049 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007050 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007051 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007052 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7053 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007054 /*IdentifierInfo=*/0,
7055 BaseCtorType->getArgType(i),
7056 /*TInfo=*/0, SC_None,
7057 SC_None, /*DefaultArg=*/0));
7058 }
David Blaikie4278c652011-09-21 18:16:56 +00007059 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007060 NewCtor->setInheritedConstructor(BaseCtor);
7061
Sebastian Redlf677ea32011-02-05 19:23:19 +00007062 ClassDecl->addDecl(NewCtor);
7063 result.first->second.second = NewCtor;
7064 }
7065 }
7066 }
7067}
7068
Sean Huntcb45a0f2011-05-12 22:46:25 +00007069Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007070Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7071 CXXRecordDecl *ClassDecl = MD->getParent();
7072
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007073 // C++ [except.spec]p14:
7074 // An implicitly declared special member function (Clause 12) shall have
7075 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007076 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007077 if (ClassDecl->isInvalidDecl())
7078 return ExceptSpec;
7079
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007080 // Direct base-class destructors.
7081 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7082 BEnd = ClassDecl->bases_end();
7083 B != BEnd; ++B) {
7084 if (B->isVirtual()) // Handled below.
7085 continue;
7086
7087 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007088 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007089 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007090 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007091
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007092 // Virtual base-class destructors.
7093 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7094 BEnd = ClassDecl->vbases_end();
7095 B != BEnd; ++B) {
7096 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007097 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007098 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007099 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007100
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007101 // Field destructors.
7102 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7103 FEnd = ClassDecl->field_end();
7104 F != FEnd; ++F) {
7105 if (const RecordType *RecordTy
7106 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007107 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007108 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007109 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007110
Sean Huntcb45a0f2011-05-12 22:46:25 +00007111 return ExceptSpec;
7112}
7113
7114CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7115 // C++ [class.dtor]p2:
7116 // If a class has no user-declared destructor, a destructor is
7117 // declared implicitly. An implicitly-declared destructor is an
7118 // inline public member of its class.
Sean Huntcb45a0f2011-05-12 22:46:25 +00007119
Douglas Gregor4923aa22010-07-02 20:37:36 +00007120 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007121 CanQualType ClassType
7122 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007123 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007124 DeclarationName Name
7125 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007126 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007127 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007128 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7129 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007130 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007131 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007132 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007133 Destructor->setImplicit();
7134 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007135
7136 // Build an exception specification pointing back at this destructor.
7137 FunctionProtoType::ExtProtoInfo EPI;
7138 EPI.ExceptionSpecType = EST_Unevaluated;
7139 EPI.ExceptionSpecDecl = Destructor;
7140 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7141
Douglas Gregor4923aa22010-07-02 20:37:36 +00007142 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007143 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007144
Douglas Gregor4923aa22010-07-02 20:37:36 +00007145 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007146 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007147 PushOnScopeChains(Destructor, S, false);
7148 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007149
Richard Smith9a561d52012-02-26 09:11:52 +00007150 AddOverriddenMethods(ClassDecl, Destructor);
7151
Richard Smith7d5088a2012-02-18 02:02:13 +00007152 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007153 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007154
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007155 return Destructor;
7156}
7157
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007158void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007159 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007160 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007161 !Destructor->doesThisDeclarationHaveABody() &&
7162 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007163 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007164 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007165 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007166
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007167 if (Destructor->isInvalidDecl())
7168 return;
7169
Douglas Gregor39957dc2010-05-01 15:04:51 +00007170 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007171
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007172 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007173 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7174 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007175
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007176 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007177 Diag(CurrentLocation, diag::note_member_synthesized_at)
7178 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7179
7180 Destructor->setInvalidDecl();
7181 return;
7182 }
7183
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007184 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007185 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007186 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007187 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007188 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007189
7190 if (ASTMutationListener *L = getASTMutationListener()) {
7191 L->CompletedImplicitDefinition(Destructor);
7192 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007193}
7194
Richard Smitha4156b82012-04-21 18:42:51 +00007195/// \brief Perform any semantic analysis which needs to be delayed until all
7196/// pending class member declarations have been parsed.
7197void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007198 // Perform any deferred checking of exception specifications for virtual
7199 // destructors.
7200 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7201 i != e; ++i) {
7202 const CXXDestructorDecl *Dtor =
7203 DelayedDestructorExceptionSpecChecks[i].first;
7204 assert(!Dtor->getParent()->isDependentType() &&
7205 "Should not ever add destructors of templates into the list.");
7206 CheckOverridingFunctionExceptionSpec(Dtor,
7207 DelayedDestructorExceptionSpecChecks[i].second);
7208 }
7209 DelayedDestructorExceptionSpecChecks.clear();
7210}
7211
Richard Smithb9d0b762012-07-27 04:22:15 +00007212void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7213 CXXDestructorDecl *Destructor) {
7214 assert(getLangOpts().CPlusPlus0x &&
7215 "adjusting dtor exception specs was introduced in c++11");
7216
Sebastian Redl0ee33912011-05-19 05:13:44 +00007217 // C++11 [class.dtor]p3:
7218 // A declaration of a destructor that does not have an exception-
7219 // specification is implicitly considered to have the same exception-
7220 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007221 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007222 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007223 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007224 return;
7225
Chandler Carruth3f224b22011-09-20 04:55:26 +00007226 // Replace the destructor's type, building off the existing one. Fortunately,
7227 // the only thing of interest in the destructor type is its extended info.
7228 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007229 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7230 EPI.ExceptionSpecType = EST_Unevaluated;
7231 EPI.ExceptionSpecDecl = Destructor;
7232 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007233
Sebastian Redl0ee33912011-05-19 05:13:44 +00007234 // FIXME: If the destructor has a body that could throw, and the newly created
7235 // spec doesn't allow exceptions, we should emit a warning, because this
7236 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007237 // However, we don't have a body or an exception specification yet, so it
7238 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007239}
7240
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007241/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007242/// \c To.
7243///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007244/// This routine is used to copy/move the members of a class with an
7245/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007246/// copied are arrays, this routine builds for loops to copy them.
7247///
7248/// \param S The Sema object used for type-checking.
7249///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007250/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007251///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007252/// \param T The type of the expressions being copied/moved. Both expressions
7253/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007254///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007255/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007256///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007257/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007258///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007259/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007260/// Otherwise, it's a non-static member subobject.
7261///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007262/// \param Copying Whether we're copying or moving.
7263///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007264/// \param Depth Internal parameter recording the depth of the recursion.
7265///
7266/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007267static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007268BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007269 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007270 bool CopyingBaseSubobject, bool Copying,
7271 unsigned Depth = 0) {
7272 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007273 // Each subobject is assigned in the manner appropriate to its type:
7274 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007275 // - if the subobject is of class type, as if by a call to operator= with
7276 // the subobject as the object expression and the corresponding
7277 // subobject of x as a single function argument (as if by explicit
7278 // qualification; that is, ignoring any possible virtual overriding
7279 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007280 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7281 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7282
7283 // Look for operator=.
7284 DeclarationName Name
7285 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7286 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7287 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7288
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007289 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007290 LookupResult::Filter F = OpLookup.makeFilter();
7291 while (F.hasNext()) {
7292 NamedDecl *D = F.next();
7293 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007294 if (Method->isCopyAssignmentOperator() ||
7295 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007296 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007297
Douglas Gregor06a9f362010-05-01 20:49:11 +00007298 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007299 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007300 F.done();
7301
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007302 // Suppress the protected check (C++ [class.protected]) for each of the
7303 // assignment operators we found. This strange dance is required when
7304 // we're assigning via a base classes's copy-assignment operator. To
7305 // ensure that we're getting the right base class subobject (without
7306 // ambiguities), we need to cast "this" to that subobject type; to
7307 // ensure that we don't go through the virtual call mechanism, we need
7308 // to qualify the operator= name with the base class (see below). However,
7309 // this means that if the base class has a protected copy assignment
7310 // operator, the protected member access check will fail. So, we
7311 // rewrite "protected" access to "public" access in this case, since we
7312 // know by construction that we're calling from a derived class.
7313 if (CopyingBaseSubobject) {
7314 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7315 L != LEnd; ++L) {
7316 if (L.getAccess() == AS_protected)
7317 L.setAccess(AS_public);
7318 }
7319 }
7320
Douglas Gregor06a9f362010-05-01 20:49:11 +00007321 // Create the nested-name-specifier that will be used to qualify the
7322 // reference to operator=; this is required to suppress the virtual
7323 // call mechanism.
7324 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007325 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007326 SS.MakeTrivial(S.Context,
7327 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007328 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007329 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007330
7331 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007332 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007333 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007334 /*TemplateKWLoc=*/SourceLocation(),
7335 /*FirstQualifierInScope=*/0,
7336 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007337 /*TemplateArgs=*/0,
7338 /*SuppressQualifierCheck=*/true);
7339 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007340 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007341
7342 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007343
John McCall60d7b3a2010-08-24 06:29:42 +00007344 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007345 OpEqualRef.takeAs<Expr>(),
7346 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007347 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007348 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007349
7350 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007351 }
John McCallb0207482010-03-16 06:11:48 +00007352
Douglas Gregor06a9f362010-05-01 20:49:11 +00007353 // - if the subobject is of scalar type, the built-in assignment
7354 // operator is used.
7355 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7356 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007357 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007358 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007359 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007360
7361 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007362 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007363
7364 // - if the subobject is an array, each element is assigned, in the
7365 // manner appropriate to the element type;
7366
7367 // Construct a loop over the array bounds, e.g.,
7368 //
7369 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7370 //
7371 // that will copy each of the array elements.
7372 QualType SizeType = S.Context.getSizeType();
7373
7374 // Create the iteration variable.
7375 IdentifierInfo *IterationVarName = 0;
7376 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007377 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007378 llvm::raw_svector_ostream OS(Str);
7379 OS << "__i" << Depth;
7380 IterationVarName = &S.Context.Idents.get(OS.str());
7381 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007382 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007383 IterationVarName, SizeType,
7384 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007385 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007386
7387 // Initialize the iteration variable to zero.
7388 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007389 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007390
7391 // Create a reference to the iteration variable; we'll use this several
7392 // times throughout.
7393 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007394 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007395 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007396 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7397 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7398
Douglas Gregor06a9f362010-05-01 20:49:11 +00007399 // Create the DeclStmt that holds the iteration variable.
7400 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7401
7402 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007403 llvm::APInt Upper
7404 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007405 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007406 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007407 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7408 BO_NE, S.Context.BoolTy,
7409 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007410
7411 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007412 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007413 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7414 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007415
7416 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007417 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007418 IterationVarRefRVal,
7419 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007420 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007421 IterationVarRefRVal,
7422 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007423 if (!Copying) // Cast to rvalue
7424 From = CastForMoving(S, From);
7425
7426 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007427 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7428 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007429 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007430 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007431 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007432
7433 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007434 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007435 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007436 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007437 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007438}
7439
Richard Smithb9d0b762012-07-27 04:22:15 +00007440/// Determine whether an implicit copy assignment operator for ClassDecl has a
7441/// const argument.
7442/// FIXME: It ought to be possible to store this on the record.
7443static bool isImplicitCopyAssignmentArgConst(Sema &S,
7444 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007445 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007446 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007447
Douglas Gregord3c35902010-07-01 16:36:15 +00007448 // C++ [class.copy]p10:
7449 // If the class definition does not explicitly declare a copy
7450 // assignment operator, one is declared implicitly.
7451 // The implicitly-defined copy assignment operator for a class X
7452 // will have the form
7453 //
7454 // X& X::operator=(const X&)
7455 //
7456 // if
Douglas Gregord3c35902010-07-01 16:36:15 +00007457 // -- each direct base class B of X has a copy assignment operator
7458 // whose parameter is of type const B&, const volatile B& or B,
7459 // and
7460 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7461 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007462 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007463 // We'll handle this below
Richard Smithb9d0b762012-07-27 04:22:15 +00007464 if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00007465 continue;
7466
Douglas Gregord3c35902010-07-01 16:36:15 +00007467 assert(!Base->getType()->isDependentType() &&
7468 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007469 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007470 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7471 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007472 }
7473
Richard Smithebaf0e62011-10-18 20:49:44 +00007474 // In C++11, the above citation has "or virtual" added
Richard Smithb9d0b762012-07-27 04:22:15 +00007475 if (S.getLangOpts().CPlusPlus0x) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007476 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7477 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007478 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007479 assert(!Base->getType()->isDependentType() &&
7480 "Cannot generate implicit members for class with dependent bases.");
7481 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007482 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7483 false, 0))
7484 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007485 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007486 }
7487
7488 // -- for all the nonstatic data members of X that are of a class
7489 // type M (or array thereof), each such class type has a copy
7490 // assignment operator whose parameter is of type const M&,
7491 // const volatile M& or M.
7492 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7493 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007494 Field != FieldEnd; ++Field) {
7495 QualType FieldType = S.Context.getBaseElementType(Field->getType());
7496 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7497 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7498 false, 0))
7499 return false;
Douglas Gregord3c35902010-07-01 16:36:15 +00007500 }
7501
7502 // Otherwise, the implicitly declared copy assignment operator will
7503 // have the form
7504 //
7505 // X& X::operator=(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00007506
7507 return true;
7508}
7509
7510Sema::ImplicitExceptionSpecification
7511Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7512 CXXRecordDecl *ClassDecl = MD->getParent();
7513
7514 ImplicitExceptionSpecification ExceptSpec(*this);
7515 if (ClassDecl->isInvalidDecl())
7516 return ExceptSpec;
7517
7518 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7519 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7520 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7521
Douglas Gregorb87786f2010-07-01 17:48:08 +00007522 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007523 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007524 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007525
7526 // It is unspecified whether or not an implicit copy assignment operator
7527 // attempts to deduplicate calls to assignment operators of virtual bases are
7528 // made. As such, this exception specification is effectively unspecified.
7529 // Based on a similar decision made for constness in C++0x, we're erring on
7530 // the side of assuming such calls to be made regardless of whether they
7531 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007532 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7533 BaseEnd = ClassDecl->bases_end();
7534 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007535 if (Base->isVirtual())
7536 continue;
7537
Douglas Gregora376d102010-07-02 21:50:04 +00007538 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007539 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007540 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7541 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007542 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007543 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007544
7545 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7546 BaseEnd = ClassDecl->vbases_end();
7547 Base != BaseEnd; ++Base) {
7548 CXXRecordDecl *BaseClassDecl
7549 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7550 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7551 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007552 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007553 }
7554
Douglas Gregorb87786f2010-07-01 17:48:08 +00007555 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7556 FieldEnd = ClassDecl->field_end();
7557 Field != FieldEnd;
7558 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007559 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007560 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7561 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007562 LookupCopyingAssignment(FieldClassDecl,
7563 ArgQuals | FieldType.getCVRQualifiers(),
7564 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007565 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007566 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007567 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007568
Richard Smithb9d0b762012-07-27 04:22:15 +00007569 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007570}
7571
7572CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7573 // Note: The following rules are largely analoguous to the copy
7574 // constructor rules. Note that virtual bases are not taken into account
7575 // for determining the argument type of the operator. Note also that
7576 // operators taking an object instead of a reference are allowed.
7577
Sean Hunt30de05c2011-05-14 05:23:20 +00007578 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7579 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithb9d0b762012-07-27 04:22:15 +00007580 if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
Sean Hunt30de05c2011-05-14 05:23:20 +00007581 ArgType = ArgType.withConst();
7582 ArgType = Context.getLValueReferenceType(ArgType);
7583
Douglas Gregord3c35902010-07-01 16:36:15 +00007584 // An implicitly-declared copy assignment operator is an inline public
7585 // member of its class.
7586 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007587 SourceLocation ClassLoc = ClassDecl->getLocation();
7588 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007589 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007590 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007591 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007592 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007593 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007594 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007595 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007596 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007597 CopyAssignment->setImplicit();
7598 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007599
7600 // Build an exception specification pointing back at this member.
7601 FunctionProtoType::ExtProtoInfo EPI;
7602 EPI.ExceptionSpecType = EST_Unevaluated;
7603 EPI.ExceptionSpecDecl = CopyAssignment;
7604 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7605
Douglas Gregord3c35902010-07-01 16:36:15 +00007606 // Add the parameter to the operator.
7607 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007608 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007609 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007610 SC_None,
7611 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007612 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007613
Douglas Gregora376d102010-07-02 21:50:04 +00007614 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007615 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007616
Douglas Gregor23c94db2010-07-02 17:43:08 +00007617 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007618 PushOnScopeChains(CopyAssignment, S, false);
7619 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007620
Nico Weberafcc96a2012-01-23 03:19:29 +00007621 // C++0x [class.copy]p19:
7622 // .... If the class definition does not explicitly declare a copy
7623 // assignment operator, there is no user-declared move constructor, and
7624 // there is no user-declared move assignment operator, a copy assignment
7625 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007626 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007627 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007628
Douglas Gregord3c35902010-07-01 16:36:15 +00007629 AddOverriddenMethods(ClassDecl, CopyAssignment);
7630 return CopyAssignment;
7631}
7632
Douglas Gregor06a9f362010-05-01 20:49:11 +00007633void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7634 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007635 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007636 CopyAssignOperator->isOverloadedOperator() &&
7637 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007638 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7639 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007640 "DefineImplicitCopyAssignment called for wrong function");
7641
7642 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7643
7644 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7645 CopyAssignOperator->setInvalidDecl();
7646 return;
7647 }
7648
7649 CopyAssignOperator->setUsed();
7650
7651 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007652 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007653
7654 // C++0x [class.copy]p30:
7655 // The implicitly-defined or explicitly-defaulted copy assignment operator
7656 // for a non-union class X performs memberwise copy assignment of its
7657 // subobjects. The direct base classes of X are assigned first, in the
7658 // order of their declaration in the base-specifier-list, and then the
7659 // immediate non-static data members of X are assigned, in the order in
7660 // which they were declared in the class definition.
7661
7662 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00007663 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007664
7665 // The parameter for the "other" object, which we are copying from.
7666 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7667 Qualifiers OtherQuals = Other->getType().getQualifiers();
7668 QualType OtherRefType = Other->getType();
7669 if (const LValueReferenceType *OtherRef
7670 = OtherRefType->getAs<LValueReferenceType>()) {
7671 OtherRefType = OtherRef->getPointeeType();
7672 OtherQuals = OtherRefType.getQualifiers();
7673 }
7674
7675 // Our location for everything implicitly-generated.
7676 SourceLocation Loc = CopyAssignOperator->getLocation();
7677
7678 // Construct a reference to the "other" object. We'll be using this
7679 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007680 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007681 assert(OtherRef && "Reference to parameter cannot fail!");
7682
7683 // Construct the "this" pointer. We'll be using this throughout the generated
7684 // ASTs.
7685 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7686 assert(This && "Reference to this cannot fail!");
7687
7688 // Assign base classes.
7689 bool Invalid = false;
7690 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7691 E = ClassDecl->bases_end(); Base != E; ++Base) {
7692 // Form the assignment:
7693 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7694 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007695 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007696 Invalid = true;
7697 continue;
7698 }
7699
John McCallf871d0c2010-08-07 06:22:56 +00007700 CXXCastPath BasePath;
7701 BasePath.push_back(Base);
7702
Douglas Gregor06a9f362010-05-01 20:49:11 +00007703 // Construct the "from" expression, which is an implicit cast to the
7704 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007705 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007706 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7707 CK_UncheckedDerivedToBase,
7708 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007709
7710 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007711 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007712
7713 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007714 To = ImpCastExprToType(To.take(),
7715 Context.getCVRQualifiedType(BaseType,
7716 CopyAssignOperator->getTypeQualifiers()),
7717 CK_UncheckedDerivedToBase,
7718 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007719
7720 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007721 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007722 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007723 /*CopyingBaseSubobject=*/true,
7724 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007725 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007726 Diag(CurrentLocation, diag::note_member_synthesized_at)
7727 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7728 CopyAssignOperator->setInvalidDecl();
7729 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007730 }
7731
7732 // Success! Record the copy.
7733 Statements.push_back(Copy.takeAs<Expr>());
7734 }
7735
7736 // \brief Reference to the __builtin_memcpy function.
7737 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007738 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007739 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007740
7741 // Assign non-static members.
7742 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7743 FieldEnd = ClassDecl->field_end();
7744 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007745 if (Field->isUnnamedBitfield())
7746 continue;
7747
Douglas Gregor06a9f362010-05-01 20:49:11 +00007748 // Check for members of reference type; we can't copy those.
7749 if (Field->getType()->isReferenceType()) {
7750 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7751 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7752 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007753 Diag(CurrentLocation, diag::note_member_synthesized_at)
7754 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007755 Invalid = true;
7756 continue;
7757 }
7758
7759 // Check for members of const-qualified, non-class type.
7760 QualType BaseType = Context.getBaseElementType(Field->getType());
7761 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7762 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7763 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7764 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007765 Diag(CurrentLocation, diag::note_member_synthesized_at)
7766 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007767 Invalid = true;
7768 continue;
7769 }
John McCallb77115d2011-06-17 00:18:42 +00007770
7771 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007772 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7773 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007774
7775 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007776 if (FieldType->isIncompleteArrayType()) {
7777 assert(ClassDecl->hasFlexibleArrayMember() &&
7778 "Incomplete array type is not valid");
7779 continue;
7780 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007781
7782 // Build references to the field in the object we're copying from and to.
7783 CXXScopeSpec SS; // Intentionally empty
7784 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7785 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00007786 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007787 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007788 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007789 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007790 SS, SourceLocation(), 0,
7791 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007792 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007793 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007794 SS, SourceLocation(), 0,
7795 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007796 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7797 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7798
7799 // If the field should be copied with __builtin_memcpy rather than via
7800 // explicit assignments, do so. This optimization only applies for arrays
7801 // of scalars and arrays of class type with trivial copy-assignment
7802 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007803 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007804 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007805 // Compute the size of the memory buffer to be copied.
7806 QualType SizeType = Context.getSizeType();
7807 llvm::APInt Size(Context.getTypeSize(SizeType),
7808 Context.getTypeSizeInChars(BaseType).getQuantity());
7809 for (const ConstantArrayType *Array
7810 = Context.getAsConstantArrayType(FieldType);
7811 Array;
7812 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007813 llvm::APInt ArraySize
7814 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007815 Size *= ArraySize;
7816 }
7817
7818 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007819 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7820 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007821
7822 bool NeedsCollectableMemCpy =
7823 (BaseType->isRecordType() &&
7824 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7825
7826 if (NeedsCollectableMemCpy) {
7827 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007828 // Create a reference to the __builtin_objc_memmove_collectable function.
7829 LookupResult R(*this,
7830 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007831 Loc, LookupOrdinaryName);
7832 LookupName(R, TUScope, true);
7833
7834 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7835 if (!CollectableMemCpy) {
7836 // Something went horribly wrong earlier, and we will have
7837 // complained about it.
7838 Invalid = true;
7839 continue;
7840 }
7841
7842 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
7843 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007844 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007845 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7846 }
7847 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007848 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007849 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007850 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7851 LookupOrdinaryName);
7852 LookupName(R, TUScope, true);
7853
7854 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7855 if (!BuiltinMemCpy) {
7856 // Something went horribly wrong earlier, and we will have complained
7857 // about it.
7858 Invalid = true;
7859 continue;
7860 }
7861
7862 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
7863 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00007864 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007865 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7866 }
7867
John McCallca0408f2010-08-23 06:44:23 +00007868 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007869 CallArgs.push_back(To.takeAs<Expr>());
7870 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007871 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007872 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007873 if (NeedsCollectableMemCpy)
7874 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007875 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007876 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007877 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007878 else
7879 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007880 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007881 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00007882 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007883
Douglas Gregor06a9f362010-05-01 20:49:11 +00007884 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7885 Statements.push_back(Call.takeAs<Expr>());
7886 continue;
7887 }
7888
7889 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007890 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007891 To.get(), From.get(),
7892 /*CopyingBaseSubobject=*/false,
7893 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007894 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007895 Diag(CurrentLocation, diag::note_member_synthesized_at)
7896 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7897 CopyAssignOperator->setInvalidDecl();
7898 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007899 }
7900
7901 // Success! Record the copy.
7902 Statements.push_back(Copy.takeAs<Stmt>());
7903 }
7904
7905 if (!Invalid) {
7906 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007907 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007908
John McCall60d7b3a2010-08-24 06:29:42 +00007909 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007910 if (Return.isInvalid())
7911 Invalid = true;
7912 else {
7913 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007914
7915 if (Trap.hasErrorOccurred()) {
7916 Diag(CurrentLocation, diag::note_member_synthesized_at)
7917 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7918 Invalid = true;
7919 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007920 }
7921 }
7922
7923 if (Invalid) {
7924 CopyAssignOperator->setInvalidDecl();
7925 return;
7926 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007927
7928 StmtResult Body;
7929 {
7930 CompoundScopeRAII CompoundScope(*this);
7931 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
7932 /*isStmtExpr=*/false);
7933 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7934 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007935 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007936
7937 if (ASTMutationListener *L = getASTMutationListener()) {
7938 L->CompletedImplicitDefinition(CopyAssignOperator);
7939 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007940}
7941
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007942Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007943Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
7944 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007945
Richard Smithb9d0b762012-07-27 04:22:15 +00007946 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007947 if (ClassDecl->isInvalidDecl())
7948 return ExceptSpec;
7949
7950 // C++0x [except.spec]p14:
7951 // An implicitly declared special member function (Clause 12) shall have an
7952 // exception-specification. [...]
7953
7954 // It is unspecified whether or not an implicit move assignment operator
7955 // attempts to deduplicate calls to assignment operators of virtual bases are
7956 // made. As such, this exception specification is effectively unspecified.
7957 // Based on a similar decision made for constness in C++0x, we're erring on
7958 // the side of assuming such calls to be made regardless of whether they
7959 // actually happen.
7960 // Note that a move constructor is not implicitly declared when there are
7961 // virtual bases, but it can still be user-declared and explicitly defaulted.
7962 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7963 BaseEnd = ClassDecl->bases_end();
7964 Base != BaseEnd; ++Base) {
7965 if (Base->isVirtual())
7966 continue;
7967
7968 CXXRecordDecl *BaseClassDecl
7969 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7970 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00007971 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007972 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007973 }
7974
7975 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7976 BaseEnd = ClassDecl->vbases_end();
7977 Base != BaseEnd; ++Base) {
7978 CXXRecordDecl *BaseClassDecl
7979 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7980 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00007981 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007982 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007983 }
7984
7985 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7986 FieldEnd = ClassDecl->field_end();
7987 Field != FieldEnd;
7988 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007989 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007990 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00007991 if (CXXMethodDecl *MoveAssign =
7992 LookupMovingAssignment(FieldClassDecl,
7993 FieldType.getCVRQualifiers(),
7994 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007995 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007996 }
7997 }
7998
7999 return ExceptSpec;
8000}
8001
Richard Smith1c931be2012-04-02 18:40:40 +00008002/// Determine whether the class type has any direct or indirect virtual base
8003/// classes which have a non-trivial move assignment operator.
8004static bool
8005hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8006 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8007 BaseEnd = ClassDecl->vbases_end();
8008 Base != BaseEnd; ++Base) {
8009 CXXRecordDecl *BaseClass =
8010 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8011
8012 // Try to declare the move assignment. If it would be deleted, then the
8013 // class does not have a non-trivial move assignment.
8014 if (BaseClass->needsImplicitMoveAssignment())
8015 S.DeclareImplicitMoveAssignment(BaseClass);
8016
8017 // If the class has both a trivial move assignment and a non-trivial move
8018 // assignment, hasTrivialMoveAssignment() is false.
8019 if (BaseClass->hasDeclaredMoveAssignment() &&
8020 !BaseClass->hasTrivialMoveAssignment())
8021 return true;
8022 }
8023
8024 return false;
8025}
8026
8027/// Determine whether the given type either has a move constructor or is
8028/// trivially copyable.
8029static bool
8030hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8031 Type = S.Context.getBaseElementType(Type);
8032
8033 // FIXME: Technically, non-trivially-copyable non-class types, such as
8034 // reference types, are supposed to return false here, but that appears
8035 // to be a standard defect.
8036 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00008037 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00008038 return true;
8039
8040 if (Type.isTriviallyCopyableType(S.Context))
8041 return true;
8042
8043 if (IsConstructor) {
8044 if (ClassDecl->needsImplicitMoveConstructor())
8045 S.DeclareImplicitMoveConstructor(ClassDecl);
8046 return ClassDecl->hasDeclaredMoveConstructor();
8047 }
8048
8049 if (ClassDecl->needsImplicitMoveAssignment())
8050 S.DeclareImplicitMoveAssignment(ClassDecl);
8051 return ClassDecl->hasDeclaredMoveAssignment();
8052}
8053
8054/// Determine whether all non-static data members and direct or virtual bases
8055/// of class \p ClassDecl have either a move operation, or are trivially
8056/// copyable.
8057static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8058 bool IsConstructor) {
8059 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8060 BaseEnd = ClassDecl->bases_end();
8061 Base != BaseEnd; ++Base) {
8062 if (Base->isVirtual())
8063 continue;
8064
8065 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8066 return false;
8067 }
8068
8069 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8070 BaseEnd = ClassDecl->vbases_end();
8071 Base != BaseEnd; ++Base) {
8072 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8073 return false;
8074 }
8075
8076 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8077 FieldEnd = ClassDecl->field_end();
8078 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008079 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008080 return false;
8081 }
8082
8083 return true;
8084}
8085
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008086CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008087 // C++11 [class.copy]p20:
8088 // If the definition of a class X does not explicitly declare a move
8089 // assignment operator, one will be implicitly declared as defaulted
8090 // if and only if:
8091 //
8092 // - [first 4 bullets]
8093 assert(ClassDecl->needsImplicitMoveAssignment());
8094
8095 // [Checked after we build the declaration]
8096 // - the move assignment operator would not be implicitly defined as
8097 // deleted,
8098
8099 // [DR1402]:
8100 // - X has no direct or indirect virtual base class with a non-trivial
8101 // move assignment operator, and
8102 // - each of X's non-static data members and direct or virtual base classes
8103 // has a type that either has a move assignment operator or is trivially
8104 // copyable.
8105 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8106 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8107 ClassDecl->setFailedImplicitMoveAssignment();
8108 return 0;
8109 }
8110
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008111 // Note: The following rules are largely analoguous to the move
8112 // constructor rules.
8113
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008114 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8115 QualType RetType = Context.getLValueReferenceType(ArgType);
8116 ArgType = Context.getRValueReferenceType(ArgType);
8117
8118 // An implicitly-declared move assignment operator is an inline public
8119 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008120 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8121 SourceLocation ClassLoc = ClassDecl->getLocation();
8122 DeclarationNameInfo NameInfo(Name, ClassLoc);
8123 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008124 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008125 /*TInfo=*/0, /*isStatic=*/false,
8126 /*StorageClassAsWritten=*/SC_None,
8127 /*isInline=*/true,
8128 /*isConstexpr=*/false,
8129 SourceLocation());
8130 MoveAssignment->setAccess(AS_public);
8131 MoveAssignment->setDefaulted();
8132 MoveAssignment->setImplicit();
8133 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8134
Richard Smithb9d0b762012-07-27 04:22:15 +00008135 // Build an exception specification pointing back at this member.
8136 FunctionProtoType::ExtProtoInfo EPI;
8137 EPI.ExceptionSpecType = EST_Unevaluated;
8138 EPI.ExceptionSpecDecl = MoveAssignment;
8139 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8140
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008141 // Add the parameter to the operator.
8142 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8143 ClassLoc, ClassLoc, /*Id=*/0,
8144 ArgType, /*TInfo=*/0,
8145 SC_None,
8146 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008147 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008148
8149 // Note that we have added this copy-assignment operator.
8150 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8151
8152 // C++0x [class.copy]p9:
8153 // If the definition of a class X does not explicitly declare a move
8154 // assignment operator, one will be implicitly declared as defaulted if and
8155 // only if:
8156 // [...]
8157 // - the move assignment operator would not be implicitly defined as
8158 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008159 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008160 // Cache this result so that we don't try to generate this over and over
8161 // on every lookup, leaking memory and wasting time.
8162 ClassDecl->setFailedImplicitMoveAssignment();
8163 return 0;
8164 }
8165
8166 if (Scope *S = getScopeForContext(ClassDecl))
8167 PushOnScopeChains(MoveAssignment, S, false);
8168 ClassDecl->addDecl(MoveAssignment);
8169
8170 AddOverriddenMethods(ClassDecl, MoveAssignment);
8171 return MoveAssignment;
8172}
8173
8174void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8175 CXXMethodDecl *MoveAssignOperator) {
8176 assert((MoveAssignOperator->isDefaulted() &&
8177 MoveAssignOperator->isOverloadedOperator() &&
8178 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008179 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8180 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008181 "DefineImplicitMoveAssignment called for wrong function");
8182
8183 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8184
8185 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8186 MoveAssignOperator->setInvalidDecl();
8187 return;
8188 }
8189
8190 MoveAssignOperator->setUsed();
8191
8192 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
8193 DiagnosticErrorTrap Trap(Diags);
8194
8195 // C++0x [class.copy]p28:
8196 // The implicitly-defined or move assignment operator for a non-union class
8197 // X performs memberwise move assignment of its subobjects. The direct base
8198 // classes of X are assigned first, in the order of their declaration in the
8199 // base-specifier-list, and then the immediate non-static data members of X
8200 // are assigned, in the order in which they were declared in the class
8201 // definition.
8202
8203 // The statements that form the synthesized function body.
8204 ASTOwningVector<Stmt*> Statements(*this);
8205
8206 // The parameter for the "other" object, which we are move from.
8207 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8208 QualType OtherRefType = Other->getType()->
8209 getAs<RValueReferenceType>()->getPointeeType();
8210 assert(OtherRefType.getQualifiers() == 0 &&
8211 "Bad argument type of defaulted move assignment");
8212
8213 // Our location for everything implicitly-generated.
8214 SourceLocation Loc = MoveAssignOperator->getLocation();
8215
8216 // Construct a reference to the "other" object. We'll be using this
8217 // throughout the generated ASTs.
8218 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8219 assert(OtherRef && "Reference to parameter cannot fail!");
8220 // Cast to rvalue.
8221 OtherRef = CastForMoving(*this, OtherRef);
8222
8223 // Construct the "this" pointer. We'll be using this throughout the generated
8224 // ASTs.
8225 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8226 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008227
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008228 // Assign base classes.
8229 bool Invalid = false;
8230 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8231 E = ClassDecl->bases_end(); Base != E; ++Base) {
8232 // Form the assignment:
8233 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8234 QualType BaseType = Base->getType().getUnqualifiedType();
8235 if (!BaseType->isRecordType()) {
8236 Invalid = true;
8237 continue;
8238 }
8239
8240 CXXCastPath BasePath;
8241 BasePath.push_back(Base);
8242
8243 // Construct the "from" expression, which is an implicit cast to the
8244 // appropriately-qualified base type.
8245 Expr *From = OtherRef;
8246 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008247 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008248
8249 // Dereference "this".
8250 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8251
8252 // Implicitly cast "this" to the appropriately-qualified base type.
8253 To = ImpCastExprToType(To.take(),
8254 Context.getCVRQualifiedType(BaseType,
8255 MoveAssignOperator->getTypeQualifiers()),
8256 CK_UncheckedDerivedToBase,
8257 VK_LValue, &BasePath);
8258
8259 // Build the move.
8260 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8261 To.get(), From,
8262 /*CopyingBaseSubobject=*/true,
8263 /*Copying=*/false);
8264 if (Move.isInvalid()) {
8265 Diag(CurrentLocation, diag::note_member_synthesized_at)
8266 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8267 MoveAssignOperator->setInvalidDecl();
8268 return;
8269 }
8270
8271 // Success! Record the move.
8272 Statements.push_back(Move.takeAs<Expr>());
8273 }
8274
8275 // \brief Reference to the __builtin_memcpy function.
8276 Expr *BuiltinMemCpyRef = 0;
8277 // \brief Reference to the __builtin_objc_memmove_collectable function.
8278 Expr *CollectableMemCpyRef = 0;
8279
8280 // Assign non-static members.
8281 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8282 FieldEnd = ClassDecl->field_end();
8283 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008284 if (Field->isUnnamedBitfield())
8285 continue;
8286
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008287 // Check for members of reference type; we can't move those.
8288 if (Field->getType()->isReferenceType()) {
8289 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8290 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8291 Diag(Field->getLocation(), diag::note_declared_at);
8292 Diag(CurrentLocation, diag::note_member_synthesized_at)
8293 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8294 Invalid = true;
8295 continue;
8296 }
8297
8298 // Check for members of const-qualified, non-class type.
8299 QualType BaseType = Context.getBaseElementType(Field->getType());
8300 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8301 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8302 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8303 Diag(Field->getLocation(), diag::note_declared_at);
8304 Diag(CurrentLocation, diag::note_member_synthesized_at)
8305 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8306 Invalid = true;
8307 continue;
8308 }
8309
8310 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008311 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8312 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008313
8314 QualType FieldType = Field->getType().getNonReferenceType();
8315 if (FieldType->isIncompleteArrayType()) {
8316 assert(ClassDecl->hasFlexibleArrayMember() &&
8317 "Incomplete array type is not valid");
8318 continue;
8319 }
8320
8321 // Build references to the field in the object we're copying from and to.
8322 CXXScopeSpec SS; // Intentionally empty
8323 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8324 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008325 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008326 MemberLookup.resolveKind();
8327 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8328 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008329 SS, SourceLocation(), 0,
8330 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008331 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8332 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008333 SS, SourceLocation(), 0,
8334 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008335 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8336 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8337
8338 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8339 "Member reference with rvalue base must be rvalue except for reference "
8340 "members, which aren't allowed for move assignment.");
8341
8342 // If the field should be copied with __builtin_memcpy rather than via
8343 // explicit assignments, do so. This optimization only applies for arrays
8344 // of scalars and arrays of class type with trivial move-assignment
8345 // operators.
8346 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8347 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8348 // Compute the size of the memory buffer to be copied.
8349 QualType SizeType = Context.getSizeType();
8350 llvm::APInt Size(Context.getTypeSize(SizeType),
8351 Context.getTypeSizeInChars(BaseType).getQuantity());
8352 for (const ConstantArrayType *Array
8353 = Context.getAsConstantArrayType(FieldType);
8354 Array;
8355 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8356 llvm::APInt ArraySize
8357 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8358 Size *= ArraySize;
8359 }
8360
Douglas Gregor45d3d712011-09-01 02:09:07 +00008361 // Take the address of the field references for "from" and "to". We
8362 // directly construct UnaryOperators here because semantic analysis
8363 // does not permit us to take the address of an xvalue.
8364 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8365 Context.getPointerType(From.get()->getType()),
8366 VK_RValue, OK_Ordinary, Loc);
8367 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8368 Context.getPointerType(To.get()->getType()),
8369 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008370
8371 bool NeedsCollectableMemCpy =
8372 (BaseType->isRecordType() &&
8373 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8374
8375 if (NeedsCollectableMemCpy) {
8376 if (!CollectableMemCpyRef) {
8377 // Create a reference to the __builtin_objc_memmove_collectable function.
8378 LookupResult R(*this,
8379 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8380 Loc, LookupOrdinaryName);
8381 LookupName(R, TUScope, true);
8382
8383 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8384 if (!CollectableMemCpy) {
8385 // Something went horribly wrong earlier, and we will have
8386 // complained about it.
8387 Invalid = true;
8388 continue;
8389 }
8390
8391 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
8392 CollectableMemCpy->getType(),
8393 VK_LValue, Loc, 0).take();
8394 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8395 }
8396 }
8397 // Create a reference to the __builtin_memcpy builtin function.
8398 else if (!BuiltinMemCpyRef) {
8399 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8400 LookupOrdinaryName);
8401 LookupName(R, TUScope, true);
8402
8403 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8404 if (!BuiltinMemCpy) {
8405 // Something went horribly wrong earlier, and we will have complained
8406 // about it.
8407 Invalid = true;
8408 continue;
8409 }
8410
8411 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
8412 BuiltinMemCpy->getType(),
8413 VK_LValue, Loc, 0).take();
8414 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8415 }
8416
8417 ASTOwningVector<Expr*> CallArgs(*this);
8418 CallArgs.push_back(To.takeAs<Expr>());
8419 CallArgs.push_back(From.takeAs<Expr>());
8420 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8421 ExprResult Call = ExprError();
8422 if (NeedsCollectableMemCpy)
8423 Call = ActOnCallExpr(/*Scope=*/0,
8424 CollectableMemCpyRef,
8425 Loc, move_arg(CallArgs),
8426 Loc);
8427 else
8428 Call = ActOnCallExpr(/*Scope=*/0,
8429 BuiltinMemCpyRef,
8430 Loc, move_arg(CallArgs),
8431 Loc);
8432
8433 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8434 Statements.push_back(Call.takeAs<Expr>());
8435 continue;
8436 }
8437
8438 // Build the move of this field.
8439 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8440 To.get(), From.get(),
8441 /*CopyingBaseSubobject=*/false,
8442 /*Copying=*/false);
8443 if (Move.isInvalid()) {
8444 Diag(CurrentLocation, diag::note_member_synthesized_at)
8445 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8446 MoveAssignOperator->setInvalidDecl();
8447 return;
8448 }
8449
8450 // Success! Record the copy.
8451 Statements.push_back(Move.takeAs<Stmt>());
8452 }
8453
8454 if (!Invalid) {
8455 // Add a "return *this;"
8456 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8457
8458 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8459 if (Return.isInvalid())
8460 Invalid = true;
8461 else {
8462 Statements.push_back(Return.takeAs<Stmt>());
8463
8464 if (Trap.hasErrorOccurred()) {
8465 Diag(CurrentLocation, diag::note_member_synthesized_at)
8466 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8467 Invalid = true;
8468 }
8469 }
8470 }
8471
8472 if (Invalid) {
8473 MoveAssignOperator->setInvalidDecl();
8474 return;
8475 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008476
8477 StmtResult Body;
8478 {
8479 CompoundScopeRAII CompoundScope(*this);
8480 Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
8481 /*isStmtExpr=*/false);
8482 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8483 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008484 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8485
8486 if (ASTMutationListener *L = getASTMutationListener()) {
8487 L->CompletedImplicitDefinition(MoveAssignOperator);
8488 }
8489}
8490
Richard Smithb9d0b762012-07-27 04:22:15 +00008491/// Determine whether an implicit copy constructor for ClassDecl has a const
8492/// argument.
8493/// FIXME: It ought to be possible to store this on the record.
8494static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008495 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00008496 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008497
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008498 // C++ [class.copy]p5:
8499 // The implicitly-declared copy constructor for a class X will
8500 // have the form
8501 //
8502 // X::X(const X&)
8503 //
8504 // if
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008505 // -- each direct or virtual base class B of X has a copy
8506 // constructor whose first parameter is of type const B& or
8507 // const volatile B&, and
8508 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8509 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008510 Base != BaseEnd; ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008511 // Virtual bases are handled below.
8512 if (Base->isVirtual())
8513 continue;
Richard Smithb9d0b762012-07-27 04:22:15 +00008514
Douglas Gregor22584312010-07-02 23:41:54 +00008515 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008516 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008517 // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8518 // ambiguous, we should still produce a constructor with a const-qualified
8519 // parameter.
8520 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8521 return false;
Douglas Gregor598a8542010-07-01 18:27:03 +00008522 }
8523
8524 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8525 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008526 Base != BaseEnd; ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008527 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008528 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008529 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8530 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008531 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008532
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008533 // -- for all the nonstatic data members of X that are of a
8534 // class type M (or array thereof), each such class type
8535 // has a copy constructor whose first parameter is of type
8536 // const M& or const volatile M&.
8537 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8538 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008539 Field != FieldEnd; ++Field) {
8540 QualType FieldType = S.Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008541 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smithb9d0b762012-07-27 04:22:15 +00008542 if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8543 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008544 }
8545 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008546
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008547 // Otherwise, the implicitly declared copy constructor will have
8548 // the form
8549 //
8550 // X::X(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00008551
8552 return true;
8553}
8554
8555Sema::ImplicitExceptionSpecification
8556Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8557 CXXRecordDecl *ClassDecl = MD->getParent();
8558
8559 ImplicitExceptionSpecification ExceptSpec(*this);
8560 if (ClassDecl->isInvalidDecl())
8561 return ExceptSpec;
8562
8563 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8564 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8565 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8566
Douglas Gregor0d405db2010-07-01 20:59:04 +00008567 // C++ [except.spec]p14:
8568 // An implicitly declared special member function (Clause 12) shall have an
8569 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008570 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8571 BaseEnd = ClassDecl->bases_end();
8572 Base != BaseEnd;
8573 ++Base) {
8574 // Virtual bases are handled below.
8575 if (Base->isVirtual())
8576 continue;
8577
Douglas Gregor22584312010-07-02 23:41:54 +00008578 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008579 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008580 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008581 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008582 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008583 }
8584 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8585 BaseEnd = ClassDecl->vbases_end();
8586 Base != BaseEnd;
8587 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008588 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008589 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008590 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008591 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008592 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008593 }
8594 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8595 FieldEnd = ClassDecl->field_end();
8596 Field != FieldEnd;
8597 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008598 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008599 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8600 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008601 LookupCopyingConstructor(FieldClassDecl,
8602 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008603 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008604 }
8605 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008606
Richard Smithb9d0b762012-07-27 04:22:15 +00008607 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008608}
8609
8610CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8611 CXXRecordDecl *ClassDecl) {
8612 // C++ [class.copy]p4:
8613 // If the class definition does not explicitly declare a copy
8614 // constructor, one is declared implicitly.
8615
Sean Hunt49634cf2011-05-13 06:10:58 +00008616 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8617 QualType ArgType = ClassType;
Richard Smithb9d0b762012-07-27 04:22:15 +00008618 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
Sean Hunt49634cf2011-05-13 06:10:58 +00008619 if (Const)
8620 ArgType = ArgType.withConst();
8621 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008622
Richard Smith7756afa2012-06-10 05:43:50 +00008623 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8624 CXXCopyConstructor,
8625 Const);
8626
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008627 DeclarationName Name
8628 = Context.DeclarationNames.getCXXConstructorName(
8629 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008630 SourceLocation ClassLoc = ClassDecl->getLocation();
8631 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008632
8633 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008634 // member of its class.
8635 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008636 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008637 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008638 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008639 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008640 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008641 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008642
Richard Smithb9d0b762012-07-27 04:22:15 +00008643 // Build an exception specification pointing back at this member.
8644 FunctionProtoType::ExtProtoInfo EPI;
8645 EPI.ExceptionSpecType = EST_Unevaluated;
8646 EPI.ExceptionSpecDecl = CopyConstructor;
8647 CopyConstructor->setType(
8648 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8649
Douglas Gregor22584312010-07-02 23:41:54 +00008650 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008651 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8652
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008653 // Add the parameter to the constructor.
8654 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008655 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008656 /*IdentifierInfo=*/0,
8657 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008658 SC_None,
8659 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008660 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008661
Douglas Gregor23c94db2010-07-02 17:43:08 +00008662 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008663 PushOnScopeChains(CopyConstructor, S, false);
8664 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008665
Nico Weberafcc96a2012-01-23 03:19:29 +00008666 // C++11 [class.copy]p8:
8667 // ... If the class definition does not explicitly declare a copy
8668 // constructor, there is no user-declared move constructor, and there is no
8669 // user-declared move assignment operator, a copy constructor is implicitly
8670 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008671 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008672 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008673
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008674 return CopyConstructor;
8675}
8676
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008677void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008678 CXXConstructorDecl *CopyConstructor) {
8679 assert((CopyConstructor->isDefaulted() &&
8680 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008681 !CopyConstructor->doesThisDeclarationHaveABody() &&
8682 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008683 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008684
Anders Carlsson63010a72010-04-23 16:24:12 +00008685 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008686 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008687
Douglas Gregor39957dc2010-05-01 15:04:51 +00008688 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008689 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008690
Sean Huntcbb67482011-01-08 20:30:50 +00008691 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008692 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008693 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008694 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008695 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008696 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008697 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008698 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8699 CopyConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008700 MultiStmtArg(*this, 0, 0),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008701 /*isStmtExpr=*/false)
8702 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008703 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008704 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008705
8706 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008707 if (ASTMutationListener *L = getASTMutationListener()) {
8708 L->CompletedImplicitDefinition(CopyConstructor);
8709 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008710}
8711
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008712Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008713Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8714 CXXRecordDecl *ClassDecl = MD->getParent();
8715
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008716 // C++ [except.spec]p14:
8717 // An implicitly declared special member function (Clause 12) shall have an
8718 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008719 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008720 if (ClassDecl->isInvalidDecl())
8721 return ExceptSpec;
8722
8723 // Direct base-class constructors.
8724 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8725 BEnd = ClassDecl->bases_end();
8726 B != BEnd; ++B) {
8727 if (B->isVirtual()) // Handled below.
8728 continue;
8729
8730 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8731 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008732 CXXConstructorDecl *Constructor =
8733 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008734 // If this is a deleted function, add it anyway. This might be conformant
8735 // with the standard. This might not. I'm not sure. It might not matter.
8736 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008737 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008738 }
8739 }
8740
8741 // Virtual base-class constructors.
8742 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8743 BEnd = ClassDecl->vbases_end();
8744 B != BEnd; ++B) {
8745 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8746 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008747 CXXConstructorDecl *Constructor =
8748 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008749 // If this is a deleted function, add it anyway. This might be conformant
8750 // with the standard. This might not. I'm not sure. It might not matter.
8751 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008752 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008753 }
8754 }
8755
8756 // Field constructors.
8757 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8758 FEnd = ClassDecl->field_end();
8759 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008760 QualType FieldType = Context.getBaseElementType(F->getType());
8761 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8762 CXXConstructorDecl *Constructor =
8763 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008764 // If this is a deleted function, add it anyway. This might be conformant
8765 // with the standard. This might not. I'm not sure. It might not matter.
8766 // In particular, the problem is that this function never gets called. It
8767 // might just be ill-formed because this function attempts to refer to
8768 // a deleted function here.
8769 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008770 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008771 }
8772 }
8773
8774 return ExceptSpec;
8775}
8776
8777CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8778 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008779 // C++11 [class.copy]p9:
8780 // If the definition of a class X does not explicitly declare a move
8781 // constructor, one will be implicitly declared as defaulted if and only if:
8782 //
8783 // - [first 4 bullets]
8784 assert(ClassDecl->needsImplicitMoveConstructor());
8785
8786 // [Checked after we build the declaration]
8787 // - the move assignment operator would not be implicitly defined as
8788 // deleted,
8789
8790 // [DR1402]:
8791 // - each of X's non-static data members and direct or virtual base classes
8792 // has a type that either has a move constructor or is trivially copyable.
8793 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8794 ClassDecl->setFailedImplicitMoveConstructor();
8795 return 0;
8796 }
8797
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008798 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8799 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008800
Richard Smith7756afa2012-06-10 05:43:50 +00008801 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8802 CXXMoveConstructor,
8803 false);
8804
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008805 DeclarationName Name
8806 = Context.DeclarationNames.getCXXConstructorName(
8807 Context.getCanonicalType(ClassType));
8808 SourceLocation ClassLoc = ClassDecl->getLocation();
8809 DeclarationNameInfo NameInfo(Name, ClassLoc);
8810
8811 // C++0x [class.copy]p11:
8812 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008813 // member of its class.
8814 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008815 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008816 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008817 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008818 MoveConstructor->setAccess(AS_public);
8819 MoveConstructor->setDefaulted();
8820 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008821
Richard Smithb9d0b762012-07-27 04:22:15 +00008822 // Build an exception specification pointing back at this member.
8823 FunctionProtoType::ExtProtoInfo EPI;
8824 EPI.ExceptionSpecType = EST_Unevaluated;
8825 EPI.ExceptionSpecDecl = MoveConstructor;
8826 MoveConstructor->setType(
8827 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8828
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008829 // Add the parameter to the constructor.
8830 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8831 ClassLoc, ClassLoc,
8832 /*IdentifierInfo=*/0,
8833 ArgType, /*TInfo=*/0,
8834 SC_None,
8835 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008836 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008837
8838 // C++0x [class.copy]p9:
8839 // If the definition of a class X does not explicitly declare a move
8840 // constructor, one will be implicitly declared as defaulted if and only if:
8841 // [...]
8842 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008843 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008844 // Cache this result so that we don't try to generate this over and over
8845 // on every lookup, leaking memory and wasting time.
8846 ClassDecl->setFailedImplicitMoveConstructor();
8847 return 0;
8848 }
8849
8850 // Note that we have declared this constructor.
8851 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8852
8853 if (Scope *S = getScopeForContext(ClassDecl))
8854 PushOnScopeChains(MoveConstructor, S, false);
8855 ClassDecl->addDecl(MoveConstructor);
8856
8857 return MoveConstructor;
8858}
8859
8860void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8861 CXXConstructorDecl *MoveConstructor) {
8862 assert((MoveConstructor->isDefaulted() &&
8863 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008864 !MoveConstructor->doesThisDeclarationHaveABody() &&
8865 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008866 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8867
8868 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8869 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8870
8871 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8872 DiagnosticErrorTrap Trap(Diags);
8873
8874 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8875 Trap.hasErrorOccurred()) {
8876 Diag(CurrentLocation, diag::note_member_synthesized_at)
8877 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8878 MoveConstructor->setInvalidDecl();
8879 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008880 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008881 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8882 MoveConstructor->getLocation(),
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008883 MultiStmtArg(*this, 0, 0),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008884 /*isStmtExpr=*/false)
8885 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008886 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008887 }
8888
8889 MoveConstructor->setUsed();
8890
8891 if (ASTMutationListener *L = getASTMutationListener()) {
8892 L->CompletedImplicitDefinition(MoveConstructor);
8893 }
8894}
8895
Douglas Gregore4e68d42012-02-15 19:33:52 +00008896bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8897 return FD->isDeleted() &&
8898 (FD->isDefaulted() || FD->isImplicit()) &&
8899 isa<CXXMethodDecl>(FD);
8900}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008901
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008902/// \brief Mark the call operator of the given lambda closure type as "used".
8903static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8904 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008905 = cast<CXXMethodDecl>(
8906 *Lambda->lookup(
8907 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008908 CallOperator->setReferenced();
8909 CallOperator->setUsed();
8910}
8911
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008912void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8913 SourceLocation CurrentLocation,
8914 CXXConversionDecl *Conv)
8915{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008916 CXXRecordDecl *Lambda = Conv->getParent();
8917
8918 // Make sure that the lambda call operator is marked used.
8919 markLambdaCallOperatorUsed(*this, Lambda);
8920
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008921 Conv->setUsed();
8922
8923 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8924 DiagnosticErrorTrap Trap(Diags);
8925
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008926 // Return the address of the __invoke function.
8927 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8928 CXXMethodDecl *Invoke
8929 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8930 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8931 VK_LValue, Conv->getLocation()).take();
8932 assert(FunctionRef && "Can't refer to __invoke function?");
8933 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8934 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8935 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008936 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008937
8938 // Fill in the __invoke function with a dummy implementation. IR generation
8939 // will fill in the actual details.
8940 Invoke->setUsed();
8941 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008942 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008943
8944 if (ASTMutationListener *L = getASTMutationListener()) {
8945 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008946 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008947 }
8948}
8949
8950void Sema::DefineImplicitLambdaToBlockPointerConversion(
8951 SourceLocation CurrentLocation,
8952 CXXConversionDecl *Conv)
8953{
8954 Conv->setUsed();
8955
8956 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8957 DiagnosticErrorTrap Trap(Diags);
8958
Douglas Gregorac1303e2012-02-22 05:02:47 +00008959 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008960 Expr *This = ActOnCXXThis(CurrentLocation).take();
8961 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008962
Eli Friedman23f02672012-03-01 04:01:32 +00008963 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8964 Conv->getLocation(),
8965 Conv, DerefThis);
8966
8967 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8968 // behavior. Note that only the general conversion function does this
8969 // (since it's unusable otherwise); in the case where we inline the
8970 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008971 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008972 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8973 CK_CopyAndAutoreleaseBlockObject,
8974 BuildBlock.get(), 0, VK_RValue);
8975
8976 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008977 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008978 Conv->setInvalidDecl();
8979 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008980 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00008981
Douglas Gregorac1303e2012-02-22 05:02:47 +00008982 // Create the return statement that returns the block from the conversion
8983 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00008984 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00008985 if (Return.isInvalid()) {
8986 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
8987 Conv->setInvalidDecl();
8988 return;
8989 }
8990
8991 // Set the body of the conversion function.
8992 Stmt *ReturnS = Return.take();
8993 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
8994 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008995 Conv->getLocation()));
8996
Douglas Gregorac1303e2012-02-22 05:02:47 +00008997 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008998 if (ASTMutationListener *L = getASTMutationListener()) {
8999 L->CompletedImplicitDefinition(Conv);
9000 }
9001}
9002
Douglas Gregorf52757d2012-03-10 06:53:13 +00009003/// \brief Determine whether the given list arguments contains exactly one
9004/// "real" (non-default) argument.
9005static bool hasOneRealArgument(MultiExprArg Args) {
9006 switch (Args.size()) {
9007 case 0:
9008 return false;
9009
9010 default:
9011 if (!Args.get()[1]->isDefaultArgument())
9012 return false;
9013
9014 // fall through
9015 case 1:
9016 return !Args.get()[0]->isDefaultArgument();
9017 }
9018
9019 return false;
9020}
9021
John McCall60d7b3a2010-08-24 06:29:42 +00009022ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009023Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009024 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009025 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009026 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009027 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009028 unsigned ConstructKind,
9029 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009030 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009031
Douglas Gregor2f599792010-04-02 18:24:57 +00009032 // C++0x [class.copy]p34:
9033 // When certain criteria are met, an implementation is allowed to
9034 // omit the copy/move construction of a class object, even if the
9035 // copy/move constructor and/or destructor for the object have
9036 // side effects. [...]
9037 // - when a temporary class object that has not been bound to a
9038 // reference (12.2) would be copied/moved to a class object
9039 // with the same cv-unqualified type, the copy/move operation
9040 // can be omitted by constructing the temporary object
9041 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009042 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009043 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Douglas Gregor2f599792010-04-02 18:24:57 +00009044 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00009045 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009046 }
Mike Stump1eb44332009-09-09 15:08:12 +00009047
9048 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009049 Elidable, move(ExprArgs), HadMultipleCandidates,
9050 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009051}
9052
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009053/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9054/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009055ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009056Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9057 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009058 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009059 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009060 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009061 unsigned ConstructKind,
9062 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00009063 unsigned NumExprs = ExprArgs.size();
9064 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00009065
Eli Friedman5f2987c2012-02-02 03:46:19 +00009066 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009067 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009068 Constructor, Elidable, Exprs, NumExprs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009069 HadMultipleCandidates, /*FIXME*/false,
9070 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009071 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9072 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009073}
9074
Mike Stump1eb44332009-09-09 15:08:12 +00009075bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009076 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009077 MultiExprArg Exprs,
9078 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009079 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009080 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009081 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009082 move(Exprs), HadMultipleCandidates, false,
9083 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009084 if (TempResult.isInvalid())
9085 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009086
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009087 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009088 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009089 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009090 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009091 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009092
Anders Carlssonfe2de492009-08-25 05:18:00 +00009093 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009094}
9095
John McCall68c6c9a2010-02-02 09:10:11 +00009096void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009097 if (VD->isInvalidDecl()) return;
9098
John McCall68c6c9a2010-02-02 09:10:11 +00009099 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009100 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009101 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009102 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009103
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009104 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009105 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009106 CheckDestructorAccess(VD->getLocation(), Destructor,
9107 PDiag(diag::err_access_dtor_var)
9108 << VD->getDeclName()
9109 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009110 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009111
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009112 if (!VD->hasGlobalStorage()) return;
9113
9114 // Emit warning for non-trivial dtor in global scope (a real global,
9115 // class-static, function-static).
9116 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9117
9118 // TODO: this should be re-enabled for static locals by !CXAAtExit
9119 if (!VD->isStaticLocal())
9120 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009121}
9122
Douglas Gregor39da0b82009-09-09 23:08:42 +00009123/// \brief Given a constructor and the set of arguments provided for the
9124/// constructor, convert the arguments and add any required default arguments
9125/// to form a proper call to this constructor.
9126///
9127/// \returns true if an error occurred, false otherwise.
9128bool
9129Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9130 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009131 SourceLocation Loc,
Douglas Gregored878af2012-02-24 23:56:31 +00009132 ASTOwningVector<Expr*> &ConvertedArgs,
9133 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009134 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9135 unsigned NumArgs = ArgsPtr.size();
9136 Expr **Args = (Expr **)ArgsPtr.get();
9137
9138 const FunctionProtoType *Proto
9139 = Constructor->getType()->getAs<FunctionProtoType>();
9140 assert(Proto && "Constructor without a prototype?");
9141 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009142
9143 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009144 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009145 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009146 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009147 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009148
9149 VariadicCallType CallType =
9150 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009151 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009152 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9153 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009154 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009155 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009156
9157 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9158
Richard Smith831421f2012-06-25 20:30:08 +00009159 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9160 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009161
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009162 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009163}
9164
Anders Carlsson20d45d22009-12-12 00:32:00 +00009165static inline bool
9166CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9167 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009168 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009169 if (isa<NamespaceDecl>(DC)) {
9170 return SemaRef.Diag(FnDecl->getLocation(),
9171 diag::err_operator_new_delete_declared_in_namespace)
9172 << FnDecl->getDeclName();
9173 }
9174
9175 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009176 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009177 return SemaRef.Diag(FnDecl->getLocation(),
9178 diag::err_operator_new_delete_declared_static)
9179 << FnDecl->getDeclName();
9180 }
9181
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009182 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009183}
9184
Anders Carlsson156c78e2009-12-13 17:53:43 +00009185static inline bool
9186CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9187 CanQualType ExpectedResultType,
9188 CanQualType ExpectedFirstParamType,
9189 unsigned DependentParamTypeDiag,
9190 unsigned InvalidParamTypeDiag) {
9191 QualType ResultType =
9192 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9193
9194 // Check that the result type is not dependent.
9195 if (ResultType->isDependentType())
9196 return SemaRef.Diag(FnDecl->getLocation(),
9197 diag::err_operator_new_delete_dependent_result_type)
9198 << FnDecl->getDeclName() << ExpectedResultType;
9199
9200 // Check that the result type is what we expect.
9201 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9202 return SemaRef.Diag(FnDecl->getLocation(),
9203 diag::err_operator_new_delete_invalid_result_type)
9204 << FnDecl->getDeclName() << ExpectedResultType;
9205
9206 // A function template must have at least 2 parameters.
9207 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9208 return SemaRef.Diag(FnDecl->getLocation(),
9209 diag::err_operator_new_delete_template_too_few_parameters)
9210 << FnDecl->getDeclName();
9211
9212 // The function decl must have at least 1 parameter.
9213 if (FnDecl->getNumParams() == 0)
9214 return SemaRef.Diag(FnDecl->getLocation(),
9215 diag::err_operator_new_delete_too_few_parameters)
9216 << FnDecl->getDeclName();
9217
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009218 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009219 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9220 if (FirstParamType->isDependentType())
9221 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9222 << FnDecl->getDeclName() << ExpectedFirstParamType;
9223
9224 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009225 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009226 ExpectedFirstParamType)
9227 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9228 << FnDecl->getDeclName() << ExpectedFirstParamType;
9229
9230 return false;
9231}
9232
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009233static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009234CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009235 // C++ [basic.stc.dynamic.allocation]p1:
9236 // A program is ill-formed if an allocation function is declared in a
9237 // namespace scope other than global scope or declared static in global
9238 // scope.
9239 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9240 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009241
9242 CanQualType SizeTy =
9243 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9244
9245 // C++ [basic.stc.dynamic.allocation]p1:
9246 // The return type shall be void*. The first parameter shall have type
9247 // std::size_t.
9248 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9249 SizeTy,
9250 diag::err_operator_new_dependent_param_type,
9251 diag::err_operator_new_param_type))
9252 return true;
9253
9254 // C++ [basic.stc.dynamic.allocation]p1:
9255 // The first parameter shall not have an associated default argument.
9256 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009257 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009258 diag::err_operator_new_default_arg)
9259 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9260
9261 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009262}
9263
9264static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009265CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9266 // C++ [basic.stc.dynamic.deallocation]p1:
9267 // A program is ill-formed if deallocation functions are declared in a
9268 // namespace scope other than global scope or declared static in global
9269 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009270 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9271 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009272
9273 // C++ [basic.stc.dynamic.deallocation]p2:
9274 // Each deallocation function shall return void and its first parameter
9275 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009276 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9277 SemaRef.Context.VoidPtrTy,
9278 diag::err_operator_delete_dependent_param_type,
9279 diag::err_operator_delete_param_type))
9280 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009281
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009282 return false;
9283}
9284
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009285/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9286/// of this overloaded operator is well-formed. If so, returns false;
9287/// otherwise, emits appropriate diagnostics and returns true.
9288bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009289 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009290 "Expected an overloaded operator declaration");
9291
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009292 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9293
Mike Stump1eb44332009-09-09 15:08:12 +00009294 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009295 // The allocation and deallocation functions, operator new,
9296 // operator new[], operator delete and operator delete[], are
9297 // described completely in 3.7.3. The attributes and restrictions
9298 // found in the rest of this subclause do not apply to them unless
9299 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009300 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009301 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009302
Anders Carlssona3ccda52009-12-12 00:26:23 +00009303 if (Op == OO_New || Op == OO_Array_New)
9304 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009305
9306 // C++ [over.oper]p6:
9307 // An operator function shall either be a non-static member
9308 // function or be a non-member function and have at least one
9309 // parameter whose type is a class, a reference to a class, an
9310 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009311 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9312 if (MethodDecl->isStatic())
9313 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009314 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009315 } else {
9316 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009317 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9318 ParamEnd = FnDecl->param_end();
9319 Param != ParamEnd; ++Param) {
9320 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009321 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9322 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009323 ClassOrEnumParam = true;
9324 break;
9325 }
9326 }
9327
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009328 if (!ClassOrEnumParam)
9329 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009330 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009331 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009332 }
9333
9334 // C++ [over.oper]p8:
9335 // An operator function cannot have default arguments (8.3.6),
9336 // except where explicitly stated below.
9337 //
Mike Stump1eb44332009-09-09 15:08:12 +00009338 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009339 // (C++ [over.call]p1).
9340 if (Op != OO_Call) {
9341 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9342 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009343 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009344 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009345 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009346 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009347 }
9348 }
9349
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009350 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9351 { false, false, false }
9352#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9353 , { Unary, Binary, MemberOnly }
9354#include "clang/Basic/OperatorKinds.def"
9355 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009356
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009357 bool CanBeUnaryOperator = OperatorUses[Op][0];
9358 bool CanBeBinaryOperator = OperatorUses[Op][1];
9359 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009360
9361 // C++ [over.oper]p8:
9362 // [...] Operator functions cannot have more or fewer parameters
9363 // than the number required for the corresponding operator, as
9364 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009365 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009366 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009367 if (Op != OO_Call &&
9368 ((NumParams == 1 && !CanBeUnaryOperator) ||
9369 (NumParams == 2 && !CanBeBinaryOperator) ||
9370 (NumParams < 1) || (NumParams > 2))) {
9371 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009372 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009373 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009374 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009375 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009376 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009377 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009378 assert(CanBeBinaryOperator &&
9379 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009380 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009381 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009382
Chris Lattner416e46f2008-11-21 07:57:12 +00009383 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009384 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009385 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009386
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009387 // Overloaded operators other than operator() cannot be variadic.
9388 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009389 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009390 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009391 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009392 }
9393
9394 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009395 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9396 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009397 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009398 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009399 }
9400
9401 // C++ [over.inc]p1:
9402 // The user-defined function called operator++ implements the
9403 // prefix and postfix ++ operator. If this function is a member
9404 // function with no parameters, or a non-member function with one
9405 // parameter of class or enumeration type, it defines the prefix
9406 // increment operator ++ for objects of that type. If the function
9407 // is a member function with one parameter (which shall be of type
9408 // int) or a non-member function with two parameters (the second
9409 // of which shall be of type int), it defines the postfix
9410 // increment operator ++ for objects of that type.
9411 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9412 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9413 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009414 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009415 ParamIsInt = BT->getKind() == BuiltinType::Int;
9416
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009417 if (!ParamIsInt)
9418 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009419 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009420 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009421 }
9422
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009423 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009424}
Chris Lattner5a003a42008-12-17 07:09:26 +00009425
Sean Hunta6c058d2010-01-13 09:01:02 +00009426/// CheckLiteralOperatorDeclaration - Check whether the declaration
9427/// of this literal operator function is well-formed. If so, returns
9428/// false; otherwise, emits appropriate diagnostics and returns true.
9429bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009430 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009431 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9432 << FnDecl->getDeclName();
9433 return true;
9434 }
9435
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009436 if (FnDecl->isExternC()) {
9437 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9438 return true;
9439 }
9440
Sean Hunta6c058d2010-01-13 09:01:02 +00009441 bool Valid = false;
9442
Richard Smith36f5cfe2012-03-09 08:00:36 +00009443 // This might be the definition of a literal operator template.
9444 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9445 // This might be a specialization of a literal operator template.
9446 if (!TpDecl)
9447 TpDecl = FnDecl->getPrimaryTemplate();
9448
Sean Hunt216c2782010-04-07 23:11:06 +00009449 // template <char...> type operator "" name() is the only valid template
9450 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009451 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009452 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009453 // Must have only one template parameter
9454 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9455 if (Params->size() == 1) {
9456 NonTypeTemplateParmDecl *PmDecl =
9457 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009458
Sean Hunt216c2782010-04-07 23:11:06 +00009459 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009460 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9461 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9462 Valid = true;
9463 }
9464 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009465 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009466 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009467 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9468
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009469 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009470
Sean Hunt30019c02010-04-07 22:57:35 +00009471 // unsigned long long int, long double, and any character type are allowed
9472 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009473 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9474 Context.hasSameType(T, Context.LongDoubleTy) ||
9475 Context.hasSameType(T, Context.CharTy) ||
9476 Context.hasSameType(T, Context.WCharTy) ||
9477 Context.hasSameType(T, Context.Char16Ty) ||
9478 Context.hasSameType(T, Context.Char32Ty)) {
9479 if (++Param == FnDecl->param_end())
9480 Valid = true;
9481 goto FinishedParams;
9482 }
9483
Sean Hunt30019c02010-04-07 22:57:35 +00009484 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009485 const PointerType *PT = T->getAs<PointerType>();
9486 if (!PT)
9487 goto FinishedParams;
9488 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009489 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009490 goto FinishedParams;
9491 T = T.getUnqualifiedType();
9492
9493 // Move on to the second parameter;
9494 ++Param;
9495
9496 // If there is no second parameter, the first must be a const char *
9497 if (Param == FnDecl->param_end()) {
9498 if (Context.hasSameType(T, Context.CharTy))
9499 Valid = true;
9500 goto FinishedParams;
9501 }
9502
9503 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9504 // are allowed as the first parameter to a two-parameter function
9505 if (!(Context.hasSameType(T, Context.CharTy) ||
9506 Context.hasSameType(T, Context.WCharTy) ||
9507 Context.hasSameType(T, Context.Char16Ty) ||
9508 Context.hasSameType(T, Context.Char32Ty)))
9509 goto FinishedParams;
9510
9511 // The second and final parameter must be an std::size_t
9512 T = (*Param)->getType().getUnqualifiedType();
9513 if (Context.hasSameType(T, Context.getSizeType()) &&
9514 ++Param == FnDecl->param_end())
9515 Valid = true;
9516 }
9517
9518 // FIXME: This diagnostic is absolutely terrible.
9519FinishedParams:
9520 if (!Valid) {
9521 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9522 << FnDecl->getDeclName();
9523 return true;
9524 }
9525
Richard Smitha9e88b22012-03-09 08:16:22 +00009526 // A parameter-declaration-clause containing a default argument is not
9527 // equivalent to any of the permitted forms.
9528 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9529 ParamEnd = FnDecl->param_end();
9530 Param != ParamEnd; ++Param) {
9531 if ((*Param)->hasDefaultArg()) {
9532 Diag((*Param)->getDefaultArgRange().getBegin(),
9533 diag::err_literal_operator_default_argument)
9534 << (*Param)->getDefaultArgRange();
9535 break;
9536 }
9537 }
9538
Richard Smith2fb4ae32012-03-08 02:39:21 +00009539 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009540 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9541 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009542 // C++11 [usrlit.suffix]p1:
9543 // Literal suffix identifiers that do not start with an underscore
9544 // are reserved for future standardization.
9545 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009546 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009547
Sean Hunta6c058d2010-01-13 09:01:02 +00009548 return false;
9549}
9550
Douglas Gregor074149e2009-01-05 19:45:36 +00009551/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9552/// linkage specification, including the language and (if present)
9553/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9554/// the location of the language string literal, which is provided
9555/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9556/// the '{' brace. Otherwise, this linkage specification does not
9557/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009558Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9559 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009560 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009561 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009562 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009563 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009564 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009565 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009566 Language = LinkageSpecDecl::lang_cxx;
9567 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009568 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009569 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009570 }
Mike Stump1eb44332009-09-09 15:08:12 +00009571
Chris Lattnercc98eac2008-12-17 07:13:27 +00009572 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009573
Douglas Gregor074149e2009-01-05 19:45:36 +00009574 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009575 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009576 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009577 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009578 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009579}
9580
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009581/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009582/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9583/// valid, it's the position of the closing '}' brace in a linkage
9584/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009585Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009586 Decl *LinkageSpec,
9587 SourceLocation RBraceLoc) {
9588 if (LinkageSpec) {
9589 if (RBraceLoc.isValid()) {
9590 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9591 LSDecl->setRBraceLoc(RBraceLoc);
9592 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009593 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009594 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009595 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009596}
9597
Douglas Gregord308e622009-05-18 20:51:54 +00009598/// \brief Perform semantic analysis for the variable declaration that
9599/// occurs within a C++ catch clause, returning the newly-created
9600/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009601VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009602 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009603 SourceLocation StartLoc,
9604 SourceLocation Loc,
9605 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009606 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009607 QualType ExDeclType = TInfo->getType();
9608
Sebastian Redl4b07b292008-12-22 19:15:10 +00009609 // Arrays and functions decay.
9610 if (ExDeclType->isArrayType())
9611 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9612 else if (ExDeclType->isFunctionType())
9613 ExDeclType = Context.getPointerType(ExDeclType);
9614
9615 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9616 // The exception-declaration shall not denote a pointer or reference to an
9617 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009618 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009619 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009620 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009621 Invalid = true;
9622 }
Douglas Gregord308e622009-05-18 20:51:54 +00009623
Sebastian Redl4b07b292008-12-22 19:15:10 +00009624 QualType BaseType = ExDeclType;
9625 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009626 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009627 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009628 BaseType = Ptr->getPointeeType();
9629 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009630 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009631 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009632 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009633 BaseType = Ref->getPointeeType();
9634 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009635 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009636 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009637 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009638 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009639 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009640
Mike Stump1eb44332009-09-09 15:08:12 +00009641 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009642 RequireNonAbstractType(Loc, ExDeclType,
9643 diag::err_abstract_type_in_decl,
9644 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009645 Invalid = true;
9646
John McCall5a180392010-07-24 00:37:23 +00009647 // Only the non-fragile NeXT runtime currently supports C++ catches
9648 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009649 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009650 QualType T = ExDeclType;
9651 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9652 T = RT->getPointeeType();
9653
9654 if (T->isObjCObjectType()) {
9655 Diag(Loc, diag::err_objc_object_catch);
9656 Invalid = true;
9657 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009658 // FIXME: should this be a test for macosx-fragile specifically?
9659 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009660 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009661 }
9662 }
9663
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009664 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9665 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009666 ExDecl->setExceptionVariable(true);
9667
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009668 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009669 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009670 Invalid = true;
9671
Douglas Gregorc41b8782011-07-06 18:14:43 +00009672 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009673 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009674 // C++ [except.handle]p16:
9675 // The object declared in an exception-declaration or, if the
9676 // exception-declaration does not specify a name, a temporary (12.2) is
9677 // copy-initialized (8.5) from the exception object. [...]
9678 // The object is destroyed when the handler exits, after the destruction
9679 // of any automatic objects initialized within the handler.
9680 //
9681 // We just pretend to initialize the object with itself, then make sure
9682 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009683 QualType initType = ExDeclType;
9684
9685 InitializedEntity entity =
9686 InitializedEntity::InitializeVariable(ExDecl);
9687 InitializationKind initKind =
9688 InitializationKind::CreateCopy(Loc, SourceLocation());
9689
9690 Expr *opaqueValue =
9691 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9692 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9693 ExprResult result = sequence.Perform(*this, entity, initKind,
9694 MultiExprArg(&opaqueValue, 1));
9695 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009696 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009697 else {
9698 // If the constructor used was non-trivial, set this as the
9699 // "initializer".
9700 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9701 if (!construct->getConstructor()->isTrivial()) {
9702 Expr *init = MaybeCreateExprWithCleanups(construct);
9703 ExDecl->setInit(init);
9704 }
9705
9706 // And make sure it's destructable.
9707 FinalizeVarWithDestructor(ExDecl, recordType);
9708 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009709 }
9710 }
9711
Douglas Gregord308e622009-05-18 20:51:54 +00009712 if (Invalid)
9713 ExDecl->setInvalidDecl();
9714
9715 return ExDecl;
9716}
9717
9718/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9719/// handler.
John McCalld226f652010-08-21 09:40:31 +00009720Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009721 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009722 bool Invalid = D.isInvalidType();
9723
9724 // Check for unexpanded parameter packs.
9725 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9726 UPPC_ExceptionType)) {
9727 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9728 D.getIdentifierLoc());
9729 Invalid = true;
9730 }
9731
Sebastian Redl4b07b292008-12-22 19:15:10 +00009732 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009733 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009734 LookupOrdinaryName,
9735 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009736 // The scope should be freshly made just for us. There is just no way
9737 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009738 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009739 if (PrevDecl->isTemplateParameter()) {
9740 // Maybe we will complain about the shadowed template parameter.
9741 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009742 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009743 }
9744 }
9745
Chris Lattnereaaebc72009-04-25 08:06:05 +00009746 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009747 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9748 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009749 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009750 }
9751
Douglas Gregor83cb9422010-09-09 17:09:21 +00009752 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009753 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009754 D.getIdentifierLoc(),
9755 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009756 if (Invalid)
9757 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009758
Sebastian Redl4b07b292008-12-22 19:15:10 +00009759 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009760 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009761 PushOnScopeChains(ExDecl, S);
9762 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009763 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009764
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009765 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009766 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009767}
Anders Carlssonfb311762009-03-14 00:25:26 +00009768
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009769Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009770 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009771 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009772 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009773 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009774
Richard Smithe3f470a2012-07-11 22:37:56 +00009775 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9776 return 0;
9777
9778 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9779 AssertMessage, RParenLoc, false);
9780}
9781
9782Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9783 Expr *AssertExpr,
9784 StringLiteral *AssertMessage,
9785 SourceLocation RParenLoc,
9786 bool Failed) {
9787 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9788 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009789 // In a static_assert-declaration, the constant-expression shall be a
9790 // constant expression that can be contextually converted to bool.
9791 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9792 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009793 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009794
Richard Smithdaaefc52011-12-14 23:32:26 +00009795 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009796 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009797 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009798 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009799 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009800
Richard Smithe3f470a2012-07-11 22:37:56 +00009801 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009802 llvm::SmallString<256> MsgBuffer;
9803 llvm::raw_svector_ostream Msg(MsgBuffer);
9804 AssertMessage->printPretty(Msg, Context, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009805 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009806 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009807 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009808 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009809 }
Mike Stump1eb44332009-09-09 15:08:12 +00009810
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009811 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009812 AssertExpr, AssertMessage, RParenLoc,
9813 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009814
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009815 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009816 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009817}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009818
Douglas Gregor1d869352010-04-07 16:53:43 +00009819/// \brief Perform semantic analysis of the given friend type declaration.
9820///
9821/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009822FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9823 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009824 TypeSourceInfo *TSInfo) {
9825 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9826
9827 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009828 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009829
Richard Smith6b130222011-10-18 21:39:00 +00009830 // C++03 [class.friend]p2:
9831 // An elaborated-type-specifier shall be used in a friend declaration
9832 // for a class.*
9833 //
9834 // * The class-key of the elaborated-type-specifier is required.
9835 if (!ActiveTemplateInstantiations.empty()) {
9836 // Do not complain about the form of friend template types during
9837 // template instantiation; we will already have complained when the
9838 // template was declared.
9839 } else if (!T->isElaboratedTypeSpecifier()) {
9840 // If we evaluated the type to a record type, suggest putting
9841 // a tag in front.
9842 if (const RecordType *RT = T->getAs<RecordType>()) {
9843 RecordDecl *RD = RT->getDecl();
9844
9845 std::string InsertionText = std::string(" ") + RD->getKindName();
9846
9847 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009848 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009849 diag::warn_cxx98_compat_unelaborated_friend_type :
9850 diag::ext_unelaborated_friend_type)
9851 << (unsigned) RD->getTagKind()
9852 << T
9853 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9854 InsertionText);
9855 } else {
9856 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009857 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009858 diag::warn_cxx98_compat_nonclass_type_friend :
9859 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009860 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009861 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009862 }
Richard Smith6b130222011-10-18 21:39:00 +00009863 } else if (T->getAs<EnumType>()) {
9864 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009865 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009866 diag::warn_cxx98_compat_enum_friend :
9867 diag::ext_enum_friend)
9868 << T
9869 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009870 }
9871
Douglas Gregor06245bf2010-04-07 17:57:12 +00009872 // C++0x [class.friend]p3:
9873 // If the type specifier in a friend declaration designates a (possibly
9874 // cv-qualified) class type, that class is declared as a friend; otherwise,
9875 // the friend declaration is ignored.
9876
9877 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9878 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009879
Abramo Bagnara0216df82011-10-29 20:52:52 +00009880 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009881}
9882
John McCall9a34edb2010-10-19 01:40:49 +00009883/// Handle a friend tag declaration where the scope specifier was
9884/// templated.
9885Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9886 unsigned TagSpec, SourceLocation TagLoc,
9887 CXXScopeSpec &SS,
9888 IdentifierInfo *Name, SourceLocation NameLoc,
9889 AttributeList *Attr,
9890 MultiTemplateParamsArg TempParamLists) {
9891 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9892
9893 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009894 bool Invalid = false;
9895
9896 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009897 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
John McCall9a34edb2010-10-19 01:40:49 +00009898 TempParamLists.get(),
9899 TempParamLists.size(),
9900 /*friend*/ true,
9901 isExplicitSpecialization,
9902 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009903 if (TemplateParams->size() > 0) {
9904 // This is a declaration of a class template.
9905 if (Invalid)
9906 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009907
Eric Christopher4110e132011-07-21 05:34:24 +00009908 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9909 SS, Name, NameLoc, Attr,
9910 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009911 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009912 TempParamLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009913 (TemplateParameterList**) TempParamLists.release()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009914 } else {
9915 // The "template<>" header is extraneous.
9916 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9917 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9918 isExplicitSpecialization = true;
9919 }
9920 }
9921
9922 if (Invalid) return 0;
9923
John McCall9a34edb2010-10-19 01:40:49 +00009924 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009925 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCall9a34edb2010-10-19 01:40:49 +00009926 if (TempParamLists.get()[I]->size()) {
9927 isAllExplicitSpecializations = false;
9928 break;
9929 }
9930 }
9931
9932 // FIXME: don't ignore attributes.
9933
9934 // If it's explicit specializations all the way down, just forget
9935 // about the template header and build an appropriate non-templated
9936 // friend. TODO: for source fidelity, remember the headers.
9937 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009938 if (SS.isEmpty()) {
9939 bool Owned = false;
9940 bool IsDependent = false;
9941 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9942 Attr, AS_public,
9943 /*ModulePrivateLoc=*/SourceLocation(),
9944 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009945 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009946 /*ScopedEnumUsesClassTag=*/false,
9947 /*UnderlyingType=*/TypeResult());
9948 }
9949
Douglas Gregor2494dd02011-03-01 01:34:45 +00009950 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009951 ElaboratedTypeKeyword Keyword
9952 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009953 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009954 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009955 if (T.isNull())
9956 return 0;
9957
9958 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9959 if (isa<DependentNameType>(T)) {
9960 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009961 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009962 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009963 TL.setNameLoc(NameLoc);
9964 } else {
9965 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009966 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009967 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009968 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9969 }
9970
9971 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9972 TSI, FriendLoc);
9973 Friend->setAccess(AS_public);
9974 CurContext->addDecl(Friend);
9975 return Friend;
9976 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009977
9978 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9979
9980
John McCall9a34edb2010-10-19 01:40:49 +00009981
9982 // Handle the case of a templated-scope friend class. e.g.
9983 // template <class T> class A<T>::B;
9984 // FIXME: we don't support these right now.
9985 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
9986 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
9987 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9988 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009989 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009990 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +00009991 TL.setNameLoc(NameLoc);
9992
9993 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9994 TSI, FriendLoc);
9995 Friend->setAccess(AS_public);
9996 Friend->setUnsupportedFriend(true);
9997 CurContext->addDecl(Friend);
9998 return Friend;
9999}
10000
10001
John McCalldd4a3b02009-09-16 22:47:08 +000010002/// Handle a friend type declaration. This works in tandem with
10003/// ActOnTag.
10004///
10005/// Notes on friend class templates:
10006///
10007/// We generally treat friend class declarations as if they were
10008/// declaring a class. So, for example, the elaborated type specifier
10009/// in a friend declaration is required to obey the restrictions of a
10010/// class-head (i.e. no typedefs in the scope chain), template
10011/// parameters are required to match up with simple template-ids, &c.
10012/// However, unlike when declaring a template specialization, it's
10013/// okay to refer to a template specialization without an empty
10014/// template parameter declaration, e.g.
10015/// friend class A<T>::B<unsigned>;
10016/// We permit this as a special case; if there are any template
10017/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010018/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010019Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010020 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010021 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010022
10023 assert(DS.isFriendSpecified());
10024 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10025
John McCalldd4a3b02009-09-16 22:47:08 +000010026 // Try to convert the decl specifier to a type. This works for
10027 // friend templates because ActOnTag never produces a ClassTemplateDecl
10028 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010029 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010030 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10031 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010032 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010033 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010034
Douglas Gregor6ccab972010-12-16 01:14:37 +000010035 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10036 return 0;
10037
John McCalldd4a3b02009-09-16 22:47:08 +000010038 // This is definitely an error in C++98. It's probably meant to
10039 // be forbidden in C++0x, too, but the specification is just
10040 // poorly written.
10041 //
10042 // The problem is with declarations like the following:
10043 // template <T> friend A<T>::foo;
10044 // where deciding whether a class C is a friend or not now hinges
10045 // on whether there exists an instantiation of A that causes
10046 // 'foo' to equal C. There are restrictions on class-heads
10047 // (which we declare (by fiat) elaborated friend declarations to
10048 // be) that makes this tractable.
10049 //
10050 // FIXME: handle "template <> friend class A<T>;", which
10051 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010052 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010053 Diag(Loc, diag::err_tagless_friend_type_template)
10054 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010055 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010056 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010057
John McCall02cace72009-08-28 07:59:38 +000010058 // C++98 [class.friend]p1: A friend of a class is a function
10059 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010060 // This is fixed in DR77, which just barely didn't make the C++03
10061 // deadline. It's also a very silly restriction that seriously
10062 // affects inner classes and which nobody else seems to implement;
10063 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010064 //
10065 // But note that we could warn about it: it's always useless to
10066 // friend one of your own members (it's not, however, worthless to
10067 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010068
John McCalldd4a3b02009-09-16 22:47:08 +000010069 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010070 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010071 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010072 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +000010073 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +000010074 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010075 DS.getFriendSpecLoc());
10076 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010077 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010078
10079 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010080 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010081
John McCalldd4a3b02009-09-16 22:47:08 +000010082 D->setAccess(AS_public);
10083 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010084
John McCalld226f652010-08-21 09:40:31 +000010085 return D;
John McCall02cace72009-08-28 07:59:38 +000010086}
10087
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010088Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010089 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010090 const DeclSpec &DS = D.getDeclSpec();
10091
10092 assert(DS.isFriendSpecified());
10093 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10094
10095 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010096 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010097
10098 // C++ [class.friend]p1
10099 // A friend of a class is a function or class....
10100 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010101 // It *doesn't* see through dependent types, which is correct
10102 // according to [temp.arg.type]p3:
10103 // If a declaration acquires a function type through a
10104 // type dependent on a template-parameter and this causes
10105 // a declaration that does not use the syntactic form of a
10106 // function declarator to have a function type, the program
10107 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010108 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010109 Diag(Loc, diag::err_unexpected_friend);
10110
10111 // It might be worthwhile to try to recover by creating an
10112 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010113 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010114 }
10115
10116 // C++ [namespace.memdef]p3
10117 // - If a friend declaration in a non-local class first declares a
10118 // class or function, the friend class or function is a member
10119 // of the innermost enclosing namespace.
10120 // - The name of the friend is not found by simple name lookup
10121 // until a matching declaration is provided in that namespace
10122 // scope (either before or after the class declaration granting
10123 // friendship).
10124 // - If a friend function is called, its name may be found by the
10125 // name lookup that considers functions from namespaces and
10126 // classes associated with the types of the function arguments.
10127 // - When looking for a prior declaration of a class or a function
10128 // declared as a friend, scopes outside the innermost enclosing
10129 // namespace scope are not considered.
10130
John McCall337ec3d2010-10-12 23:13:28 +000010131 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010132 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10133 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010134 assert(Name);
10135
Douglas Gregor6ccab972010-12-16 01:14:37 +000010136 // Check for unexpanded parameter packs.
10137 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10138 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10139 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10140 return 0;
10141
John McCall67d1a672009-08-06 02:15:43 +000010142 // The context we found the declaration in, or in which we should
10143 // create the declaration.
10144 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010145 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010146 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010147 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010148
John McCall337ec3d2010-10-12 23:13:28 +000010149 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010150
John McCall337ec3d2010-10-12 23:13:28 +000010151 // There are four cases here.
10152 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010153 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010154 // there as appropriate.
10155 // Recover from invalid scope qualifiers as if they just weren't there.
10156 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010157 // C++0x [namespace.memdef]p3:
10158 // If the name in a friend declaration is neither qualified nor
10159 // a template-id and the declaration is a function or an
10160 // elaborated-type-specifier, the lookup to determine whether
10161 // the entity has been previously declared shall not consider
10162 // any scopes outside the innermost enclosing namespace.
10163 // C++0x [class.friend]p11:
10164 // If a friend declaration appears in a local class and the name
10165 // specified is an unqualified name, a prior declaration is
10166 // looked up without considering scopes that are outside the
10167 // innermost enclosing non-class scope. For a friend function
10168 // declaration, if there is no prior declaration, the program is
10169 // ill-formed.
10170 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010171 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010172
John McCall29ae6e52010-10-13 05:45:15 +000010173 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010174 DC = CurContext;
10175 while (true) {
10176 // Skip class contexts. If someone can cite chapter and verse
10177 // for this behavior, that would be nice --- it's what GCC and
10178 // EDG do, and it seems like a reasonable intent, but the spec
10179 // really only says that checks for unqualified existing
10180 // declarations should stop at the nearest enclosing namespace,
10181 // not that they should only consider the nearest enclosing
10182 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010183 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010184 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010185
John McCall68263142009-11-18 22:49:29 +000010186 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010187
10188 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010189 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010190 break;
John McCall29ae6e52010-10-13 05:45:15 +000010191
John McCall8a407372010-10-14 22:22:28 +000010192 if (isTemplateId) {
10193 if (isa<TranslationUnitDecl>(DC)) break;
10194 } else {
10195 if (DC->isFileContext()) break;
10196 }
John McCall67d1a672009-08-06 02:15:43 +000010197 DC = DC->getParent();
10198 }
10199
10200 // C++ [class.friend]p1: A friend of a class is a function or
10201 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010202 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010203 // Most C++ 98 compilers do seem to give an error here, so
10204 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010205 if (!Previous.empty() && DC->Equals(CurContext))
10206 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010207 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010208 diag::warn_cxx98_compat_friend_is_member :
10209 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010210
John McCall380aaa42010-10-13 06:22:15 +000010211 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010212
Douglas Gregor883af832011-10-10 01:11:59 +000010213 // C++ [class.friend]p6:
10214 // A function can be defined in a friend declaration of a class if and
10215 // only if the class is a non-local class (9.8), the function name is
10216 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010217 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010218 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10219 }
10220
John McCall337ec3d2010-10-12 23:13:28 +000010221 // - There's a non-dependent scope specifier, in which case we
10222 // compute it and do a previous lookup there for a function
10223 // or function template.
10224 } else if (!SS.getScopeRep()->isDependent()) {
10225 DC = computeDeclContext(SS);
10226 if (!DC) return 0;
10227
10228 if (RequireCompleteDeclContext(SS, DC)) return 0;
10229
10230 LookupQualifiedName(Previous, DC);
10231
10232 // Ignore things found implicitly in the wrong scope.
10233 // TODO: better diagnostics for this case. Suggesting the right
10234 // qualified scope would be nice...
10235 LookupResult::Filter F = Previous.makeFilter();
10236 while (F.hasNext()) {
10237 NamedDecl *D = F.next();
10238 if (!DC->InEnclosingNamespaceSetOf(
10239 D->getDeclContext()->getRedeclContext()))
10240 F.erase();
10241 }
10242 F.done();
10243
10244 if (Previous.empty()) {
10245 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010246 Diag(Loc, diag::err_qualified_friend_not_found)
10247 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010248 return 0;
10249 }
10250
10251 // C++ [class.friend]p1: A friend of a class is a function or
10252 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010253 if (DC->Equals(CurContext))
10254 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010255 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010256 diag::warn_cxx98_compat_friend_is_member :
10257 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010258
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010259 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010260 // C++ [class.friend]p6:
10261 // A function can be defined in a friend declaration of a class if and
10262 // only if the class is a non-local class (9.8), the function name is
10263 // unqualified, and the function has namespace scope.
10264 SemaDiagnosticBuilder DB
10265 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10266
10267 DB << SS.getScopeRep();
10268 if (DC->isFileContext())
10269 DB << FixItHint::CreateRemoval(SS.getRange());
10270 SS.clear();
10271 }
John McCall337ec3d2010-10-12 23:13:28 +000010272
10273 // - There's a scope specifier that does not match any template
10274 // parameter lists, in which case we use some arbitrary context,
10275 // create a method or method template, and wait for instantiation.
10276 // - There's a scope specifier that does match some template
10277 // parameter lists, which we don't handle right now.
10278 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010279 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010280 // C++ [class.friend]p6:
10281 // A function can be defined in a friend declaration of a class if and
10282 // only if the class is a non-local class (9.8), the function name is
10283 // unqualified, and the function has namespace scope.
10284 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10285 << SS.getScopeRep();
10286 }
10287
John McCall337ec3d2010-10-12 23:13:28 +000010288 DC = CurContext;
10289 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010290 }
Douglas Gregor883af832011-10-10 01:11:59 +000010291
John McCall29ae6e52010-10-13 05:45:15 +000010292 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010293 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010294 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10295 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10296 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010297 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010298 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10299 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010300 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010301 }
John McCall67d1a672009-08-06 02:15:43 +000010302 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010303
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010304 // FIXME: This is an egregious hack to cope with cases where the scope stack
10305 // does not contain the declaration context, i.e., in an out-of-line
10306 // definition of a class.
10307 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10308 if (!DCScope) {
10309 FakeDCScope.setEntity(DC);
10310 DCScope = &FakeDCScope;
10311 }
10312
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010313 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010314 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
10315 move(TemplateParams), AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010316 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010317
Douglas Gregor182ddf02009-09-28 00:08:27 +000010318 assert(ND->getDeclContext() == DC);
10319 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010320
John McCallab88d972009-08-31 22:39:49 +000010321 // Add the function declaration to the appropriate lookup tables,
10322 // adjusting the redeclarations list as necessary. We don't
10323 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010324 //
John McCallab88d972009-08-31 22:39:49 +000010325 // Also update the scope-based lookup if the target context's
10326 // lookup context is in lexical scope.
10327 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010328 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010329 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010330 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010331 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010332 }
John McCall02cace72009-08-28 07:59:38 +000010333
10334 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010335 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010336 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010337 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010338 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010339
John McCall337ec3d2010-10-12 23:13:28 +000010340 if (ND->isInvalidDecl())
10341 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +000010342 else {
10343 FunctionDecl *FD;
10344 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10345 FD = FTD->getTemplatedDecl();
10346 else
10347 FD = cast<FunctionDecl>(ND);
10348
10349 // Mark templated-scope function declarations as unsupported.
10350 if (FD->getNumTemplateParameterLists())
10351 FrD->setUnsupportedFriend(true);
10352 }
John McCall337ec3d2010-10-12 23:13:28 +000010353
John McCalld226f652010-08-21 09:40:31 +000010354 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010355}
10356
John McCalld226f652010-08-21 09:40:31 +000010357void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10358 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010359
Sebastian Redl50de12f2009-03-24 22:27:57 +000010360 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10361 if (!Fn) {
10362 Diag(DelLoc, diag::err_deleted_non_function);
10363 return;
10364 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010365 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010366 // Don't consider the implicit declaration we generate for explicit
10367 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010368 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10369 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010370 Diag(DelLoc, diag::err_deleted_decl_not_first);
10371 Diag(Prev->getLocation(), diag::note_previous_declaration);
10372 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010373 // If the declaration wasn't the first, we delete the function anyway for
10374 // recovery.
10375 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010376 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010377
10378 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10379 if (!MD)
10380 return;
10381
10382 // A deleted special member function is trivial if the corresponding
10383 // implicitly-declared function would have been.
10384 switch (getSpecialMember(MD)) {
10385 case CXXInvalid:
10386 break;
10387 case CXXDefaultConstructor:
10388 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10389 break;
10390 case CXXCopyConstructor:
10391 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10392 break;
10393 case CXXMoveConstructor:
10394 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10395 break;
10396 case CXXCopyAssignment:
10397 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10398 break;
10399 case CXXMoveAssignment:
10400 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10401 break;
10402 case CXXDestructor:
10403 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10404 break;
10405 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010406}
Sebastian Redl13e88542009-04-27 21:33:24 +000010407
Sean Hunte4246a62011-05-12 06:15:49 +000010408void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10409 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10410
10411 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010412 if (MD->getParent()->isDependentType()) {
10413 MD->setDefaulted();
10414 MD->setExplicitlyDefaulted();
10415 return;
10416 }
10417
Sean Hunte4246a62011-05-12 06:15:49 +000010418 CXXSpecialMember Member = getSpecialMember(MD);
10419 if (Member == CXXInvalid) {
10420 Diag(DefaultLoc, diag::err_default_special_members);
10421 return;
10422 }
10423
10424 MD->setDefaulted();
10425 MD->setExplicitlyDefaulted();
10426
Sean Huntcd10dec2011-05-23 23:14:04 +000010427 // If this definition appears within the record, do the checking when
10428 // the record is complete.
10429 const FunctionDecl *Primary = MD;
10430 if (MD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
10431 // Find the uninstantiated declaration that actually had the '= default'
10432 // on it.
10433 MD->getTemplateInstantiationPattern()->isDefined(Primary);
10434
10435 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010436 return;
10437
Richard Smithb9d0b762012-07-27 04:22:15 +000010438 CheckExplicitlyDefaultedSpecialMember(MD);
10439
Sean Hunte4246a62011-05-12 06:15:49 +000010440 switch (Member) {
10441 case CXXDefaultConstructor: {
10442 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010443 if (!CD->isInvalidDecl())
10444 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10445 break;
10446 }
10447
10448 case CXXCopyConstructor: {
10449 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010450 if (!CD->isInvalidDecl())
10451 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010452 break;
10453 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010454
Sean Hunt2b188082011-05-14 05:23:28 +000010455 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010456 if (!MD->isInvalidDecl())
10457 DefineImplicitCopyAssignment(DefaultLoc, MD);
10458 break;
10459 }
10460
Sean Huntcb45a0f2011-05-12 22:46:25 +000010461 case CXXDestructor: {
10462 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010463 if (!DD->isInvalidDecl())
10464 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010465 break;
10466 }
10467
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010468 case CXXMoveConstructor: {
10469 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010470 if (!CD->isInvalidDecl())
10471 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010472 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010473 }
Sean Hunt82713172011-05-25 23:16:36 +000010474
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010475 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010476 if (!MD->isInvalidDecl())
10477 DefineImplicitMoveAssignment(DefaultLoc, MD);
10478 break;
10479 }
10480
10481 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010482 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010483 }
10484 } else {
10485 Diag(DefaultLoc, diag::err_default_special_members);
10486 }
10487}
10488
Sebastian Redl13e88542009-04-27 21:33:24 +000010489static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010490 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010491 Stmt *SubStmt = *CI;
10492 if (!SubStmt)
10493 continue;
10494 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010495 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010496 diag::err_return_in_constructor_handler);
10497 if (!isa<Expr>(SubStmt))
10498 SearchForReturnInStmt(Self, SubStmt);
10499 }
10500}
10501
10502void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10503 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10504 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10505 SearchForReturnInStmt(*this, Handler);
10506 }
10507}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010508
Mike Stump1eb44332009-09-09 15:08:12 +000010509bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010510 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010511 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10512 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010513
Chandler Carruth73857792010-02-15 11:53:20 +000010514 if (Context.hasSameType(NewTy, OldTy) ||
10515 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010516 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010517
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010518 // Check if the return types are covariant
10519 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010520
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010521 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010522 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10523 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010524 NewClassTy = NewPT->getPointeeType();
10525 OldClassTy = OldPT->getPointeeType();
10526 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010527 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10528 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10529 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10530 NewClassTy = NewRT->getPointeeType();
10531 OldClassTy = OldRT->getPointeeType();
10532 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010533 }
10534 }
Mike Stump1eb44332009-09-09 15:08:12 +000010535
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010536 // The return types aren't either both pointers or references to a class type.
10537 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010538 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010539 diag::err_different_return_type_for_overriding_virtual_function)
10540 << New->getDeclName() << NewTy << OldTy;
10541 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010542
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010543 return true;
10544 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010545
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010546 // C++ [class.virtual]p6:
10547 // If the return type of D::f differs from the return type of B::f, the
10548 // class type in the return type of D::f shall be complete at the point of
10549 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010550 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10551 if (!RT->isBeingDefined() &&
10552 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010553 diag::err_covariant_return_incomplete,
10554 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010555 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010556 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010557
Douglas Gregora4923eb2009-11-16 21:35:15 +000010558 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010559 // Check if the new class derives from the old class.
10560 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10561 Diag(New->getLocation(),
10562 diag::err_covariant_return_not_derived)
10563 << New->getDeclName() << NewTy << OldTy;
10564 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10565 return true;
10566 }
Mike Stump1eb44332009-09-09 15:08:12 +000010567
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010568 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010569 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010570 diag::err_covariant_return_inaccessible_base,
10571 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10572 // FIXME: Should this point to the return type?
10573 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010574 // FIXME: this note won't trigger for delayed access control
10575 // diagnostics, and it's impossible to get an undelayed error
10576 // here from access control during the original parse because
10577 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010578 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10579 return true;
10580 }
10581 }
Mike Stump1eb44332009-09-09 15:08:12 +000010582
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010583 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010584 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010585 Diag(New->getLocation(),
10586 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010587 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010588 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10589 return true;
10590 };
Mike Stump1eb44332009-09-09 15:08:12 +000010591
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010592
10593 // The new class type must have the same or less qualifiers as the old type.
10594 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10595 Diag(New->getLocation(),
10596 diag::err_covariant_return_type_class_type_more_qualified)
10597 << New->getDeclName() << NewTy << OldTy;
10598 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10599 return true;
10600 };
Mike Stump1eb44332009-09-09 15:08:12 +000010601
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010602 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010603}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010604
Douglas Gregor4ba31362009-12-01 17:24:26 +000010605/// \brief Mark the given method pure.
10606///
10607/// \param Method the method to be marked pure.
10608///
10609/// \param InitRange the source range that covers the "0" initializer.
10610bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010611 SourceLocation EndLoc = InitRange.getEnd();
10612 if (EndLoc.isValid())
10613 Method->setRangeEnd(EndLoc);
10614
Douglas Gregor4ba31362009-12-01 17:24:26 +000010615 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10616 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010617 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010618 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010619
10620 if (!Method->isInvalidDecl())
10621 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10622 << Method->getDeclName() << InitRange;
10623 return true;
10624}
10625
Douglas Gregor552e2992012-02-21 02:22:07 +000010626/// \brief Determine whether the given declaration is a static data member.
10627static bool isStaticDataMember(Decl *D) {
10628 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10629 if (!Var)
10630 return false;
10631
10632 return Var->isStaticDataMember();
10633}
John McCall731ad842009-12-19 09:28:58 +000010634/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10635/// an initializer for the out-of-line declaration 'Dcl'. The scope
10636/// is a fresh scope pushed for just this purpose.
10637///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010638/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10639/// static data member of class X, names should be looked up in the scope of
10640/// class X.
John McCalld226f652010-08-21 09:40:31 +000010641void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010642 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010643 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010644
John McCall731ad842009-12-19 09:28:58 +000010645 // We should only get called for declarations with scope specifiers, like:
10646 // int foo::bar;
10647 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010648 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010649
10650 // If we are parsing the initializer for a static data member, push a
10651 // new expression evaluation context that is associated with this static
10652 // data member.
10653 if (isStaticDataMember(D))
10654 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010655}
10656
10657/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010658/// initializer for the out-of-line declaration 'D'.
10659void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010660 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010661 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010662
Douglas Gregor552e2992012-02-21 02:22:07 +000010663 if (isStaticDataMember(D))
10664 PopExpressionEvaluationContext();
10665
John McCall731ad842009-12-19 09:28:58 +000010666 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010667 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010668}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010669
10670/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10671/// C++ if/switch/while/for statement.
10672/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010673DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010674 // C++ 6.4p2:
10675 // The declarator shall not specify a function or an array.
10676 // The type-specifier-seq shall not contain typedef and shall not declare a
10677 // new class or enumeration.
10678 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10679 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010680
10681 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010682 if (!Dcl)
10683 return true;
10684
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010685 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10686 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010687 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010688 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010689 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010690
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010691 return Dcl;
10692}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010693
Douglas Gregordfe65432011-07-28 19:11:31 +000010694void Sema::LoadExternalVTableUses() {
10695 if (!ExternalSource)
10696 return;
10697
10698 SmallVector<ExternalVTableUse, 4> VTables;
10699 ExternalSource->ReadUsedVTables(VTables);
10700 SmallVector<VTableUse, 4> NewUses;
10701 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10702 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10703 = VTablesUsed.find(VTables[I].Record);
10704 // Even if a definition wasn't required before, it may be required now.
10705 if (Pos != VTablesUsed.end()) {
10706 if (!Pos->second && VTables[I].DefinitionRequired)
10707 Pos->second = true;
10708 continue;
10709 }
10710
10711 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10712 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10713 }
10714
10715 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10716}
10717
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010718void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10719 bool DefinitionRequired) {
10720 // Ignore any vtable uses in unevaluated operands or for classes that do
10721 // not have a vtable.
10722 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10723 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010724 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010725 return;
10726
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010727 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010728 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010729 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10730 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10731 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10732 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010733 // If we already had an entry, check to see if we are promoting this vtable
10734 // to required a definition. If so, we need to reappend to the VTableUses
10735 // list, since we may have already processed the first entry.
10736 if (DefinitionRequired && !Pos.first->second) {
10737 Pos.first->second = true;
10738 } else {
10739 // Otherwise, we can early exit.
10740 return;
10741 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010742 }
10743
10744 // Local classes need to have their virtual members marked
10745 // immediately. For all other classes, we mark their virtual members
10746 // at the end of the translation unit.
10747 if (Class->isLocalClass())
10748 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010749 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010750 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010751}
10752
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010753bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010754 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010755 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010756 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010757
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010758 // Note: The VTableUses vector could grow as a result of marking
10759 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010760 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010761 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010762 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010763 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010764 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010765 if (!Class)
10766 continue;
10767
10768 SourceLocation Loc = VTableUses[I].second;
10769
Richard Smithb9d0b762012-07-27 04:22:15 +000010770 bool DefineVTable = true;
10771
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010772 // If this class has a key function, but that key function is
10773 // defined in another translation unit, we don't need to emit the
10774 // vtable even though we're using it.
10775 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010776 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010777 switch (KeyFunction->getTemplateSpecializationKind()) {
10778 case TSK_Undeclared:
10779 case TSK_ExplicitSpecialization:
10780 case TSK_ExplicitInstantiationDeclaration:
10781 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010782 DefineVTable = false;
10783 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010784
10785 case TSK_ExplicitInstantiationDefinition:
10786 case TSK_ImplicitInstantiation:
10787 // We will be instantiating the key function.
10788 break;
10789 }
10790 } else if (!KeyFunction) {
10791 // If we have a class with no key function that is the subject
10792 // of an explicit instantiation declaration, suppress the
10793 // vtable; it will live with the explicit instantiation
10794 // definition.
10795 bool IsExplicitInstantiationDeclaration
10796 = Class->getTemplateSpecializationKind()
10797 == TSK_ExplicitInstantiationDeclaration;
10798 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10799 REnd = Class->redecls_end();
10800 R != REnd; ++R) {
10801 TemplateSpecializationKind TSK
10802 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10803 if (TSK == TSK_ExplicitInstantiationDeclaration)
10804 IsExplicitInstantiationDeclaration = true;
10805 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10806 IsExplicitInstantiationDeclaration = false;
10807 break;
10808 }
10809 }
10810
10811 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010812 DefineVTable = false;
10813 }
10814
10815 // The exception specifications for all virtual members may be needed even
10816 // if we are not providing an authoritative form of the vtable in this TU.
10817 // We may choose to emit it available_externally anyway.
10818 if (!DefineVTable) {
10819 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10820 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010821 }
10822
10823 // Mark all of the virtual members of this class as referenced, so
10824 // that we can build a vtable. Then, tell the AST consumer that a
10825 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010826 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010827 MarkVirtualMembersReferenced(Loc, Class);
10828 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10829 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10830
10831 // Optionally warn if we're emitting a weak vtable.
10832 if (Class->getLinkage() == ExternalLinkage &&
10833 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010834 const FunctionDecl *KeyFunctionDef = 0;
10835 if (!KeyFunction ||
10836 (KeyFunction->hasBody(KeyFunctionDef) &&
10837 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010838 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10839 TSK_ExplicitInstantiationDefinition
10840 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10841 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010842 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010843 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010844 VTableUses.clear();
10845
Douglas Gregor78844032011-04-22 22:25:37 +000010846 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010847}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010848
Richard Smithb9d0b762012-07-27 04:22:15 +000010849void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10850 const CXXRecordDecl *RD) {
10851 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10852 E = RD->method_end(); I != E; ++I)
10853 if ((*I)->isVirtual() && !(*I)->isPure())
10854 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10855}
10856
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010857void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10858 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010859 // Mark all functions which will appear in RD's vtable as used.
10860 CXXFinalOverriderMap FinalOverriders;
10861 RD->getFinalOverriders(FinalOverriders);
10862 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10863 E = FinalOverriders.end();
10864 I != E; ++I) {
10865 for (OverridingMethods::const_iterator OI = I->second.begin(),
10866 OE = I->second.end();
10867 OI != OE; ++OI) {
10868 assert(OI->second.size() > 0 && "no final overrider");
10869 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010870
Richard Smithff817f72012-07-07 06:59:51 +000010871 // C++ [basic.def.odr]p2:
10872 // [...] A virtual member function is used if it is not pure. [...]
10873 if (!Overrider->isPure())
10874 MarkFunctionReferenced(Loc, Overrider);
10875 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010876 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010877
10878 // Only classes that have virtual bases need a VTT.
10879 if (RD->getNumVBases() == 0)
10880 return;
10881
10882 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10883 e = RD->bases_end(); i != e; ++i) {
10884 const CXXRecordDecl *Base =
10885 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010886 if (Base->getNumVBases() == 0)
10887 continue;
10888 MarkVirtualMembersReferenced(Loc, Base);
10889 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010890}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010891
10892/// SetIvarInitializers - This routine builds initialization ASTs for the
10893/// Objective-C implementation whose ivars need be initialized.
10894void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010895 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010896 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010897 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010898 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010899 CollectIvarsToConstructOrDestruct(OID, ivars);
10900 if (ivars.empty())
10901 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010902 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010903 for (unsigned i = 0; i < ivars.size(); i++) {
10904 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010905 if (Field->isInvalidDecl())
10906 continue;
10907
Sean Huntcbb67482011-01-08 20:30:50 +000010908 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010909 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10910 InitializationKind InitKind =
10911 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10912
10913 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010914 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010915 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010916 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010917 // Note, MemberInit could actually come back empty if no initialization
10918 // is required (e.g., because it would call a trivial default constructor)
10919 if (!MemberInit.get() || MemberInit.isInvalid())
10920 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010921
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010922 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010923 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10924 SourceLocation(),
10925 MemberInit.takeAs<Expr>(),
10926 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010927 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010928
10929 // Be sure that the destructor is accessible and is marked as referenced.
10930 if (const RecordType *RecordTy
10931 = Context.getBaseElementType(Field->getType())
10932 ->getAs<RecordType>()) {
10933 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010934 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010935 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010936 CheckDestructorAccess(Field->getLocation(), Destructor,
10937 PDiag(diag::err_access_dtor_ivar)
10938 << Context.getBaseElementType(Field->getType()));
10939 }
10940 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010941 }
10942 ObjCImplementation->setIvarInitializers(Context,
10943 AllToInit.data(), AllToInit.size());
10944 }
10945}
Sean Huntfe57eef2011-05-04 05:57:24 +000010946
Sean Huntebcbe1d2011-05-04 23:29:54 +000010947static
10948void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10949 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10950 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10951 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10952 Sema &S) {
10953 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10954 CE = Current.end();
10955 if (Ctor->isInvalidDecl())
10956 return;
10957
10958 const FunctionDecl *FNTarget = 0;
10959 CXXConstructorDecl *Target;
10960
10961 // We ignore the result here since if we don't have a body, Target will be
10962 // null below.
10963 (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
10964 Target
10965= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
10966
10967 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10968 // Avoid dereferencing a null pointer here.
10969 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10970
10971 if (!Current.insert(Canonical))
10972 return;
10973
10974 // We know that beyond here, we aren't chaining into a cycle.
10975 if (!Target || !Target->isDelegatingConstructor() ||
10976 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10977 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
10978 Valid.insert(*CI);
10979 Current.clear();
10980 // We've hit a cycle.
10981 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
10982 Current.count(TCanonical)) {
10983 // If we haven't diagnosed this cycle yet, do so now.
10984 if (!Invalid.count(TCanonical)) {
10985 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000010986 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000010987 << Ctor;
10988
10989 // Don't add a note for a function delegating directo to itself.
10990 if (TCanonical != Canonical)
10991 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
10992
10993 CXXConstructorDecl *C = Target;
10994 while (C->getCanonicalDecl() != Canonical) {
10995 (void)C->getTargetConstructor()->hasBody(FNTarget);
10996 assert(FNTarget && "Ctor cycle through bodiless function");
10997
10998 C
10999 = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
11000 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11001 }
11002 }
11003
11004 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11005 Invalid.insert(*CI);
11006 Current.clear();
11007 } else {
11008 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11009 }
11010}
11011
11012
Sean Huntfe57eef2011-05-04 05:57:24 +000011013void Sema::CheckDelegatingCtorCycles() {
11014 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11015
Sean Huntebcbe1d2011-05-04 23:29:54 +000011016 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11017 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011018
Douglas Gregor0129b562011-07-27 21:57:17 +000011019 for (DelegatingCtorDeclsType::iterator
11020 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011021 E = DelegatingCtorDecls.end();
11022 I != E; ++I) {
11023 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntfe57eef2011-05-04 05:57:24 +000011024 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000011025
11026 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11027 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011028}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011029
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011030namespace {
11031 /// \brief AST visitor that finds references to the 'this' expression.
11032 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11033 Sema &S;
11034
11035 public:
11036 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11037
11038 bool VisitCXXThisExpr(CXXThisExpr *E) {
11039 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11040 << E->isImplicit();
11041 return false;
11042 }
11043 };
11044}
11045
11046bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11047 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11048 if (!TSInfo)
11049 return false;
11050
11051 TypeLoc TL = TSInfo->getTypeLoc();
11052 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11053 if (!ProtoTL)
11054 return false;
11055
11056 // C++11 [expr.prim.general]p3:
11057 // [The expression this] shall not appear before the optional
11058 // cv-qualifier-seq and it shall not appear within the declaration of a
11059 // static member function (although its type and value category are defined
11060 // within a static member function as they are within a non-static member
11061 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011062 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011063 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11064 FindCXXThisExpr Finder(*this);
11065
11066 // If the return type came after the cv-qualifier-seq, check it now.
11067 if (Proto->hasTrailingReturn() &&
11068 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11069 return true;
11070
11071 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011072 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11073 return true;
11074
11075 return checkThisInStaticMemberFunctionAttributes(Method);
11076}
11077
11078bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11079 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11080 if (!TSInfo)
11081 return false;
11082
11083 TypeLoc TL = TSInfo->getTypeLoc();
11084 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11085 if (!ProtoTL)
11086 return false;
11087
11088 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11089 FindCXXThisExpr Finder(*this);
11090
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011091 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011092 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011093 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011094 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011095 case EST_DynamicNone:
11096 case EST_MSAny:
11097 case EST_None:
11098 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011099
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011100 case EST_ComputedNoexcept:
11101 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11102 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011103
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011104 case EST_Dynamic:
11105 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011106 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011107 E != EEnd; ++E) {
11108 if (!Finder.TraverseType(*E))
11109 return true;
11110 }
11111 break;
11112 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011113
11114 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011115}
11116
11117bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11118 FindCXXThisExpr Finder(*this);
11119
11120 // Check attributes.
11121 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11122 A != AEnd; ++A) {
11123 // FIXME: This should be emitted by tblgen.
11124 Expr *Arg = 0;
11125 ArrayRef<Expr *> Args;
11126 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11127 Arg = G->getArg();
11128 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11129 Arg = G->getArg();
11130 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11131 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11132 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11133 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11134 else if (ExclusiveLockFunctionAttr *ELF
11135 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11136 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11137 else if (SharedLockFunctionAttr *SLF
11138 = dyn_cast<SharedLockFunctionAttr>(*A))
11139 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11140 else if (ExclusiveTrylockFunctionAttr *ETLF
11141 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11142 Arg = ETLF->getSuccessValue();
11143 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11144 } else if (SharedTrylockFunctionAttr *STLF
11145 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11146 Arg = STLF->getSuccessValue();
11147 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11148 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11149 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11150 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11151 Arg = LR->getArg();
11152 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11153 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11154 else if (ExclusiveLocksRequiredAttr *ELR
11155 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11156 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11157 else if (SharedLocksRequiredAttr *SLR
11158 = dyn_cast<SharedLocksRequiredAttr>(*A))
11159 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11160
11161 if (Arg && !Finder.TraverseStmt(Arg))
11162 return true;
11163
11164 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11165 if (!Finder.TraverseStmt(Args[I]))
11166 return true;
11167 }
11168 }
11169
11170 return false;
11171}
11172
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011173void
11174Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11175 ArrayRef<ParsedType> DynamicExceptions,
11176 ArrayRef<SourceRange> DynamicExceptionRanges,
11177 Expr *NoexceptExpr,
11178 llvm::SmallVectorImpl<QualType> &Exceptions,
11179 FunctionProtoType::ExtProtoInfo &EPI) {
11180 Exceptions.clear();
11181 EPI.ExceptionSpecType = EST;
11182 if (EST == EST_Dynamic) {
11183 Exceptions.reserve(DynamicExceptions.size());
11184 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11185 // FIXME: Preserve type source info.
11186 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11187
11188 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11189 collectUnexpandedParameterPacks(ET, Unexpanded);
11190 if (!Unexpanded.empty()) {
11191 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11192 UPPC_ExceptionType,
11193 Unexpanded);
11194 continue;
11195 }
11196
11197 // Check that the type is valid for an exception spec, and
11198 // drop it if not.
11199 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11200 Exceptions.push_back(ET);
11201 }
11202 EPI.NumExceptions = Exceptions.size();
11203 EPI.Exceptions = Exceptions.data();
11204 return;
11205 }
11206
11207 if (EST == EST_ComputedNoexcept) {
11208 // If an error occurred, there's no expression here.
11209 if (NoexceptExpr) {
11210 assert((NoexceptExpr->isTypeDependent() ||
11211 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11212 Context.BoolTy) &&
11213 "Parser should have made sure that the expression is boolean");
11214 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11215 EPI.ExceptionSpecType = EST_BasicNoexcept;
11216 return;
11217 }
11218
11219 if (!NoexceptExpr->isValueDependent())
11220 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011221 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011222 /*AllowFold*/ false).take();
11223 EPI.NoexceptExpr = NoexceptExpr;
11224 }
11225 return;
11226 }
11227}
11228
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011229/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11230Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11231 // Implicitly declared functions (e.g. copy constructors) are
11232 // __host__ __device__
11233 if (D->isImplicit())
11234 return CFT_HostDevice;
11235
11236 if (D->hasAttr<CUDAGlobalAttr>())
11237 return CFT_Global;
11238
11239 if (D->hasAttr<CUDADeviceAttr>()) {
11240 if (D->hasAttr<CUDAHostAttr>())
11241 return CFT_HostDevice;
11242 else
11243 return CFT_Device;
11244 }
11245
11246 return CFT_Host;
11247}
11248
11249bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11250 CUDAFunctionTarget CalleeTarget) {
11251 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11252 // Callable from the device only."
11253 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11254 return true;
11255
11256 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11257 // Callable from the host only."
11258 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11259 // Callable from the host only."
11260 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11261 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11262 return true;
11263
11264 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11265 return true;
11266
11267 return false;
11268}