blob: 2a221d8e5d57f8f7ffe75728e7d7feee79093f1f [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000027#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000028#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000029#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000030#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000031#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000032#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000035#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000036#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000037#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Chris Lattner3d1cee32008-04-08 05:04:30 +0000376// MergeCXXFunctionDecl - Merge two declarations of the same C++
377// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000378// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
Sean Hunt9ae60d52011-05-26 01:26:05 +0000520 } else if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(New)) {
521 CXXSpecialMember NewSM = getSpecialMember(Ctor),
522 OldSM = getSpecialMember(cast<CXXConstructorDecl>(Old));
523 if (NewSM != OldSM) {
524 Diag(NewParam->getLocation(),diag::warn_default_arg_makes_ctor_special)
525 << NewParam->getDefaultArgRange() << NewSM;
526 Diag(Old->getLocation(), diag::note_previous_declaration_special)
527 << OldSM;
528 }
Douglas Gregor6cc15182009-09-11 18:44:32 +0000529 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000530 }
531 }
532
Richard Smithff234882012-02-20 23:28:05 +0000533 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000534 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000535 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000536 if (New->isConstexpr() != Old->isConstexpr()) {
537 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
538 << New << New->isConstexpr();
539 Diag(Old->getLocation(), diag::note_previous_declaration);
540 Invalid = true;
541 }
542
Douglas Gregore13ad832010-02-12 07:32:17 +0000543 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000544 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000545
Douglas Gregorcda9c672009-02-16 17:45:42 +0000546 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000547}
548
Sebastian Redl60618fa2011-03-12 11:50:43 +0000549/// \brief Merge the exception specifications of two variable declarations.
550///
551/// This is called when there's a redeclaration of a VarDecl. The function
552/// checks if the redeclaration might have an exception specification and
553/// validates compatibility and merges the specs if necessary.
554void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
555 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000556 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000557 return;
558
559 assert(Context.hasSameType(New->getType(), Old->getType()) &&
560 "Should only be called if types are otherwise the same.");
561
562 QualType NewType = New->getType();
563 QualType OldType = Old->getType();
564
565 // We're only interested in pointers and references to functions, as well
566 // as pointers to member functions.
567 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
568 NewType = R->getPointeeType();
569 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
570 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
571 NewType = P->getPointeeType();
572 OldType = OldType->getAs<PointerType>()->getPointeeType();
573 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
574 NewType = M->getPointeeType();
575 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
576 }
577
578 if (!NewType->isFunctionProtoType())
579 return;
580
581 // There's lots of special cases for functions. For function pointers, system
582 // libraries are hopefully not as broken so that we don't need these
583 // workarounds.
584 if (CheckEquivalentExceptionSpec(
585 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
586 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
587 New->setInvalidDecl();
588 }
589}
590
Chris Lattner3d1cee32008-04-08 05:04:30 +0000591/// CheckCXXDefaultArguments - Verify that the default arguments for a
592/// function declaration are well-formed according to C++
593/// [dcl.fct.default].
594void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
595 unsigned NumParams = FD->getNumParams();
596 unsigned p;
597
Douglas Gregorc6889e72012-02-14 22:28:59 +0000598 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
599 isa<CXXMethodDecl>(FD) &&
600 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
601
Chris Lattner3d1cee32008-04-08 05:04:30 +0000602 // Find first parameter with a default argument
603 for (p = 0; p < NumParams; ++p) {
604 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000605 if (Param->hasDefaultArg()) {
606 // C++11 [expr.prim.lambda]p5:
607 // [...] Default arguments (8.3.6) shall not be specified in the
608 // parameter-declaration-clause of a lambda-declarator.
609 //
610 // FIXME: Core issue 974 strikes this sentence, we only provide an
611 // extension warning.
612 if (IsLambda)
613 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
614 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000615 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000616 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000617 }
618
619 // C++ [dcl.fct.default]p4:
620 // In a given function declaration, all parameters
621 // subsequent to a parameter with a default argument shall
622 // have default arguments supplied in this or previous
623 // declarations. A default argument shall not be redefined
624 // by a later declaration (not even to the same value).
625 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000626 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000627 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000628 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000629 if (Param->isInvalidDecl())
630 /* We already complained about this parameter. */;
631 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000632 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000633 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000634 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000635 else
Mike Stump1eb44332009-09-09 15:08:12 +0000636 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000637 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattner3d1cee32008-04-08 05:04:30 +0000639 LastMissingDefaultArg = p;
640 }
641 }
642
643 if (LastMissingDefaultArg > 0) {
644 // Some default arguments were missing. Clear out all of the
645 // default arguments up to (and including) the last missing
646 // default argument, so that we leave the function parameters
647 // in a semantically valid state.
648 for (p = 0; p <= LastMissingDefaultArg; ++p) {
649 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000650 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000651 Param->setDefaultArg(0);
652 }
653 }
654 }
655}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000656
Richard Smith9f569cc2011-10-01 02:31:28 +0000657// CheckConstexprParameterTypes - Check whether a function's parameter types
658// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000659// diagnostic and return false.
660static bool CheckConstexprParameterTypes(Sema &SemaRef,
661 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000662 unsigned ArgIndex = 0;
663 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
664 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
665 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
666 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
667 SourceLocation ParamLoc = PD->getLocation();
668 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000669 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000670 diag::err_constexpr_non_literal_param,
671 ArgIndex+1, PD->getSourceRange(),
672 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000673 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000674 }
Joao Matos17d35c32012-08-31 22:18:20 +0000675 return true;
676}
677
678/// \brief Get diagnostic %select index for tag kind for
679/// record diagnostic message.
680/// WARNING: Indexes apply to particular diagnostics only!
681///
682/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000683static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000684 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000685 case TTK_Struct: return 0;
686 case TTK_Interface: return 1;
687 case TTK_Class: return 2;
688 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000689 }
Joao Matos17d35c32012-08-31 22:18:20 +0000690}
691
692// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
693// the requirements of a constexpr function definition or a constexpr
694// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000695// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000696//
Richard Smith86c3ae42012-02-13 03:54:03 +0000697// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
698bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000699 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
700 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000701 // C++11 [dcl.constexpr]p4:
702 // The definition of a constexpr constructor shall satisfy the following
703 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000704 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000705 const CXXRecordDecl *RD = MD->getParent();
706 if (RD->getNumVBases()) {
707 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
708 << isa<CXXConstructorDecl>(NewFD)
709 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
710 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
711 E = RD->vbases_end(); I != E; ++I)
712 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000713 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000714 return false;
715 }
Richard Smith35340502012-01-13 04:54:00 +0000716 }
717
718 if (!isa<CXXConstructorDecl>(NewFD)) {
719 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000720 // The definition of a constexpr function shall satisfy the following
721 // constraints:
722 // - it shall not be virtual;
723 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
724 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000725 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000726
Richard Smith86c3ae42012-02-13 03:54:03 +0000727 // If it's not obvious why this function is virtual, find an overridden
728 // function which uses the 'virtual' keyword.
729 const CXXMethodDecl *WrittenVirtual = Method;
730 while (!WrittenVirtual->isVirtualAsWritten())
731 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
732 if (WrittenVirtual != Method)
733 Diag(WrittenVirtual->getLocation(),
734 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000735 return false;
736 }
737
738 // - its return type shall be a literal type;
739 QualType RT = NewFD->getResultType();
740 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000741 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000742 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000743 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000744 }
745
Richard Smith35340502012-01-13 04:54:00 +0000746 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000747 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000748 return false;
749
Richard Smith9f569cc2011-10-01 02:31:28 +0000750 return true;
751}
752
753/// Check the given declaration statement is legal within a constexpr function
754/// body. C++0x [dcl.constexpr]p3,p4.
755///
756/// \return true if the body is OK, false if we have diagnosed a problem.
757static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
758 DeclStmt *DS) {
759 // C++0x [dcl.constexpr]p3 and p4:
760 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
761 // contain only
762 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
763 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
764 switch ((*DclIt)->getKind()) {
765 case Decl::StaticAssert:
766 case Decl::Using:
767 case Decl::UsingShadow:
768 case Decl::UsingDirective:
769 case Decl::UnresolvedUsingTypename:
770 // - static_assert-declarations
771 // - using-declarations,
772 // - using-directives,
773 continue;
774
775 case Decl::Typedef:
776 case Decl::TypeAlias: {
777 // - typedef declarations and alias-declarations that do not define
778 // classes or enumerations,
779 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
780 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
781 // Don't allow variably-modified types in constexpr functions.
782 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
783 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
784 << TL.getSourceRange() << TL.getType()
785 << isa<CXXConstructorDecl>(Dcl);
786 return false;
787 }
788 continue;
789 }
790
791 case Decl::Enum:
792 case Decl::CXXRecord:
793 // As an extension, we allow the declaration (but not the definition) of
794 // classes and enumerations in all declarations, not just in typedef and
795 // alias declarations.
796 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
797 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
798 << isa<CXXConstructorDecl>(Dcl);
799 return false;
800 }
801 continue;
802
803 case Decl::Var:
804 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
805 << isa<CXXConstructorDecl>(Dcl);
806 return false;
807
808 default:
809 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
810 << isa<CXXConstructorDecl>(Dcl);
811 return false;
812 }
813 }
814
815 return true;
816}
817
818/// Check that the given field is initialized within a constexpr constructor.
819///
820/// \param Dcl The constexpr constructor being checked.
821/// \param Field The field being checked. This may be a member of an anonymous
822/// struct or union nested within the class being checked.
823/// \param Inits All declarations, including anonymous struct/union members and
824/// indirect members, for which any initialization was provided.
825/// \param Diagnosed Set to true if an error is produced.
826static void CheckConstexprCtorInitializer(Sema &SemaRef,
827 const FunctionDecl *Dcl,
828 FieldDecl *Field,
829 llvm::SmallSet<Decl*, 16> &Inits,
830 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000831 if (Field->isUnnamedBitfield())
832 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000833
834 if (Field->isAnonymousStructOrUnion() &&
835 Field->getType()->getAsCXXRecordDecl()->isEmpty())
836 return;
837
Richard Smith9f569cc2011-10-01 02:31:28 +0000838 if (!Inits.count(Field)) {
839 if (!Diagnosed) {
840 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
841 Diagnosed = true;
842 }
843 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
844 } else if (Field->isAnonymousStructOrUnion()) {
845 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
846 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
847 I != E; ++I)
848 // If an anonymous union contains an anonymous struct of which any member
849 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000850 if (!RD->isUnion() || Inits.count(*I))
851 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000852 }
853}
854
855/// Check the body for the given constexpr function declaration only contains
856/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
857///
858/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000859bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000860 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000861 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000862 // The definition of a constexpr function shall satisfy the following
863 // constraints: [...]
864 // - its function-body shall be = delete, = default, or a
865 // compound-statement
866 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000867 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000868 // In the definition of a constexpr constructor, [...]
869 // - its function-body shall not be a function-try-block;
870 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
871 << isa<CXXConstructorDecl>(Dcl);
872 return false;
873 }
874
875 // - its function-body shall be [...] a compound-statement that contains only
876 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
877
878 llvm::SmallVector<SourceLocation, 4> ReturnStmts;
879 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
880 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
881 switch ((*BodyIt)->getStmtClass()) {
882 case Stmt::NullStmtClass:
883 // - null statements,
884 continue;
885
886 case Stmt::DeclStmtClass:
887 // - static_assert-declarations
888 // - using-declarations,
889 // - using-directives,
890 // - typedef declarations and alias-declarations that do not define
891 // classes or enumerations,
892 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
893 return false;
894 continue;
895
896 case Stmt::ReturnStmtClass:
897 // - and exactly one return statement;
898 if (isa<CXXConstructorDecl>(Dcl))
899 break;
900
901 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000902 continue;
903
904 default:
905 break;
906 }
907
908 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
909 << isa<CXXConstructorDecl>(Dcl);
910 return false;
911 }
912
913 if (const CXXConstructorDecl *Constructor
914 = dyn_cast<CXXConstructorDecl>(Dcl)) {
915 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000916 // DR1359:
917 // - every non-variant non-static data member and base class sub-object
918 // shall be initialized;
919 // - if the class is a non-empty union, or for each non-empty anonymous
920 // union member of a non-union class, exactly one non-static data member
921 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000922 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000923 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000924 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
925 return false;
926 }
Richard Smith6e433752011-10-10 16:38:04 +0000927 } else if (!Constructor->isDependentContext() &&
928 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000929 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
930
931 // Skip detailed checking if we have enough initializers, and we would
932 // allow at most one initializer per member.
933 bool AnyAnonStructUnionMembers = false;
934 unsigned Fields = 0;
935 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
936 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000937 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000938 AnyAnonStructUnionMembers = true;
939 break;
940 }
941 }
942 if (AnyAnonStructUnionMembers ||
943 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
944 // Check initialization of non-static data members. Base classes are
945 // always initialized so do not need to be checked. Dependent bases
946 // might not have initializers in the member initializer list.
947 llvm::SmallSet<Decl*, 16> Inits;
948 for (CXXConstructorDecl::init_const_iterator
949 I = Constructor->init_begin(), E = Constructor->init_end();
950 I != E; ++I) {
951 if (FieldDecl *FD = (*I)->getMember())
952 Inits.insert(FD);
953 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
954 Inits.insert(ID->chain_begin(), ID->chain_end());
955 }
956
957 bool Diagnosed = false;
958 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
959 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000960 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000961 if (Diagnosed)
962 return false;
963 }
964 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000965 } else {
966 if (ReturnStmts.empty()) {
967 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
968 return false;
969 }
970 if (ReturnStmts.size() > 1) {
971 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
972 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
973 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
974 return false;
975 }
976 }
977
Richard Smith5ba73e12012-02-04 00:33:54 +0000978 // C++11 [dcl.constexpr]p5:
979 // if no function argument values exist such that the function invocation
980 // substitution would produce a constant expression, the program is
981 // ill-formed; no diagnostic required.
982 // C++11 [dcl.constexpr]p3:
983 // - every constructor call and implicit conversion used in initializing the
984 // return value shall be one of those allowed in a constant expression.
985 // C++11 [dcl.constexpr]p4:
986 // - every constructor involved in initializing non-static data members and
987 // base class sub-objects shall be a constexpr constructor.
Richard Smith745f5142012-01-27 01:14:48 +0000988 llvm::SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000989 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smith745f5142012-01-27 01:14:48 +0000990 Diag(Dcl->getLocation(), diag::err_constexpr_function_never_constant_expr)
991 << isa<CXXConstructorDecl>(Dcl);
992 for (size_t I = 0, N = Diags.size(); I != N; ++I)
993 Diag(Diags[I].first, Diags[I].second);
994 return false;
995 }
996
Richard Smith9f569cc2011-10-01 02:31:28 +0000997 return true;
998}
999
Douglas Gregorb48fe382008-10-31 09:07:45 +00001000/// isCurrentClassName - Determine whether the identifier II is the
1001/// name of the class type currently being defined. In the case of
1002/// nested classes, this will only return true if II is the name of
1003/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001004bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1005 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001006 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001007
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001008 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001009 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001010 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001011 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1012 } else
1013 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1014
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001015 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001016 return &II == CurDecl->getIdentifier();
1017 else
1018 return false;
1019}
1020
Mike Stump1eb44332009-09-09 15:08:12 +00001021/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001022///
1023/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1024/// and returns NULL otherwise.
1025CXXBaseSpecifier *
1026Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1027 SourceRange SpecifierRange,
1028 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001029 TypeSourceInfo *TInfo,
1030 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001031 QualType BaseType = TInfo->getType();
1032
Douglas Gregor2943aed2009-03-03 04:44:36 +00001033 // C++ [class.union]p1:
1034 // A union shall not have base classes.
1035 if (Class->isUnion()) {
1036 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1037 << SpecifierRange;
1038 return 0;
1039 }
1040
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001041 if (EllipsisLoc.isValid() &&
1042 !TInfo->getType()->containsUnexpandedParameterPack()) {
1043 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1044 << TInfo->getTypeLoc().getSourceRange();
1045 EllipsisLoc = SourceLocation();
1046 }
1047
Douglas Gregor2943aed2009-03-03 04:44:36 +00001048 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +00001049 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001050 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001051 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +00001052
1053 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001054
1055 // Base specifiers must be record types.
1056 if (!BaseType->isRecordType()) {
1057 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1058 return 0;
1059 }
1060
1061 // C++ [class.union]p1:
1062 // A union shall not be used as a base class.
1063 if (BaseType->isUnionType()) {
1064 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1065 return 0;
1066 }
1067
1068 // C++ [class.derived]p2:
1069 // The class-name in a base-specifier shall not be an incompletely
1070 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001071 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001072 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001073 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001074 return 0;
John McCall572fc622010-08-17 07:23:57 +00001075 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001076
Eli Friedman1d954f62009-08-15 21:55:26 +00001077 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001078 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001079 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001080 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001081 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001082 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1083 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001084
Anders Carlsson1d209272011-03-25 14:55:14 +00001085 // C++ [class]p3:
1086 // If a class is marked final and it appears as a base-type-specifier in
1087 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001088 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001089 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1090 << CXXBaseDecl->getDeclName();
1091 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1092 << CXXBaseDecl->getDeclName();
1093 return 0;
1094 }
1095
John McCall572fc622010-08-17 07:23:57 +00001096 if (BaseDecl->isInvalidDecl())
1097 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001098
1099 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001100 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001101 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001102 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001103}
1104
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001105/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1106/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001107/// example:
1108/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001109/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001110BaseResult
John McCalld226f652010-08-21 09:40:31 +00001111Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001112 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001113 ParsedType basetype, SourceLocation BaseLoc,
1114 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001115 if (!classdecl)
1116 return true;
1117
Douglas Gregor40808ce2009-03-09 23:48:35 +00001118 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001119 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001120 if (!Class)
1121 return true;
1122
Nick Lewycky56062202010-07-26 16:56:01 +00001123 TypeSourceInfo *TInfo = 0;
1124 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001125
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001126 if (EllipsisLoc.isInvalid() &&
1127 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001128 UPPC_BaseType))
1129 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001130
Douglas Gregor2943aed2009-03-03 04:44:36 +00001131 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001132 Virtual, Access, TInfo,
1133 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001134 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001135 else
1136 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Douglas Gregor2943aed2009-03-03 04:44:36 +00001138 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001139}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001140
Douglas Gregor2943aed2009-03-03 04:44:36 +00001141/// \brief Performs the actual work of attaching the given base class
1142/// specifiers to a C++ class.
1143bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1144 unsigned NumBases) {
1145 if (NumBases == 0)
1146 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001147
1148 // Used to keep track of which base types we have already seen, so
1149 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001150 // that the key is always the unqualified canonical type of the base
1151 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001152 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1153
1154 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001155 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001156 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001157 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001158 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001159 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001160 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001161
1162 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1163 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001164 // C++ [class.mi]p3:
1165 // A class shall not be specified as a direct base class of a
1166 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001167 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001168 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001169 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001170 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001171
1172 // Delete the duplicate base class specifier; we're going to
1173 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001174 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001175
1176 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001177 } else {
1178 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001179 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001180 Bases[NumGoodBases++] = Bases[idx];
Fariborz Jahanian91589022011-10-24 17:30:45 +00001181 if (const RecordType *Record = NewBaseType->getAs<RecordType>())
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001182 if (const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()))
1183 if (RD->hasAttr<WeakAttr>())
1184 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001185 }
1186 }
1187
1188 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001189 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001190
1191 // Delete the remaining (good) base class specifiers, since their
1192 // data has been copied into the CXXRecordDecl.
1193 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001194 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001195
1196 return Invalid;
1197}
1198
1199/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1200/// class, after checking whether there are any duplicate base
1201/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001202void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001203 unsigned NumBases) {
1204 if (!ClassDecl || !Bases || !NumBases)
1205 return;
1206
1207 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001208 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001209 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001210}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001211
John McCall3cb0ebd2010-03-10 03:28:59 +00001212static CXXRecordDecl *GetClassForType(QualType T) {
1213 if (const RecordType *RT = T->getAs<RecordType>())
1214 return cast<CXXRecordDecl>(RT->getDecl());
1215 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1216 return ICT->getDecl();
1217 else
1218 return 0;
1219}
1220
Douglas Gregora8f32e02009-10-06 17:59:45 +00001221/// \brief Determine whether the type \p Derived is a C++ class that is
1222/// derived from the type \p Base.
1223bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001224 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001225 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001226
1227 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1228 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001229 return false;
1230
John McCall3cb0ebd2010-03-10 03:28:59 +00001231 CXXRecordDecl *BaseRD = GetClassForType(Base);
1232 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001233 return false;
1234
John McCall86ff3082010-02-04 22:26:26 +00001235 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1236 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001237}
1238
1239/// \brief Determine whether the type \p Derived is a C++ class that is
1240/// derived from the type \p Base.
1241bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001242 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001243 return false;
1244
John McCall3cb0ebd2010-03-10 03:28:59 +00001245 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1246 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001247 return false;
1248
John McCall3cb0ebd2010-03-10 03:28:59 +00001249 CXXRecordDecl *BaseRD = GetClassForType(Base);
1250 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001251 return false;
1252
Douglas Gregora8f32e02009-10-06 17:59:45 +00001253 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1254}
1255
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001256void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001257 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001258 assert(BasePathArray.empty() && "Base path array must be empty!");
1259 assert(Paths.isRecordingPaths() && "Must record paths!");
1260
1261 const CXXBasePath &Path = Paths.front();
1262
1263 // We first go backward and check if we have a virtual base.
1264 // FIXME: It would be better if CXXBasePath had the base specifier for
1265 // the nearest virtual base.
1266 unsigned Start = 0;
1267 for (unsigned I = Path.size(); I != 0; --I) {
1268 if (Path[I - 1].Base->isVirtual()) {
1269 Start = I - 1;
1270 break;
1271 }
1272 }
1273
1274 // Now add all bases.
1275 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001276 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001277}
1278
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001279/// \brief Determine whether the given base path includes a virtual
1280/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001281bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1282 for (CXXCastPath::const_iterator B = BasePath.begin(),
1283 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001284 B != BEnd; ++B)
1285 if ((*B)->isVirtual())
1286 return true;
1287
1288 return false;
1289}
1290
Douglas Gregora8f32e02009-10-06 17:59:45 +00001291/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1292/// conversion (where Derived and Base are class types) is
1293/// well-formed, meaning that the conversion is unambiguous (and
1294/// that all of the base classes are accessible). Returns true
1295/// and emits a diagnostic if the code is ill-formed, returns false
1296/// otherwise. Loc is the location where this routine should point to
1297/// if there is an error, and Range is the source range to highlight
1298/// if there is an error.
1299bool
1300Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001301 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001302 unsigned AmbigiousBaseConvID,
1303 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001304 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001305 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001306 // First, determine whether the path from Derived to Base is
1307 // ambiguous. This is slightly more expensive than checking whether
1308 // the Derived to Base conversion exists, because here we need to
1309 // explore multiple paths to determine if there is an ambiguity.
1310 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1311 /*DetectVirtual=*/false);
1312 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1313 assert(DerivationOkay &&
1314 "Can only be used with a derived-to-base conversion");
1315 (void)DerivationOkay;
1316
1317 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001318 if (InaccessibleBaseID) {
1319 // Check that the base class can be accessed.
1320 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1321 InaccessibleBaseID)) {
1322 case AR_inaccessible:
1323 return true;
1324 case AR_accessible:
1325 case AR_dependent:
1326 case AR_delayed:
1327 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001328 }
John McCall6b2accb2010-02-10 09:31:12 +00001329 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001330
1331 // Build a base path if necessary.
1332 if (BasePath)
1333 BuildBasePathArray(Paths, *BasePath);
1334 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001335 }
1336
1337 // We know that the derived-to-base conversion is ambiguous, and
1338 // we're going to produce a diagnostic. Perform the derived-to-base
1339 // search just one more time to compute all of the possible paths so
1340 // that we can print them out. This is more expensive than any of
1341 // the previous derived-to-base checks we've done, but at this point
1342 // performance isn't as much of an issue.
1343 Paths.clear();
1344 Paths.setRecordingPaths(true);
1345 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1346 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1347 (void)StillOkay;
1348
1349 // Build up a textual representation of the ambiguous paths, e.g.,
1350 // D -> B -> A, that will be used to illustrate the ambiguous
1351 // conversions in the diagnostic. We only print one of the paths
1352 // to each base class subobject.
1353 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1354
1355 Diag(Loc, AmbigiousBaseConvID)
1356 << Derived << Base << PathDisplayStr << Range << Name;
1357 return true;
1358}
1359
1360bool
1361Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001362 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001363 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001364 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001365 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001366 IgnoreAccess ? 0
1367 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001368 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001369 Loc, Range, DeclarationName(),
1370 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001371}
1372
1373
1374/// @brief Builds a string representing ambiguous paths from a
1375/// specific derived class to different subobjects of the same base
1376/// class.
1377///
1378/// This function builds a string that can be used in error messages
1379/// to show the different paths that one can take through the
1380/// inheritance hierarchy to go from the derived class to different
1381/// subobjects of a base class. The result looks something like this:
1382/// @code
1383/// struct D -> struct B -> struct A
1384/// struct D -> struct C -> struct A
1385/// @endcode
1386std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1387 std::string PathDisplayStr;
1388 std::set<unsigned> DisplayedPaths;
1389 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1390 Path != Paths.end(); ++Path) {
1391 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1392 // We haven't displayed a path to this particular base
1393 // class subobject yet.
1394 PathDisplayStr += "\n ";
1395 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1396 for (CXXBasePath::const_iterator Element = Path->begin();
1397 Element != Path->end(); ++Element)
1398 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1399 }
1400 }
1401
1402 return PathDisplayStr;
1403}
1404
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001405//===----------------------------------------------------------------------===//
1406// C++ class member Handling
1407//===----------------------------------------------------------------------===//
1408
Abramo Bagnara6206d532010-06-05 05:09:32 +00001409/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001410bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1411 SourceLocation ASLoc,
1412 SourceLocation ColonLoc,
1413 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001414 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001415 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001416 ASLoc, ColonLoc);
1417 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001418 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001419}
1420
Richard Smitha4b39652012-08-06 03:25:17 +00001421/// CheckOverrideControl - Check C++11 override control semantics.
1422void Sema::CheckOverrideControl(Decl *D) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001423 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001424
Richard Smitha4b39652012-08-06 03:25:17 +00001425 // Do we know which functions this declaration might be overriding?
1426 bool OverridesAreKnown = !MD ||
1427 (!MD->getParent()->hasAnyDependentBases() &&
1428 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001429
Richard Smitha4b39652012-08-06 03:25:17 +00001430 if (!MD || !MD->isVirtual()) {
1431 if (OverridesAreKnown) {
1432 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1433 Diag(OA->getLocation(),
1434 diag::override_keyword_only_allowed_on_virtual_member_functions)
1435 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1436 D->dropAttr<OverrideAttr>();
1437 }
1438 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1439 Diag(FA->getLocation(),
1440 diag::override_keyword_only_allowed_on_virtual_member_functions)
1441 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1442 D->dropAttr<FinalAttr>();
1443 }
1444 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001445 return;
1446 }
Richard Smitha4b39652012-08-06 03:25:17 +00001447
1448 if (!OverridesAreKnown)
1449 return;
1450
1451 // C++11 [class.virtual]p5:
1452 // If a virtual function is marked with the virt-specifier override and
1453 // does not override a member function of a base class, the program is
1454 // ill-formed.
1455 bool HasOverriddenMethods =
1456 MD->begin_overridden_methods() != MD->end_overridden_methods();
1457 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1458 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1459 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001460}
1461
Richard Smitha4b39652012-08-06 03:25:17 +00001462/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001463/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001464/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001465bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1466 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001467 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001468 return false;
1469
1470 Diag(New->getLocation(), diag::err_final_function_overridden)
1471 << New->getDeclName();
1472 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1473 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001474}
1475
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001476static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001477 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1478 // FIXME: Destruction of ObjC lifetime types has side-effects.
1479 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1480 return !RD->isCompleteDefinition() ||
1481 !RD->hasTrivialDefaultConstructor() ||
1482 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001483 return false;
1484}
1485
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001486/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1487/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001488/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001489/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1490/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001491Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001492Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001493 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001494 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001495 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001496 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001497 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1498 DeclarationName Name = NameInfo.getName();
1499 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001500
1501 // For anonymous bitfields, the location should point to the type.
1502 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001503 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001504
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001505 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001506
John McCall4bde1e12010-06-04 08:34:12 +00001507 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001508 assert(!DS.isFriendSpecified());
1509
Richard Smith1ab0d902011-06-25 02:28:38 +00001510 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001511
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001512 // C++ 9.2p6: A member shall not be declared to have automatic storage
1513 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001514 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1515 // data members and cannot be applied to names declared const or static,
1516 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001517 switch (DS.getStorageClassSpec()) {
1518 case DeclSpec::SCS_unspecified:
1519 case DeclSpec::SCS_typedef:
1520 case DeclSpec::SCS_static:
1521 // FALL THROUGH.
1522 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001523 case DeclSpec::SCS_mutable:
1524 if (isFunc) {
1525 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001526 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001527 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001528 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001529
Sebastian Redla11f42f2008-11-17 23:24:37 +00001530 // FIXME: It would be nicer if the keyword was ignored only for this
1531 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001532 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001533 }
1534 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001535 default:
1536 if (DS.getStorageClassSpecLoc().isValid())
1537 Diag(DS.getStorageClassSpecLoc(),
1538 diag::err_storageclass_invalid_for_member);
1539 else
1540 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1541 D.getMutableDeclSpec().ClearStorageClassSpecs();
1542 }
1543
Sebastian Redl669d5d72008-11-14 23:42:31 +00001544 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1545 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001546 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001547
1548 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001549 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001550 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001551
1552 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001553 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001554 Diag(Loc, diag::err_bad_variable_name)
1555 << Name;
1556 return 0;
1557 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001558
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001559 IdentifierInfo *II = Name.getAsIdentifierInfo();
1560
Douglas Gregorf2503652011-09-21 14:40:46 +00001561 // Member field could not be with "template" keyword.
1562 // So TemplateParameterLists should be empty in this case.
1563 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001564 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001565 if (TemplateParams->size()) {
1566 // There is no such thing as a member field template.
1567 Diag(D.getIdentifierLoc(), diag::err_template_member)
1568 << II
1569 << SourceRange(TemplateParams->getTemplateLoc(),
1570 TemplateParams->getRAngleLoc());
1571 } else {
1572 // There is an extraneous 'template<>' for this member.
1573 Diag(TemplateParams->getTemplateLoc(),
1574 diag::err_template_member_noparams)
1575 << II
1576 << SourceRange(TemplateParams->getTemplateLoc(),
1577 TemplateParams->getRAngleLoc());
1578 }
1579 return 0;
1580 }
1581
Douglas Gregor922fff22010-10-13 22:19:53 +00001582 if (SS.isSet() && !SS.isInvalid()) {
1583 // The user provided a superfluous scope specifier inside a class
1584 // definition:
1585 //
1586 // class X {
1587 // int X::member;
1588 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001589 if (DeclContext *DC = computeDeclContext(SS, false))
1590 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001591 else
1592 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1593 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001594
Douglas Gregor922fff22010-10-13 22:19:53 +00001595 SS.clear();
1596 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001597
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001598 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001599 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001600 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001601 } else {
Richard Smithca523302012-06-10 03:12:00 +00001602 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001603
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001604 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001605 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001606 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001607 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001608
1609 // Non-instance-fields can't have a bitfield.
1610 if (BitWidth) {
1611 if (Member->isInvalidDecl()) {
1612 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001613 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001614 // C++ 9.6p3: A bit-field shall not be a static member.
1615 // "static member 'A' cannot be a bit-field"
1616 Diag(Loc, diag::err_static_not_bitfield)
1617 << Name << BitWidth->getSourceRange();
1618 } else if (isa<TypedefDecl>(Member)) {
1619 // "typedef member 'x' cannot be a bit-field"
1620 Diag(Loc, diag::err_typedef_not_bitfield)
1621 << Name << BitWidth->getSourceRange();
1622 } else {
1623 // A function typedef ("typedef int f(); f a;").
1624 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1625 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001626 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001627 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001628 }
Mike Stump1eb44332009-09-09 15:08:12 +00001629
Chris Lattner8b963ef2009-03-05 23:01:03 +00001630 BitWidth = 0;
1631 Member->setInvalidDecl();
1632 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001633
1634 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001635
Douglas Gregor37b372b2009-08-20 22:52:58 +00001636 // If we have declared a member function template, set the access of the
1637 // templated declaration as well.
1638 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1639 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001640 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001641
Richard Smitha4b39652012-08-06 03:25:17 +00001642 if (VS.isOverrideSpecified())
1643 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1644 if (VS.isFinalSpecified())
1645 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001646
Douglas Gregorf5251602011-03-08 17:10:18 +00001647 if (VS.getLastLocation().isValid()) {
1648 // Update the end location of a method that has a virt-specifiers.
1649 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1650 MD->setRangeEnd(VS.getLastLocation());
1651 }
Richard Smitha4b39652012-08-06 03:25:17 +00001652
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001653 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001654
Douglas Gregor10bd3682008-11-17 22:58:34 +00001655 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001656
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001657 if (isInstField) {
1658 FieldDecl *FD = cast<FieldDecl>(Member);
1659 FieldCollector->Add(FD);
1660
1661 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1662 FD->getLocation())
1663 != DiagnosticsEngine::Ignored) {
1664 // Remember all explicit private FieldDecls that have a name, no side
1665 // effects and are not part of a dependent type declaration.
1666 if (!FD->isImplicit() && FD->getDeclName() &&
1667 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001668 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001669 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001670 !InitializationHasSideEffects(*FD))
1671 UnusedPrivateFields.insert(FD);
1672 }
1673 }
1674
John McCalld226f652010-08-21 09:40:31 +00001675 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001676}
1677
Richard Smith7a614d82011-06-11 17:19:42 +00001678/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001679/// in-class initializer for a non-static C++ class member, and after
1680/// instantiating an in-class initializer in a class template. Such actions
1681/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001682void
Richard Smithca523302012-06-10 03:12:00 +00001683Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001684 Expr *InitExpr) {
1685 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001686 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1687 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001688
1689 if (!InitExpr) {
1690 FD->setInvalidDecl();
1691 FD->removeInClassInitializer();
1692 return;
1693 }
1694
Peter Collingbournefef21892011-10-23 18:59:44 +00001695 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1696 FD->setInvalidDecl();
1697 FD->removeInClassInitializer();
1698 return;
1699 }
1700
Richard Smith7a614d82011-06-11 17:19:42 +00001701 ExprResult Init = InitExpr;
1702 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001703 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001704 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001705 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1706 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001707 Expr **Inits = &InitExpr;
1708 unsigned NumInits = 1;
1709 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001710 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001711 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001712 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001713 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1714 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001715 if (Init.isInvalid()) {
1716 FD->setInvalidDecl();
1717 return;
1718 }
1719
Richard Smithca523302012-06-10 03:12:00 +00001720 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001721 }
1722
1723 // C++0x [class.base.init]p7:
1724 // The initialization of each base and member constitutes a
1725 // full-expression.
1726 Init = MaybeCreateExprWithCleanups(Init);
1727 if (Init.isInvalid()) {
1728 FD->setInvalidDecl();
1729 return;
1730 }
1731
1732 InitExpr = Init.release();
1733
1734 FD->setInClassInitializer(InitExpr);
1735}
1736
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001737/// \brief Find the direct and/or virtual base specifiers that
1738/// correspond to the given base type, for use in base initialization
1739/// within a constructor.
1740static bool FindBaseInitializer(Sema &SemaRef,
1741 CXXRecordDecl *ClassDecl,
1742 QualType BaseType,
1743 const CXXBaseSpecifier *&DirectBaseSpec,
1744 const CXXBaseSpecifier *&VirtualBaseSpec) {
1745 // First, check for a direct base class.
1746 DirectBaseSpec = 0;
1747 for (CXXRecordDecl::base_class_const_iterator Base
1748 = ClassDecl->bases_begin();
1749 Base != ClassDecl->bases_end(); ++Base) {
1750 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1751 // We found a direct base of this type. That's what we're
1752 // initializing.
1753 DirectBaseSpec = &*Base;
1754 break;
1755 }
1756 }
1757
1758 // Check for a virtual base class.
1759 // FIXME: We might be able to short-circuit this if we know in advance that
1760 // there are no virtual bases.
1761 VirtualBaseSpec = 0;
1762 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1763 // We haven't found a base yet; search the class hierarchy for a
1764 // virtual base class.
1765 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1766 /*DetectVirtual=*/false);
1767 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1768 BaseType, Paths)) {
1769 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1770 Path != Paths.end(); ++Path) {
1771 if (Path->back().Base->isVirtual()) {
1772 VirtualBaseSpec = Path->back().Base;
1773 break;
1774 }
1775 }
1776 }
1777 }
1778
1779 return DirectBaseSpec || VirtualBaseSpec;
1780}
1781
Sebastian Redl6df65482011-09-24 17:48:25 +00001782/// \brief Handle a C++ member initializer using braced-init-list syntax.
1783MemInitResult
1784Sema::ActOnMemInitializer(Decl *ConstructorD,
1785 Scope *S,
1786 CXXScopeSpec &SS,
1787 IdentifierInfo *MemberOrBase,
1788 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001789 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001790 SourceLocation IdLoc,
1791 Expr *InitList,
1792 SourceLocation EllipsisLoc) {
1793 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001794 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001795 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001796}
1797
1798/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001799MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001800Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001801 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001802 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001803 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001804 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001805 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001806 SourceLocation IdLoc,
1807 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001808 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001809 SourceLocation RParenLoc,
1810 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001811 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
1812 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001813 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001814 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001815 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001816}
1817
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001818namespace {
1819
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001820// Callback to only accept typo corrections that can be a valid C++ member
1821// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001822class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1823 public:
1824 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1825 : ClassDecl(ClassDecl) {}
1826
1827 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1828 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1829 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1830 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1831 else
1832 return isa<TypeDecl>(ND);
1833 }
1834 return false;
1835 }
1836
1837 private:
1838 CXXRecordDecl *ClassDecl;
1839};
1840
1841}
1842
Sebastian Redl6df65482011-09-24 17:48:25 +00001843/// \brief Handle a C++ member initializer.
1844MemInitResult
1845Sema::BuildMemInitializer(Decl *ConstructorD,
1846 Scope *S,
1847 CXXScopeSpec &SS,
1848 IdentifierInfo *MemberOrBase,
1849 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001850 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001851 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001852 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001853 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001854 if (!ConstructorD)
1855 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001856
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001857 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001858
1859 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001860 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001861 if (!Constructor) {
1862 // The user wrote a constructor initializer on a function that is
1863 // not a C++ constructor. Ignore the error for now, because we may
1864 // have more member initializers coming; we'll diagnose it just
1865 // once in ActOnMemInitializers.
1866 return true;
1867 }
1868
1869 CXXRecordDecl *ClassDecl = Constructor->getParent();
1870
1871 // C++ [class.base.init]p2:
1872 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001873 // constructor's class and, if not found in that scope, are looked
1874 // up in the scope containing the constructor's definition.
1875 // [Note: if the constructor's class contains a member with the
1876 // same name as a direct or virtual base class of the class, a
1877 // mem-initializer-id naming the member or base class and composed
1878 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001879 // mem-initializer-id for the hidden base class may be specified
1880 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001881 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001882 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001883 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001884 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001885 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001886 ValueDecl *Member;
1887 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1888 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001889 if (EllipsisLoc.isValid())
1890 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001891 << MemberOrBase
1892 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001893
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001894 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001895 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001896 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001897 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001898 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001899 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001900 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001901
1902 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001903 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001904 } else if (DS.getTypeSpecType() == TST_decltype) {
1905 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001906 } else {
1907 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1908 LookupParsedName(R, S, &SS);
1909
1910 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1911 if (!TyD) {
1912 if (R.isAmbiguous()) return true;
1913
John McCallfd225442010-04-09 19:01:14 +00001914 // We don't want access-control diagnostics here.
1915 R.suppressDiagnostics();
1916
Douglas Gregor7a886e12010-01-19 06:46:48 +00001917 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1918 bool NotUnknownSpecialization = false;
1919 DeclContext *DC = computeDeclContext(SS, false);
1920 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1921 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1922
1923 if (!NotUnknownSpecialization) {
1924 // When the scope specifier can refer to a member of an unknown
1925 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001926 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1927 SS.getWithLocInContext(Context),
1928 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001929 if (BaseType.isNull())
1930 return true;
1931
Douglas Gregor7a886e12010-01-19 06:46:48 +00001932 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001933 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001934 }
1935 }
1936
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001937 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001938 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001939 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001940 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001941 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001942 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001943 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1944 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001945 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001946 // We have found a non-static data member with a similar
1947 // name to what was typed; complain and initialize that
1948 // member.
1949 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1950 << MemberOrBase << true << CorrectedQuotedStr
1951 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1952 Diag(Member->getLocation(), diag::note_previous_decl)
1953 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001954
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001955 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001956 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001957 const CXXBaseSpecifier *DirectBaseSpec;
1958 const CXXBaseSpecifier *VirtualBaseSpec;
1959 if (FindBaseInitializer(*this, ClassDecl,
1960 Context.getTypeDeclType(Type),
1961 DirectBaseSpec, VirtualBaseSpec)) {
1962 // We have found a direct or virtual base class with a
1963 // similar name to what was typed; complain and initialize
1964 // that base class.
1965 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001966 << MemberOrBase << false << CorrectedQuotedStr
1967 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001968
1969 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1970 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001971 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001972 diag::note_base_class_specified_here)
1973 << BaseSpec->getType()
1974 << BaseSpec->getSourceRange();
1975
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001976 TyD = Type;
1977 }
1978 }
1979 }
1980
Douglas Gregor7a886e12010-01-19 06:46:48 +00001981 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001982 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001983 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001984 return true;
1985 }
John McCall2b194412009-12-21 10:41:20 +00001986 }
1987
Douglas Gregor7a886e12010-01-19 06:46:48 +00001988 if (BaseType.isNull()) {
1989 BaseType = Context.getTypeDeclType(TyD);
1990 if (SS.isSet()) {
1991 NestedNameSpecifier *Qualifier =
1992 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001993
Douglas Gregor7a886e12010-01-19 06:46:48 +00001994 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001995 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001996 }
John McCall2b194412009-12-21 10:41:20 +00001997 }
1998 }
Mike Stump1eb44332009-09-09 15:08:12 +00001999
John McCalla93c9342009-12-07 02:54:59 +00002000 if (!TInfo)
2001 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002002
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002003 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002004}
2005
Chandler Carruth81c64772011-09-03 01:14:15 +00002006/// Checks a member initializer expression for cases where reference (or
2007/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002008static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2009 Expr *Init,
2010 SourceLocation IdLoc) {
2011 QualType MemberTy = Member->getType();
2012
2013 // We only handle pointers and references currently.
2014 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2015 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2016 return;
2017
2018 const bool IsPointer = MemberTy->isPointerType();
2019 if (IsPointer) {
2020 if (const UnaryOperator *Op
2021 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2022 // The only case we're worried about with pointers requires taking the
2023 // address.
2024 if (Op->getOpcode() != UO_AddrOf)
2025 return;
2026
2027 Init = Op->getSubExpr();
2028 } else {
2029 // We only handle address-of expression initializers for pointers.
2030 return;
2031 }
2032 }
2033
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002034 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2035 // Taking the address of a temporary will be diagnosed as a hard error.
2036 if (IsPointer)
2037 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002038
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002039 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2040 << Member << Init->getSourceRange();
2041 } else if (const DeclRefExpr *DRE
2042 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2043 // We only warn when referring to a non-reference parameter declaration.
2044 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2045 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002046 return;
2047
2048 S.Diag(Init->getExprLoc(),
2049 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2050 : diag::warn_bind_ref_member_to_parameter)
2051 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002052 } else {
2053 // Other initializers are fine.
2054 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002055 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002056
2057 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2058 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002059}
2060
Richard Trieude5e75c2012-06-14 23:11:34 +00002061namespace {
2062 class UninitializedFieldVisitor
2063 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2064 Sema &S;
2065 ValueDecl *VD;
2066 public:
2067 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
2068 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
2069 S(S), VD(VD) {
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002070 }
2071
Richard Trieude5e75c2012-06-14 23:11:34 +00002072 void HandleExpr(Expr *E) {
2073 if (!E) return;
2074
2075 // Expressions like x(x) sometimes lack the surrounding expressions
2076 // but need to be checked anyways.
2077 HandleValue(E);
2078 Visit(E);
2079 }
2080
2081 void HandleValue(Expr *E) {
2082 E = E->IgnoreParens();
2083
Richard Trieue0991252012-06-14 23:18:09 +00002084 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
Richard Trieude5e75c2012-06-14 23:11:34 +00002085 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
2086 return;
Richard Trieue0991252012-06-14 23:18:09 +00002087 Expr *Base = E;
Richard Trieude5e75c2012-06-14 23:11:34 +00002088 while (isa<MemberExpr>(Base)) {
2089 ME = dyn_cast<MemberExpr>(Base);
2090 if (VarDecl *VarD = dyn_cast<VarDecl>(ME->getMemberDecl()))
2091 if (VarD->hasGlobalStorage())
2092 return;
2093 Base = ME->getBase();
2094 }
2095
2096 if (VD == ME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg5965b7c2012-08-20 08:52:22 +00002097 unsigned diag = VD->getType()->isReferenceType()
2098 ? diag::warn_reference_field_is_uninit
2099 : diag::warn_field_is_uninit;
2100 S.Diag(ME->getExprLoc(), diag);
Richard Trieude5e75c2012-06-14 23:11:34 +00002101 return;
2102 }
John McCallb4190042009-11-04 23:02:40 +00002103 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002104
2105 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2106 HandleValue(CO->getTrueExpr());
2107 HandleValue(CO->getFalseExpr());
2108 return;
2109 }
2110
2111 if (BinaryConditionalOperator *BCO =
2112 dyn_cast<BinaryConditionalOperator>(E)) {
2113 HandleValue(BCO->getCommon());
2114 HandleValue(BCO->getFalseExpr());
2115 return;
2116 }
2117
2118 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2119 switch (BO->getOpcode()) {
2120 default:
2121 return;
2122 case(BO_PtrMemD):
2123 case(BO_PtrMemI):
2124 HandleValue(BO->getLHS());
2125 return;
2126 case(BO_Comma):
2127 HandleValue(BO->getRHS());
2128 return;
2129 }
2130 }
John McCallb4190042009-11-04 23:02:40 +00002131 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002132
2133 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
2134 if (E->getCastKind() == CK_LValueToRValue)
2135 HandleValue(E->getSubExpr());
2136
2137 Inherited::VisitImplicitCastExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002138 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002139
2140 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2141 Expr *Callee = E->getCallee();
2142 if (isa<MemberExpr>(Callee))
2143 HandleValue(Callee);
2144
2145 Inherited::VisitCXXMemberCallExpr(E);
2146 }
2147 };
2148 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
2149 ValueDecl *VD) {
2150 UninitializedFieldVisitor(S, VD).HandleExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002151 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002152} // namespace
John McCallb4190042009-11-04 23:02:40 +00002153
John McCallf312b1e2010-08-26 23:41:50 +00002154MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002155Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002156 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002157 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2158 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2159 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002160 "Member must be a FieldDecl or IndirectFieldDecl");
2161
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002162 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002163 return true;
2164
Douglas Gregor464b2f02010-11-05 22:21:31 +00002165 if (Member->isInvalidDecl())
2166 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002167
John McCallb4190042009-11-04 23:02:40 +00002168 // Diagnose value-uses of fields to initialize themselves, e.g.
2169 // foo(foo)
2170 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002171 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002172 Expr **Args;
2173 unsigned NumArgs;
2174 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2175 Args = ParenList->getExprs();
2176 NumArgs = ParenList->getNumExprs();
2177 } else {
2178 InitListExpr *InitList = cast<InitListExpr>(Init);
2179 Args = InitList->getInits();
2180 NumArgs = InitList->getNumInits();
2181 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002182
Richard Trieude5e75c2012-06-14 23:11:34 +00002183 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2184 != DiagnosticsEngine::Ignored)
2185 for (unsigned i = 0; i < NumArgs; ++i)
2186 // FIXME: Warn about the case when other fields are used before being
John McCallb4190042009-11-04 23:02:40 +00002187 // uninitialized. For example, let this field be the i'th field. When
2188 // initializing the i'th field, throw a warning if any of the >= i'th
2189 // fields are used, as they are not yet initialized.
2190 // Right now we are only handling the case where the i'th field uses
2191 // itself in its initializer.
Richard Trieude5e75c2012-06-14 23:11:34 +00002192 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002193
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002194 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002195
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002196 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002197 // Can't check initialization for a member of dependent type or when
2198 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002199 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002200 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002201 bool InitList = false;
2202 if (isa<InitListExpr>(Init)) {
2203 InitList = true;
2204 Args = &Init;
2205 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002206
2207 if (isStdInitializerList(Member->getType(), 0)) {
2208 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2209 << /*at end of ctor*/1 << InitRange;
2210 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002211 }
2212
Chandler Carruth894aed92010-12-06 09:23:57 +00002213 // Initialize the member.
2214 InitializedEntity MemberEntity =
2215 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2216 : InitializedEntity::InitializeMember(IndirectMember, 0);
2217 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002218 InitList ? InitializationKind::CreateDirectList(IdLoc)
2219 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2220 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002221
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002222 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2223 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002224 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002225 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002226 if (MemberInit.isInvalid())
2227 return true;
2228
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002229 CheckImplicitConversions(MemberInit.get(),
2230 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002231
2232 // C++0x [class.base.init]p7:
2233 // The initialization of each base and member constitutes a
2234 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002235 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002236 if (MemberInit.isInvalid())
2237 return true;
2238
2239 // If we are in a dependent context, template instantiation will
2240 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002241 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002242 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2243 // of the information that we have about the member
2244 // initializer. However, deconstructing the ASTs is a dicey process,
2245 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002246 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002247 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002248 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002249 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002250 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2251 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002252 }
2253
Chandler Carruth894aed92010-12-06 09:23:57 +00002254 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002255 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2256 InitRange.getBegin(), Init,
2257 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002258 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002259 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2260 InitRange.getBegin(), Init,
2261 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002262 }
Eli Friedman59c04372009-07-29 19:44:27 +00002263}
2264
John McCallf312b1e2010-08-26 23:41:50 +00002265MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002266Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002267 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002268 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002269 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002270 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002271 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002272 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002273
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002274 bool InitList = true;
2275 Expr **Args = &Init;
2276 unsigned NumArgs = 1;
2277 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2278 InitList = false;
2279 Args = ParenList->getExprs();
2280 NumArgs = ParenList->getNumExprs();
2281 }
2282
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002283 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002284 // Initialize the object.
2285 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2286 QualType(ClassDecl->getTypeForDecl(), 0));
2287 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002288 InitList ? InitializationKind::CreateDirectList(NameLoc)
2289 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2290 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002291 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2292 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002293 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002294 0);
Sean Hunt41717662011-02-26 19:13:13 +00002295 if (DelegationInit.isInvalid())
2296 return true;
2297
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002298 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2299 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002300
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002301 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002302
2303 // C++0x [class.base.init]p7:
2304 // The initialization of each base and member constitutes a
2305 // full-expression.
2306 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2307 if (DelegationInit.isInvalid())
2308 return true;
2309
Eli Friedmand21016f2012-05-19 23:35:23 +00002310 // If we are in a dependent context, template instantiation will
2311 // perform this type-checking again. Just save the arguments that we
2312 // received in a ParenListExpr.
2313 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2314 // of the information that we have about the base
2315 // initializer. However, deconstructing the ASTs is a dicey process,
2316 // and this approach is far more likely to get the corner cases right.
2317 if (CurContext->isDependentContext())
2318 DelegationInit = Owned(Init);
2319
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002320 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002321 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002322 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002323}
2324
2325MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002326Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002327 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002328 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002329 SourceLocation BaseLoc
2330 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002331
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002332 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2333 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2334 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2335
2336 // C++ [class.base.init]p2:
2337 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002338 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002339 // of that class, the mem-initializer is ill-formed. A
2340 // mem-initializer-list can initialize a base class using any
2341 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002342 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002343
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002344 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002345 if (EllipsisLoc.isValid()) {
2346 // This is a pack expansion.
2347 if (!BaseType->containsUnexpandedParameterPack()) {
2348 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002349 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002350
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002351 EllipsisLoc = SourceLocation();
2352 }
2353 } else {
2354 // Check for any unexpanded parameter packs.
2355 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2356 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002357
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002358 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002359 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002360 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002361
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002362 // Check for direct and virtual base classes.
2363 const CXXBaseSpecifier *DirectBaseSpec = 0;
2364 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2365 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002366 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2367 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002368 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002369
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002370 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2371 VirtualBaseSpec);
2372
2373 // C++ [base.class.init]p2:
2374 // Unless the mem-initializer-id names a nonstatic data member of the
2375 // constructor's class or a direct or virtual base of that class, the
2376 // mem-initializer is ill-formed.
2377 if (!DirectBaseSpec && !VirtualBaseSpec) {
2378 // If the class has any dependent bases, then it's possible that
2379 // one of those types will resolve to the same type as
2380 // BaseType. Therefore, just treat this as a dependent base
2381 // class initialization. FIXME: Should we try to check the
2382 // initialization anyway? It seems odd.
2383 if (ClassDecl->hasAnyDependentBases())
2384 Dependent = true;
2385 else
2386 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2387 << BaseType << Context.getTypeDeclType(ClassDecl)
2388 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2389 }
2390 }
2391
2392 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002393 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002394
Sebastian Redl6df65482011-09-24 17:48:25 +00002395 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2396 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002397 InitRange.getBegin(), Init,
2398 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002399 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002400
2401 // C++ [base.class.init]p2:
2402 // If a mem-initializer-id is ambiguous because it designates both
2403 // a direct non-virtual base class and an inherited virtual base
2404 // class, the mem-initializer is ill-formed.
2405 if (DirectBaseSpec && VirtualBaseSpec)
2406 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002407 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002408
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002409 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002410 if (!BaseSpec)
2411 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2412
2413 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002414 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002415 Expr **Args = &Init;
2416 unsigned NumArgs = 1;
2417 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002418 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002419 Args = ParenList->getExprs();
2420 NumArgs = ParenList->getNumExprs();
2421 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002422
2423 InitializedEntity BaseEntity =
2424 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2425 InitializationKind Kind =
2426 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2427 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2428 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002429 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2430 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002431 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002432 if (BaseInit.isInvalid())
2433 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002434
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002435 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002436
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002437 // C++0x [class.base.init]p7:
2438 // The initialization of each base and member constitutes a
2439 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002440 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002441 if (BaseInit.isInvalid())
2442 return true;
2443
2444 // If we are in a dependent context, template instantiation will
2445 // perform this type-checking again. Just save the arguments that we
2446 // received in a ParenListExpr.
2447 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2448 // of the information that we have about the base
2449 // initializer. However, deconstructing the ASTs is a dicey process,
2450 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002451 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002452 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002453
Sean Huntcbb67482011-01-08 20:30:50 +00002454 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002455 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002456 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002457 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002458 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002459}
2460
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002461// Create a static_cast\<T&&>(expr).
2462static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2463 QualType ExprType = E->getType();
2464 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2465 SourceLocation ExprLoc = E->getLocStart();
2466 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2467 TargetType, ExprLoc);
2468
2469 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2470 SourceRange(ExprLoc, ExprLoc),
2471 E->getSourceRange()).take();
2472}
2473
Anders Carlssone5ef7402010-04-23 03:10:23 +00002474/// ImplicitInitializerKind - How an implicit base or member initializer should
2475/// initialize its base or member.
2476enum ImplicitInitializerKind {
2477 IIK_Default,
2478 IIK_Copy,
2479 IIK_Move
2480};
2481
Anders Carlssondefefd22010-04-23 02:00:02 +00002482static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002483BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002484 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002485 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002486 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002487 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002488 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002489 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2490 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002491
John McCall60d7b3a2010-08-24 06:29:42 +00002492 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002493
2494 switch (ImplicitInitKind) {
2495 case IIK_Default: {
2496 InitializationKind InitKind
2497 = InitializationKind::CreateDefault(Constructor->getLocation());
2498 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002499 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
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 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002824
2825 bool addFieldInitializer(CXXCtorInitializer *Init) {
2826 AllToInit.push_back(Init);
2827
2828 // Check whether this initializer makes the field "used".
2829 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2830 S.UnusedPrivateFields.remove(Init->getAnyMember());
2831
2832 return false;
2833 }
John McCallf1860e52010-05-20 23:23:51 +00002834};
2835}
2836
Richard Smitha4950662011-09-19 13:34:43 +00002837/// \brief Determine whether the given indirect field declaration is somewhere
2838/// within an anonymous union.
2839static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2840 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2841 CEnd = F->chain_end();
2842 C != CEnd; ++C)
2843 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2844 if (Record->isUnion())
2845 return true;
2846
2847 return false;
2848}
2849
Douglas Gregorddb21472011-11-02 23:04:16 +00002850/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2851/// array type.
2852static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2853 if (T->isIncompleteArrayType())
2854 return true;
2855
2856 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2857 if (!ArrayT->getSize())
2858 return true;
2859
2860 T = ArrayT->getElementType();
2861 }
2862
2863 return false;
2864}
2865
Richard Smith7a614d82011-06-11 17:19:42 +00002866static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002867 FieldDecl *Field,
2868 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002869
Chandler Carruthe861c602010-06-30 02:59:29 +00002870 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00002871 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
2872 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002873
Richard Smith0b8220a2012-08-07 21:30:42 +00002874 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00002875 // has a brace-or-equal-initializer, the entity is initialized as specified
2876 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002877 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002878 CXXCtorInitializer *Init;
2879 if (Indirect)
2880 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2881 SourceLocation(),
2882 SourceLocation(), 0,
2883 SourceLocation());
2884 else
2885 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2886 SourceLocation(),
2887 SourceLocation(), 0,
2888 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00002889 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00002890 }
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
Richard Smith0b8220a2012-08-07 21:30:42 +00002913 if (!Init)
2914 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00002915
Richard Smith0b8220a2012-08-07 21:30:42 +00002916 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002917}
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) {
Eli Friedman2217f852012-08-14 02:06:07 +00003496 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003497 if (SelID == -1)
3498 S.Diag(Loc, DiagID) << T;
3499 else
3500 S.Diag(Loc, DiagID) << SelID << T;
3501 }
3502 } Diagnoser(DiagID, SelID);
3503
3504 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003505}
3506
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003507bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003508 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003509 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003510 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003511
Anders Carlsson11f21a02009-03-23 19:10:31 +00003512 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003513 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003514
Ted Kremenek6217b802009-07-29 21:53:49 +00003515 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003516 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003517 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003518 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003519
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003520 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003521 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003522 }
Mike Stump1eb44332009-09-09 15:08:12 +00003523
Ted Kremenek6217b802009-07-29 21:53:49 +00003524 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003525 if (!RT)
3526 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003527
John McCall86ff3082010-02-04 22:26:26 +00003528 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003529
John McCall94c3b562010-08-18 09:41:07 +00003530 // We can't answer whether something is abstract until it has a
3531 // definition. If it's currently being defined, we'll walk back
3532 // over all the declarations when we have a full definition.
3533 const CXXRecordDecl *Def = RD->getDefinition();
3534 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003535 return false;
3536
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003537 if (!RD->isAbstract())
3538 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003539
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003540 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003541 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003542
John McCall94c3b562010-08-18 09:41:07 +00003543 return true;
3544}
3545
3546void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3547 // Check if we've already emitted the list of pure virtual functions
3548 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003549 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003550 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003551
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003552 CXXFinalOverriderMap FinalOverriders;
3553 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003554
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003555 // Keep a set of seen pure methods so we won't diagnose the same method
3556 // more than once.
3557 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3558
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003559 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3560 MEnd = FinalOverriders.end();
3561 M != MEnd;
3562 ++M) {
3563 for (OverridingMethods::iterator SO = M->second.begin(),
3564 SOEnd = M->second.end();
3565 SO != SOEnd; ++SO) {
3566 // C++ [class.abstract]p4:
3567 // A class is abstract if it contains or inherits at least one
3568 // pure virtual function for which the final overrider is pure
3569 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003570
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003571 //
3572 if (SO->second.size() != 1)
3573 continue;
3574
3575 if (!SO->second.front().Method->isPure())
3576 continue;
3577
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003578 if (!SeenPureMethods.insert(SO->second.front().Method))
3579 continue;
3580
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003581 Diag(SO->second.front().Method->getLocation(),
3582 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003583 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003584 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003585 }
3586
3587 if (!PureVirtualClassDiagSet)
3588 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3589 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003590}
3591
Anders Carlsson8211eff2009-03-24 01:19:16 +00003592namespace {
John McCall94c3b562010-08-18 09:41:07 +00003593struct AbstractUsageInfo {
3594 Sema &S;
3595 CXXRecordDecl *Record;
3596 CanQualType AbstractType;
3597 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003598
John McCall94c3b562010-08-18 09:41:07 +00003599 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3600 : S(S), Record(Record),
3601 AbstractType(S.Context.getCanonicalType(
3602 S.Context.getTypeDeclType(Record))),
3603 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003604
John McCall94c3b562010-08-18 09:41:07 +00003605 void DiagnoseAbstractType() {
3606 if (Invalid) return;
3607 S.DiagnoseAbstractType(Record);
3608 Invalid = true;
3609 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003610
John McCall94c3b562010-08-18 09:41:07 +00003611 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3612};
3613
3614struct CheckAbstractUsage {
3615 AbstractUsageInfo &Info;
3616 const NamedDecl *Ctx;
3617
3618 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3619 : Info(Info), Ctx(Ctx) {}
3620
3621 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3622 switch (TL.getTypeLocClass()) {
3623#define ABSTRACT_TYPELOC(CLASS, PARENT)
3624#define TYPELOC(CLASS, PARENT) \
3625 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3626#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003627 }
John McCall94c3b562010-08-18 09:41:07 +00003628 }
Mike Stump1eb44332009-09-09 15:08:12 +00003629
John McCall94c3b562010-08-18 09:41:07 +00003630 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3631 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3632 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003633 if (!TL.getArg(I))
3634 continue;
3635
John McCall94c3b562010-08-18 09:41:07 +00003636 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3637 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003638 }
John McCall94c3b562010-08-18 09:41:07 +00003639 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003640
John McCall94c3b562010-08-18 09:41:07 +00003641 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3642 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3643 }
Mike Stump1eb44332009-09-09 15:08:12 +00003644
John McCall94c3b562010-08-18 09:41:07 +00003645 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3646 // Visit the type parameters from a permissive context.
3647 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3648 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3649 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3650 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3651 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3652 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003653 }
John McCall94c3b562010-08-18 09:41:07 +00003654 }
Mike Stump1eb44332009-09-09 15:08:12 +00003655
John McCall94c3b562010-08-18 09:41:07 +00003656 // Visit pointee types from a permissive context.
3657#define CheckPolymorphic(Type) \
3658 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3659 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3660 }
3661 CheckPolymorphic(PointerTypeLoc)
3662 CheckPolymorphic(ReferenceTypeLoc)
3663 CheckPolymorphic(MemberPointerTypeLoc)
3664 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003665 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003666
John McCall94c3b562010-08-18 09:41:07 +00003667 /// Handle all the types we haven't given a more specific
3668 /// implementation for above.
3669 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3670 // Every other kind of type that we haven't called out already
3671 // that has an inner type is either (1) sugar or (2) contains that
3672 // inner type in some way as a subobject.
3673 if (TypeLoc Next = TL.getNextTypeLoc())
3674 return Visit(Next, Sel);
3675
3676 // If there's no inner type and we're in a permissive context,
3677 // don't diagnose.
3678 if (Sel == Sema::AbstractNone) return;
3679
3680 // Check whether the type matches the abstract type.
3681 QualType T = TL.getType();
3682 if (T->isArrayType()) {
3683 Sel = Sema::AbstractArrayType;
3684 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003685 }
John McCall94c3b562010-08-18 09:41:07 +00003686 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3687 if (CT != Info.AbstractType) return;
3688
3689 // It matched; do some magic.
3690 if (Sel == Sema::AbstractArrayType) {
3691 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3692 << T << TL.getSourceRange();
3693 } else {
3694 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3695 << Sel << T << TL.getSourceRange();
3696 }
3697 Info.DiagnoseAbstractType();
3698 }
3699};
3700
3701void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3702 Sema::AbstractDiagSelID Sel) {
3703 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3704}
3705
3706}
3707
3708/// Check for invalid uses of an abstract type in a method declaration.
3709static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3710 CXXMethodDecl *MD) {
3711 // No need to do the check on definitions, which require that
3712 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003713 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003714 return;
3715
3716 // For safety's sake, just ignore it if we don't have type source
3717 // information. This should never happen for non-implicit methods,
3718 // but...
3719 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3720 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3721}
3722
3723/// Check for invalid uses of an abstract type within a class definition.
3724static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3725 CXXRecordDecl *RD) {
3726 for (CXXRecordDecl::decl_iterator
3727 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3728 Decl *D = *I;
3729 if (D->isImplicit()) continue;
3730
3731 // Methods and method templates.
3732 if (isa<CXXMethodDecl>(D)) {
3733 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3734 } else if (isa<FunctionTemplateDecl>(D)) {
3735 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3736 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3737
3738 // Fields and static variables.
3739 } else if (isa<FieldDecl>(D)) {
3740 FieldDecl *FD = cast<FieldDecl>(D);
3741 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3742 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3743 } else if (isa<VarDecl>(D)) {
3744 VarDecl *VD = cast<VarDecl>(D);
3745 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3746 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3747
3748 // Nested classes and class templates.
3749 } else if (isa<CXXRecordDecl>(D)) {
3750 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3751 } else if (isa<ClassTemplateDecl>(D)) {
3752 CheckAbstractClassUsage(Info,
3753 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3754 }
3755 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003756}
3757
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003758/// \brief Perform semantic checks on a class definition that has been
3759/// completing, introducing implicitly-declared members, checking for
3760/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003761void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003762 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003763 return;
3764
John McCall94c3b562010-08-18 09:41:07 +00003765 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3766 AbstractUsageInfo Info(*this, Record);
3767 CheckAbstractClassUsage(Info, Record);
3768 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003769
3770 // If this is not an aggregate type and has no user-declared constructor,
3771 // complain about any non-static data members of reference or const scalar
3772 // type, since they will never get initializers.
3773 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003774 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3775 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003776 bool Complained = false;
3777 for (RecordDecl::field_iterator F = Record->field_begin(),
3778 FEnd = Record->field_end();
3779 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003780 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003781 continue;
3782
Douglas Gregor325e5932010-04-15 00:00:53 +00003783 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003784 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003785 if (!Complained) {
3786 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3787 << Record->getTagKind() << Record;
3788 Complained = true;
3789 }
3790
3791 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3792 << F->getType()->isReferenceType()
3793 << F->getDeclName();
3794 }
3795 }
3796 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003797
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003798 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003799 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003800
3801 if (Record->getIdentifier()) {
3802 // C++ [class.mem]p13:
3803 // If T is the name of a class, then each of the following shall have a
3804 // name different from T:
3805 // - every member of every anonymous union that is a member of class T.
3806 //
3807 // C++ [class.mem]p14:
3808 // In addition, if class T has a user-declared constructor (12.1), every
3809 // non-static data member of class T shall have a name different from T.
3810 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003811 R.first != R.second; ++R.first) {
3812 NamedDecl *D = *R.first;
3813 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3814 isa<IndirectFieldDecl>(D)) {
3815 Diag(D->getLocation(), diag::err_member_name_of_class)
3816 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003817 break;
3818 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003819 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003820 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003821
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003822 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003823 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003824 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003825 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003826 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3827 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3828 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003829
3830 // See if a method overloads virtual methods in a base
3831 /// class without overriding any.
3832 if (!Record->isDependentType()) {
3833 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3834 MEnd = Record->method_end();
3835 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003836 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003837 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003838 }
3839 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003840
Richard Smith9f569cc2011-10-01 02:31:28 +00003841 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3842 // function that is not a constructor declares that member function to be
3843 // const. [...] The class of which that function is a member shall be
3844 // a literal type.
3845 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003846 // If the class has virtual bases, any constexpr members will already have
3847 // been diagnosed by the checks performed on the member declaration, so
3848 // suppress this (less useful) diagnostic.
3849 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3850 !Record->isLiteral() && !Record->getNumVBases()) {
3851 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3852 MEnd = Record->method_end();
3853 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003854 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003855 switch (Record->getTemplateSpecializationKind()) {
3856 case TSK_ImplicitInstantiation:
3857 case TSK_ExplicitInstantiationDeclaration:
3858 case TSK_ExplicitInstantiationDefinition:
3859 // If a template instantiates to a non-literal type, but its members
3860 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003861 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003862 continue;
3863
3864 case TSK_Undeclared:
3865 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003866 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003867 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003868 break;
3869 }
3870
3871 // Only produce one error per class.
3872 break;
3873 }
3874 }
3875 }
3876
Sebastian Redlf677ea32011-02-05 19:23:19 +00003877 // Declare inherited constructors. We do this eagerly here because:
3878 // - The standard requires an eager diagnostic for conflicting inherited
3879 // constructors from different classes.
3880 // - The lazy declaration of the other implicit constructors is so as to not
3881 // waste space and performance on classes that are not meant to be
3882 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3883 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003884 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003885}
3886
3887void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003888 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3889 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003890 MI != ME; ++MI)
3891 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00003892 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003893}
3894
Richard Smith7756afa2012-06-10 05:43:50 +00003895/// Is the special member function which would be selected to perform the
3896/// specified operation on the specified class type a constexpr constructor?
3897static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3898 Sema::CXXSpecialMember CSM,
3899 bool ConstArg) {
3900 Sema::SpecialMemberOverloadResult *SMOR =
3901 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
3902 false, false, false, false);
3903 if (!SMOR || !SMOR->getMethod())
3904 // A constructor we wouldn't select can't be "involved in initializing"
3905 // anything.
3906 return true;
3907 return SMOR->getMethod()->isConstexpr();
3908}
3909
3910/// Determine whether the specified special member function would be constexpr
3911/// if it were implicitly defined.
3912static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3913 Sema::CXXSpecialMember CSM,
3914 bool ConstArg) {
3915 if (!S.getLangOpts().CPlusPlus0x)
3916 return false;
3917
3918 // C++11 [dcl.constexpr]p4:
3919 // In the definition of a constexpr constructor [...]
3920 switch (CSM) {
3921 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003922 // Since default constructor lookup is essentially trivial (and cannot
3923 // involve, for instance, template instantiation), we compute whether a
3924 // defaulted default constructor is constexpr directly within CXXRecordDecl.
3925 //
3926 // This is important for performance; we need to know whether the default
3927 // constructor is constexpr to determine whether the type is a literal type.
3928 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
3929
Richard Smith7756afa2012-06-10 05:43:50 +00003930 case Sema::CXXCopyConstructor:
3931 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003932 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00003933 break;
3934
3935 case Sema::CXXCopyAssignment:
3936 case Sema::CXXMoveAssignment:
3937 case Sema::CXXDestructor:
3938 case Sema::CXXInvalid:
3939 return false;
3940 }
3941
3942 // -- if the class is a non-empty union, or for each non-empty anonymous
3943 // union member of a non-union class, exactly one non-static data member
3944 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00003945 //
3946 // If we squint, this is guaranteed, since exactly one non-static data member
3947 // will be initialized (if the constructor isn't deleted), we just don't know
3948 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00003949 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00003950 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00003951
3952 // -- the class shall not have any virtual base classes;
3953 if (ClassDecl->getNumVBases())
3954 return false;
3955
3956 // -- every constructor involved in initializing [...] base class
3957 // sub-objects shall be a constexpr constructor;
3958 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
3959 BEnd = ClassDecl->bases_end();
3960 B != BEnd; ++B) {
3961 const RecordType *BaseType = B->getType()->getAs<RecordType>();
3962 if (!BaseType) continue;
3963
3964 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
3965 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
3966 return false;
3967 }
3968
3969 // -- every constructor involved in initializing non-static data members
3970 // [...] shall be a constexpr constructor;
3971 // -- every non-static data member and base class sub-object shall be
3972 // initialized
3973 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
3974 FEnd = ClassDecl->field_end();
3975 F != FEnd; ++F) {
3976 if (F->isInvalidDecl())
3977 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00003978 if (const RecordType *RecordTy =
3979 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00003980 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
3981 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
3982 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00003983 }
3984 }
3985
3986 // All OK, it's constexpr!
3987 return true;
3988}
3989
Richard Smithb9d0b762012-07-27 04:22:15 +00003990static Sema::ImplicitExceptionSpecification
3991computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
3992 switch (S.getSpecialMember(MD)) {
3993 case Sema::CXXDefaultConstructor:
3994 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
3995 case Sema::CXXCopyConstructor:
3996 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
3997 case Sema::CXXCopyAssignment:
3998 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
3999 case Sema::CXXMoveConstructor:
4000 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4001 case Sema::CXXMoveAssignment:
4002 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4003 case Sema::CXXDestructor:
4004 return S.ComputeDefaultedDtorExceptionSpec(MD);
4005 case Sema::CXXInvalid:
4006 break;
4007 }
4008 llvm_unreachable("only special members have implicit exception specs");
4009}
4010
Richard Smithdd25e802012-07-30 23:48:14 +00004011static void
4012updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4013 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4014 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4015 ExceptSpec.getEPI(EPI);
4016 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4017 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4018 FPT->getNumArgs(), EPI));
4019 FD->setType(QualType(NewFPT, 0));
4020}
4021
Richard Smithb9d0b762012-07-27 04:22:15 +00004022void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4023 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4024 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4025 return;
4026
Richard Smithdd25e802012-07-30 23:48:14 +00004027 // Evaluate the exception specification.
4028 ImplicitExceptionSpecification ExceptSpec =
4029 computeImplicitExceptionSpec(*this, Loc, MD);
4030
4031 // Update the type of the special member to use it.
4032 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4033
4034 // A user-provided destructor can be defined outside the class. When that
4035 // happens, be sure to update the exception specification on both
4036 // declarations.
4037 const FunctionProtoType *CanonicalFPT =
4038 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4039 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4040 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4041 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004042}
4043
4044static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4045static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4046
Richard Smith3003e1d2012-05-15 04:39:51 +00004047void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4048 CXXRecordDecl *RD = MD->getParent();
4049 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004050
Richard Smith3003e1d2012-05-15 04:39:51 +00004051 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4052 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004053
4054 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004055 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004056 bool First = MD == MD->getCanonicalDecl();
4057
4058 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004059
4060 // C++11 [dcl.fct.def.default]p1:
4061 // A function that is explicitly defaulted shall
4062 // -- be a special member function (checked elsewhere),
4063 // -- have the same type (except for ref-qualifiers, and except that a
4064 // copy operation can take a non-const reference) as an implicit
4065 // declaration, and
4066 // -- not have default arguments.
4067 unsigned ExpectedParams = 1;
4068 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4069 ExpectedParams = 0;
4070 if (MD->getNumParams() != ExpectedParams) {
4071 // This also checks for default arguments: a copy or move constructor with a
4072 // default argument is classified as a default constructor, and assignment
4073 // operations and destructors can't have default arguments.
4074 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4075 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004076 HadError = true;
4077 }
4078
Richard Smith3003e1d2012-05-15 04:39:51 +00004079 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004080
Richard Smithb9d0b762012-07-27 04:22:15 +00004081 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004082 bool CanHaveConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004083 bool Trivial;
4084 switch (CSM) {
4085 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004086 Trivial = RD->hasTrivialDefaultConstructor();
4087 break;
4088 case CXXCopyConstructor:
Richard Smithb9d0b762012-07-27 04:22:15 +00004089 CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004090 Trivial = RD->hasTrivialCopyConstructor();
4091 break;
4092 case CXXCopyAssignment:
Richard Smithb9d0b762012-07-27 04:22:15 +00004093 CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004094 Trivial = RD->hasTrivialCopyAssignment();
4095 break;
4096 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004097 Trivial = RD->hasTrivialMoveConstructor();
4098 break;
4099 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004100 Trivial = RD->hasTrivialMoveAssignment();
4101 break;
4102 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004103 Trivial = RD->hasTrivialDestructor();
4104 break;
4105 case CXXInvalid:
4106 llvm_unreachable("non-special member explicitly defaulted!");
4107 }
Sean Hunt2b188082011-05-14 05:23:28 +00004108
Richard Smith3003e1d2012-05-15 04:39:51 +00004109 QualType ReturnType = Context.VoidTy;
4110 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4111 // Check for return type matching.
4112 ReturnType = Type->getResultType();
4113 QualType ExpectedReturnType =
4114 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4115 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4116 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4117 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4118 HadError = true;
4119 }
4120
4121 // A defaulted special member cannot have cv-qualifiers.
4122 if (Type->getTypeQuals()) {
4123 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4124 << (CSM == CXXMoveAssignment);
4125 HadError = true;
4126 }
4127 }
4128
4129 // Check for parameter type matching.
4130 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004131 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004132 if (ExpectedParams && ArgType->isReferenceType()) {
4133 // Argument must be reference to possibly-const T.
4134 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004135 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004136
4137 if (ReferentType.isVolatileQualified()) {
4138 Diag(MD->getLocation(),
4139 diag::err_defaulted_special_member_volatile_param) << CSM;
4140 HadError = true;
4141 }
4142
Richard Smith7756afa2012-06-10 05:43:50 +00004143 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004144 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4145 Diag(MD->getLocation(),
4146 diag::err_defaulted_special_member_copy_const_param)
4147 << (CSM == CXXCopyAssignment);
4148 // FIXME: Explain why this special member can't be const.
4149 } else {
4150 Diag(MD->getLocation(),
4151 diag::err_defaulted_special_member_move_const_param)
4152 << (CSM == CXXMoveAssignment);
4153 }
4154 HadError = true;
4155 }
4156
4157 // If a function is explicitly defaulted on its first declaration, it shall
4158 // have the same parameter type as if it had been implicitly declared.
4159 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004160 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004161 Diag(MD->getLocation(),
4162 diag::err_defaulted_special_member_copy_non_const_param)
4163 << (CSM == CXXCopyAssignment);
4164 } else if (ExpectedParams) {
4165 // A copy assignment operator can take its argument by value, but a
4166 // defaulted one cannot.
4167 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004168 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004169 HadError = true;
4170 }
Sean Huntbe631222011-05-17 20:44:43 +00004171
Richard Smithb9d0b762012-07-27 04:22:15 +00004172 // Rebuild the type with the implicit exception specification added, if we
4173 // are going to need it.
4174 const FunctionProtoType *ImplicitType = 0;
4175 if (First || Type->hasExceptionSpec()) {
4176 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4177 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4178 ImplicitType = cast<FunctionProtoType>(
4179 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4180 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004181
Richard Smith61802452011-12-22 02:22:31 +00004182 // C++11 [dcl.fct.def.default]p2:
4183 // An explicitly-defaulted function may be declared constexpr only if it
4184 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004185 // Do not apply this rule to members of class templates, since core issue 1358
4186 // makes such functions always instantiate to constexpr functions. For
4187 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004188 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4189 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004190 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4191 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4192 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004193 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004194 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004195 }
4196 // and may have an explicit exception-specification only if it is compatible
4197 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004198 if (Type->hasExceptionSpec() &&
4199 CheckEquivalentExceptionSpec(
4200 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4201 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4202 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004203
4204 // If a function is explicitly defaulted on its first declaration,
4205 if (First) {
4206 // -- it is implicitly considered to be constexpr if the implicit
4207 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004208 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004209
Richard Smith3003e1d2012-05-15 04:39:51 +00004210 // -- it is implicitly considered to have the same exception-specification
4211 // as if it had been implicitly declared,
4212 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004213
4214 // Such a function is also trivial if the implicitly-declared function
4215 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004216 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004217 }
4218
Richard Smith3003e1d2012-05-15 04:39:51 +00004219 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004220 if (First) {
4221 MD->setDeletedAsWritten();
4222 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004223 // C++11 [dcl.fct.def.default]p4:
4224 // [For a] user-provided explicitly-defaulted function [...] if such a
4225 // function is implicitly defined as deleted, the program is ill-formed.
4226 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4227 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004228 }
4229 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004230
Richard Smith3003e1d2012-05-15 04:39:51 +00004231 if (HadError)
4232 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004233}
4234
Richard Smith7d5088a2012-02-18 02:02:13 +00004235namespace {
4236struct SpecialMemberDeletionInfo {
4237 Sema &S;
4238 CXXMethodDecl *MD;
4239 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004240 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004241
4242 // Properties of the special member, computed for convenience.
4243 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4244 SourceLocation Loc;
4245
4246 bool AllFieldsAreConst;
4247
4248 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004249 Sema::CXXSpecialMember CSM, bool Diagnose)
4250 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004251 IsConstructor(false), IsAssignment(false), IsMove(false),
4252 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4253 AllFieldsAreConst(true) {
4254 switch (CSM) {
4255 case Sema::CXXDefaultConstructor:
4256 case Sema::CXXCopyConstructor:
4257 IsConstructor = true;
4258 break;
4259 case Sema::CXXMoveConstructor:
4260 IsConstructor = true;
4261 IsMove = true;
4262 break;
4263 case Sema::CXXCopyAssignment:
4264 IsAssignment = true;
4265 break;
4266 case Sema::CXXMoveAssignment:
4267 IsAssignment = true;
4268 IsMove = true;
4269 break;
4270 case Sema::CXXDestructor:
4271 break;
4272 case Sema::CXXInvalid:
4273 llvm_unreachable("invalid special member kind");
4274 }
4275
4276 if (MD->getNumParams()) {
4277 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4278 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4279 }
4280 }
4281
4282 bool inUnion() const { return MD->getParent()->isUnion(); }
4283
4284 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004285 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4286 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004287 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004288 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4289 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4290 Quals = 0;
4291 return S.LookupSpecialMember(Class, CSM,
4292 ConstArg || (Quals & Qualifiers::Const),
4293 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004294 MD->getRefQualifier() == RQ_RValue,
4295 TQ & Qualifiers::Const,
4296 TQ & Qualifiers::Volatile);
4297 }
4298
Richard Smith6c4c36c2012-03-30 20:53:28 +00004299 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004300
Richard Smith6c4c36c2012-03-30 20:53:28 +00004301 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004302 bool shouldDeleteForField(FieldDecl *FD);
4303 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004304
Richard Smith517bb842012-07-18 03:51:16 +00004305 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4306 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004307 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4308 Sema::SpecialMemberOverloadResult *SMOR,
4309 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004310
4311 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004312};
4313}
4314
John McCall12d8d802012-04-09 20:53:23 +00004315/// Is the given special member inaccessible when used on the given
4316/// sub-object.
4317bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4318 CXXMethodDecl *target) {
4319 /// If we're operating on a base class, the object type is the
4320 /// type of this special member.
4321 QualType objectTy;
4322 AccessSpecifier access = target->getAccess();;
4323 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4324 objectTy = S.Context.getTypeDeclType(MD->getParent());
4325 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4326
4327 // If we're operating on a field, the object type is the type of the field.
4328 } else {
4329 objectTy = S.Context.getTypeDeclType(target->getParent());
4330 }
4331
4332 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4333}
4334
Richard Smith6c4c36c2012-03-30 20:53:28 +00004335/// Check whether we should delete a special member due to the implicit
4336/// definition containing a call to a special member of a subobject.
4337bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4338 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4339 bool IsDtorCallInCtor) {
4340 CXXMethodDecl *Decl = SMOR->getMethod();
4341 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4342
4343 int DiagKind = -1;
4344
4345 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4346 DiagKind = !Decl ? 0 : 1;
4347 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4348 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004349 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004350 DiagKind = 3;
4351 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4352 !Decl->isTrivial()) {
4353 // A member of a union must have a trivial corresponding special member.
4354 // As a weird special case, a destructor call from a union's constructor
4355 // must be accessible and non-deleted, but need not be trivial. Such a
4356 // destructor is never actually called, but is semantically checked as
4357 // if it were.
4358 DiagKind = 4;
4359 }
4360
4361 if (DiagKind == -1)
4362 return false;
4363
4364 if (Diagnose) {
4365 if (Field) {
4366 S.Diag(Field->getLocation(),
4367 diag::note_deleted_special_member_class_subobject)
4368 << CSM << MD->getParent() << /*IsField*/true
4369 << Field << DiagKind << IsDtorCallInCtor;
4370 } else {
4371 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4372 S.Diag(Base->getLocStart(),
4373 diag::note_deleted_special_member_class_subobject)
4374 << CSM << MD->getParent() << /*IsField*/false
4375 << Base->getType() << DiagKind << IsDtorCallInCtor;
4376 }
4377
4378 if (DiagKind == 1)
4379 S.NoteDeletedFunction(Decl);
4380 // FIXME: Explain inaccessibility if DiagKind == 3.
4381 }
4382
4383 return true;
4384}
4385
Richard Smith9a561d52012-02-26 09:11:52 +00004386/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004387/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004388bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004389 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004390 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004391
4392 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004393 // -- any direct or virtual base class, or non-static data member with no
4394 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004395 // either M has no default constructor or overload resolution as applied
4396 // to M's default constructor results in an ambiguity or in a function
4397 // that is deleted or inaccessible
4398 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4399 // -- a direct or virtual base class B that cannot be copied/moved because
4400 // overload resolution, as applied to B's corresponding special member,
4401 // results in an ambiguity or a function that is deleted or inaccessible
4402 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004403 // C++11 [class.dtor]p5:
4404 // -- any direct or virtual base class [...] has a type with a destructor
4405 // that is deleted or inaccessible
4406 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004407 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004408 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004409 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004410
Richard Smith6c4c36c2012-03-30 20:53:28 +00004411 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4412 // -- any direct or virtual base class or non-static data member has a
4413 // type with a destructor that is deleted or inaccessible
4414 if (IsConstructor) {
4415 Sema::SpecialMemberOverloadResult *SMOR =
4416 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4417 false, false, false, false, false);
4418 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4419 return true;
4420 }
4421
Richard Smith9a561d52012-02-26 09:11:52 +00004422 return false;
4423}
4424
4425/// Check whether we should delete a special member function due to the class
4426/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004427bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004428 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004429 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004430}
4431
4432/// Check whether we should delete a special member function due to the class
4433/// having a particular non-static data member.
4434bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4435 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4436 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4437
4438 if (CSM == Sema::CXXDefaultConstructor) {
4439 // For a default constructor, all references must be initialized in-class
4440 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004441 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4442 if (Diagnose)
4443 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4444 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004445 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004446 }
Richard Smith79363f52012-02-27 06:07:25 +00004447 // C++11 [class.ctor]p5: any non-variant non-static data member of
4448 // const-qualified type (or array thereof) with no
4449 // brace-or-equal-initializer does not have a user-provided default
4450 // constructor.
4451 if (!inUnion() && FieldType.isConstQualified() &&
4452 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004453 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4454 if (Diagnose)
4455 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004456 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004457 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004458 }
4459
4460 if (inUnion() && !FieldType.isConstQualified())
4461 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004462 } else if (CSM == Sema::CXXCopyConstructor) {
4463 // For a copy constructor, data members must not be of rvalue reference
4464 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004465 if (FieldType->isRValueReferenceType()) {
4466 if (Diagnose)
4467 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4468 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004469 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004470 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004471 } else if (IsAssignment) {
4472 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004473 if (FieldType->isReferenceType()) {
4474 if (Diagnose)
4475 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4476 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004477 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004478 }
4479 if (!FieldRecord && FieldType.isConstQualified()) {
4480 // C++11 [class.copy]p23:
4481 // -- a non-static data member of const non-class type (or array thereof)
4482 if (Diagnose)
4483 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004484 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004485 return true;
4486 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004487 }
4488
4489 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004490 // Some additional restrictions exist on the variant members.
4491 if (!inUnion() && FieldRecord->isUnion() &&
4492 FieldRecord->isAnonymousStructOrUnion()) {
4493 bool AllVariantFieldsAreConst = true;
4494
Richard Smithdf8dc862012-03-29 19:00:10 +00004495 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004496 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4497 UE = FieldRecord->field_end();
4498 UI != UE; ++UI) {
4499 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004500
4501 if (!UnionFieldType.isConstQualified())
4502 AllVariantFieldsAreConst = false;
4503
Richard Smith9a561d52012-02-26 09:11:52 +00004504 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4505 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004506 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4507 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004508 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004509 }
4510
4511 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004512 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004513 FieldRecord->field_begin() != FieldRecord->field_end()) {
4514 if (Diagnose)
4515 S.Diag(FieldRecord->getLocation(),
4516 diag::note_deleted_default_ctor_all_const)
4517 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004518 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004519 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004520
Richard Smithdf8dc862012-03-29 19:00:10 +00004521 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004522 // This is technically non-conformant, but sanity demands it.
4523 return false;
4524 }
4525
Richard Smith517bb842012-07-18 03:51:16 +00004526 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4527 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004528 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004529 }
4530
4531 return false;
4532}
4533
4534/// C++11 [class.ctor] p5:
4535/// A defaulted default constructor for a class X is defined as deleted if
4536/// X is a union and all of its variant members are of const-qualified type.
4537bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004538 // This is a silly definition, because it gives an empty union a deleted
4539 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004540 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4541 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4542 if (Diagnose)
4543 S.Diag(MD->getParent()->getLocation(),
4544 diag::note_deleted_default_ctor_all_const)
4545 << MD->getParent() << /*not anonymous union*/0;
4546 return true;
4547 }
4548 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004549}
4550
4551/// Determine whether a defaulted special member function should be defined as
4552/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4553/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004554bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4555 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004556 if (MD->isInvalidDecl())
4557 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004558 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004559 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004560 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004561 return false;
4562
Richard Smith7d5088a2012-02-18 02:02:13 +00004563 // C++11 [expr.lambda.prim]p19:
4564 // The closure type associated with a lambda-expression has a
4565 // deleted (8.4.3) default constructor and a deleted copy
4566 // assignment operator.
4567 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004568 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4569 if (Diagnose)
4570 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004571 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004572 }
4573
Richard Smith5bdaac52012-04-02 20:59:25 +00004574 // For an anonymous struct or union, the copy and assignment special members
4575 // will never be used, so skip the check. For an anonymous union declared at
4576 // namespace scope, the constructor and destructor are used.
4577 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4578 RD->isAnonymousStructOrUnion())
4579 return false;
4580
Richard Smith6c4c36c2012-03-30 20:53:28 +00004581 // C++11 [class.copy]p7, p18:
4582 // If the class definition declares a move constructor or move assignment
4583 // operator, an implicitly declared copy constructor or copy assignment
4584 // operator is defined as deleted.
4585 if (MD->isImplicit() &&
4586 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4587 CXXMethodDecl *UserDeclaredMove = 0;
4588
4589 // In Microsoft mode, a user-declared move only causes the deletion of the
4590 // corresponding copy operation, not both copy operations.
4591 if (RD->hasUserDeclaredMoveConstructor() &&
4592 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4593 if (!Diagnose) return true;
4594 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004595 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004596 } else if (RD->hasUserDeclaredMoveAssignment() &&
4597 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4598 if (!Diagnose) return true;
4599 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004600 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004601 }
4602
4603 if (UserDeclaredMove) {
4604 Diag(UserDeclaredMove->getLocation(),
4605 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004606 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004607 << UserDeclaredMove->isMoveAssignmentOperator();
4608 return true;
4609 }
4610 }
Sean Hunte16da072011-10-10 06:18:57 +00004611
Richard Smith5bdaac52012-04-02 20:59:25 +00004612 // Do access control from the special member function
4613 ContextRAII MethodContext(*this, MD);
4614
Richard Smith9a561d52012-02-26 09:11:52 +00004615 // C++11 [class.dtor]p5:
4616 // -- for a virtual destructor, lookup of the non-array deallocation function
4617 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004618 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004619 FunctionDecl *OperatorDelete = 0;
4620 DeclarationName Name =
4621 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4622 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004623 OperatorDelete, false)) {
4624 if (Diagnose)
4625 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004626 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004627 }
Richard Smith9a561d52012-02-26 09:11:52 +00004628 }
4629
Richard Smith6c4c36c2012-03-30 20:53:28 +00004630 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004631
Sean Huntcdee3fe2011-05-11 22:34:38 +00004632 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004633 BE = RD->bases_end(); BI != BE; ++BI)
4634 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004635 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004636 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004637
4638 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004639 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004640 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004641 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004642
4643 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004644 FE = RD->field_end(); FI != FE; ++FI)
4645 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004646 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004647 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004648
Richard Smith7d5088a2012-02-18 02:02:13 +00004649 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004650 return true;
4651
4652 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004653}
4654
4655/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004656namespace {
4657 struct FindHiddenVirtualMethodData {
4658 Sema *S;
4659 CXXMethodDecl *Method;
4660 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004661 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004662 };
4663}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004664
4665/// \brief Member lookup function that determines whether a given C++
4666/// method overloads virtual methods in a base class without overriding any,
4667/// to be used with CXXRecordDecl::lookupInBases().
4668static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4669 CXXBasePath &Path,
4670 void *UserData) {
4671 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4672
4673 FindHiddenVirtualMethodData &Data
4674 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4675
4676 DeclarationName Name = Data.Method->getDeclName();
4677 assert(Name.getNameKind() == DeclarationName::Identifier);
4678
4679 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004680 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004681 for (Path.Decls = BaseRecord->lookup(Name);
4682 Path.Decls.first != Path.Decls.second;
4683 ++Path.Decls.first) {
4684 NamedDecl *D = *Path.Decls.first;
4685 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004686 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004687 foundSameNameMethod = true;
4688 // Interested only in hidden virtual methods.
4689 if (!MD->isVirtual())
4690 continue;
4691 // If the method we are checking overrides a method from its base
4692 // don't warn about the other overloaded methods.
4693 if (!Data.S->IsOverload(Data.Method, MD, false))
4694 return true;
4695 // Collect the overload only if its hidden.
4696 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4697 overloadedMethods.push_back(MD);
4698 }
4699 }
4700
4701 if (foundSameNameMethod)
4702 Data.OverloadedMethods.append(overloadedMethods.begin(),
4703 overloadedMethods.end());
4704 return foundSameNameMethod;
4705}
4706
4707/// \brief See if a method overloads virtual methods in a base class without
4708/// overriding any.
4709void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4710 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004711 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004712 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004713 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004714 return;
4715
4716 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4717 /*bool RecordPaths=*/false,
4718 /*bool DetectVirtual=*/false);
4719 FindHiddenVirtualMethodData Data;
4720 Data.Method = MD;
4721 Data.S = this;
4722
4723 // Keep the base methods that were overriden or introduced in the subclass
4724 // by 'using' in a set. A base method not in this set is hidden.
4725 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4726 res.first != res.second; ++res.first) {
4727 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4728 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4729 E = MD->end_overridden_methods();
4730 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004731 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004732 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4733 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004734 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004735 }
4736
4737 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4738 !Data.OverloadedMethods.empty()) {
4739 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4740 << MD << (Data.OverloadedMethods.size() > 1);
4741
4742 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4743 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4744 Diag(overloadedMD->getLocation(),
4745 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4746 }
4747 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004748}
4749
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004750void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004751 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004752 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004753 SourceLocation RBrac,
4754 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004755 if (!TagDecl)
4756 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004757
Douglas Gregor42af25f2009-05-11 19:58:34 +00004758 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004759
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004760 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4761 if (l->getKind() != AttributeList::AT_Visibility)
4762 continue;
4763 l->setInvalid();
4764 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4765 l->getName();
4766 }
4767
David Blaikie77b6de02011-09-22 02:58:26 +00004768 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004769 // strict aliasing violation!
4770 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004771 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004772
Douglas Gregor23c94db2010-07-02 17:43:08 +00004773 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004774 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004775}
4776
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004777/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4778/// special functions, such as the default constructor, copy
4779/// constructor, or destructor, to the given C++ class (C++
4780/// [special]p1). This routine can only be executed just before the
4781/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004782void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004783 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004784 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004785
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004786 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004787 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004788
David Blaikie4e4d0842012-03-11 07:00:24 +00004789 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004790 ++ASTContext::NumImplicitMoveConstructors;
4791
Douglas Gregora376d102010-07-02 21:50:04 +00004792 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4793 ++ASTContext::NumImplicitCopyAssignmentOperators;
4794
4795 // If we have a dynamic class, then the copy assignment operator may be
4796 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4797 // it shows up in the right place in the vtable and that we diagnose
4798 // problems with the implicit exception specification.
4799 if (ClassDecl->isDynamicClass())
4800 DeclareImplicitCopyAssignment(ClassDecl);
4801 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004802
Richard Smith1c931be2012-04-02 18:40:40 +00004803 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004804 ++ASTContext::NumImplicitMoveAssignmentOperators;
4805
4806 // Likewise for the move assignment operator.
4807 if (ClassDecl->isDynamicClass())
4808 DeclareImplicitMoveAssignment(ClassDecl);
4809 }
4810
Douglas Gregor4923aa22010-07-02 20:37:36 +00004811 if (!ClassDecl->hasUserDeclaredDestructor()) {
4812 ++ASTContext::NumImplicitDestructors;
4813
4814 // If we have a dynamic class, then the destructor may be virtual, so we
4815 // have to declare the destructor immediately. This ensures that, e.g., it
4816 // shows up in the right place in the vtable and that we diagnose problems
4817 // with the implicit exception specification.
4818 if (ClassDecl->isDynamicClass())
4819 DeclareImplicitDestructor(ClassDecl);
4820 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004821}
4822
Francois Pichet8387e2a2011-04-22 22:18:13 +00004823void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4824 if (!D)
4825 return;
4826
4827 int NumParamList = D->getNumTemplateParameterLists();
4828 for (int i = 0; i < NumParamList; i++) {
4829 TemplateParameterList* Params = D->getTemplateParameterList(i);
4830 for (TemplateParameterList::iterator Param = Params->begin(),
4831 ParamEnd = Params->end();
4832 Param != ParamEnd; ++Param) {
4833 NamedDecl *Named = cast<NamedDecl>(*Param);
4834 if (Named->getDeclName()) {
4835 S->AddDecl(Named);
4836 IdResolver.AddDecl(Named);
4837 }
4838 }
4839 }
4840}
4841
John McCalld226f652010-08-21 09:40:31 +00004842void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004843 if (!D)
4844 return;
4845
4846 TemplateParameterList *Params = 0;
4847 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4848 Params = Template->getTemplateParameters();
4849 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4850 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4851 Params = PartialSpec->getTemplateParameters();
4852 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004853 return;
4854
Douglas Gregor6569d682009-05-27 23:11:45 +00004855 for (TemplateParameterList::iterator Param = Params->begin(),
4856 ParamEnd = Params->end();
4857 Param != ParamEnd; ++Param) {
4858 NamedDecl *Named = cast<NamedDecl>(*Param);
4859 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004860 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004861 IdResolver.AddDecl(Named);
4862 }
4863 }
4864}
4865
John McCalld226f652010-08-21 09:40:31 +00004866void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004867 if (!RecordD) return;
4868 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004869 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004870 PushDeclContext(S, Record);
4871}
4872
John McCalld226f652010-08-21 09:40:31 +00004873void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004874 if (!RecordD) return;
4875 PopDeclContext();
4876}
4877
Douglas Gregor72b505b2008-12-16 21:30:33 +00004878/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4879/// parsing a top-level (non-nested) C++ class, and we are now
4880/// parsing those parts of the given Method declaration that could
4881/// not be parsed earlier (C++ [class.mem]p2), such as default
4882/// arguments. This action should enter the scope of the given
4883/// Method declaration as if we had just parsed the qualified method
4884/// name. However, it should not bring the parameters into scope;
4885/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004886void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004887}
4888
4889/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4890/// C++ method declaration. We're (re-)introducing the given
4891/// function parameter into scope for use in parsing later parts of
4892/// the method declaration. For example, we could see an
4893/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004894void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004895 if (!ParamD)
4896 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004897
John McCalld226f652010-08-21 09:40:31 +00004898 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004899
4900 // If this parameter has an unparsed default argument, clear it out
4901 // to make way for the parsed default argument.
4902 if (Param->hasUnparsedDefaultArg())
4903 Param->setDefaultArg(0);
4904
John McCalld226f652010-08-21 09:40:31 +00004905 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004906 if (Param->getDeclName())
4907 IdResolver.AddDecl(Param);
4908}
4909
4910/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4911/// processing the delayed method declaration for Method. The method
4912/// declaration is now considered finished. There may be a separate
4913/// ActOnStartOfFunctionDef action later (not necessarily
4914/// immediately!) for this method, if it was also defined inside the
4915/// class body.
John McCalld226f652010-08-21 09:40:31 +00004916void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004917 if (!MethodD)
4918 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004919
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004920 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004921
John McCalld226f652010-08-21 09:40:31 +00004922 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004923
4924 // Now that we have our default arguments, check the constructor
4925 // again. It could produce additional diagnostics or affect whether
4926 // the class has implicitly-declared destructors, among other
4927 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004928 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4929 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004930
4931 // Check the default arguments, which we may have added.
4932 if (!Method->isInvalidDecl())
4933 CheckCXXDefaultArguments(Method);
4934}
4935
Douglas Gregor42a552f2008-11-05 20:51:48 +00004936/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004937/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004938/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004939/// emit diagnostics and set the invalid bit to true. In any case, the type
4940/// will be updated to reflect a well-formed type for the constructor and
4941/// returned.
4942QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004943 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004944 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004945
4946 // C++ [class.ctor]p3:
4947 // A constructor shall not be virtual (10.3) or static (9.4). A
4948 // constructor can be invoked for a const, volatile or const
4949 // volatile object. A constructor shall not be declared const,
4950 // volatile, or const volatile (9.3.2).
4951 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004952 if (!D.isInvalidType())
4953 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4954 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4955 << SourceRange(D.getIdentifierLoc());
4956 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004957 }
John McCalld931b082010-08-26 03:08:43 +00004958 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004959 if (!D.isInvalidType())
4960 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4961 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4962 << SourceRange(D.getIdentifierLoc());
4963 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004964 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004965 }
Mike Stump1eb44332009-09-09 15:08:12 +00004966
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004967 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004968 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004969 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004970 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4971 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004972 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004973 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4974 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004975 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004976 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4977 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004978 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004979 }
Mike Stump1eb44332009-09-09 15:08:12 +00004980
Douglas Gregorc938c162011-01-26 05:01:58 +00004981 // C++0x [class.ctor]p4:
4982 // A constructor shall not be declared with a ref-qualifier.
4983 if (FTI.hasRefQualifier()) {
4984 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4985 << FTI.RefQualifierIsLValueRef
4986 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4987 D.setInvalidType();
4988 }
4989
Douglas Gregor42a552f2008-11-05 20:51:48 +00004990 // Rebuild the function type "R" without any type qualifiers (in
4991 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004992 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004993 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004994 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4995 return R;
4996
4997 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4998 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00004999 EPI.RefQualifier = RQ_None;
5000
Chris Lattner65401802009-04-25 08:28:21 +00005001 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005002 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005003}
5004
Douglas Gregor72b505b2008-12-16 21:30:33 +00005005/// CheckConstructor - Checks a fully-formed constructor for
5006/// well-formedness, issuing any diagnostics required. Returns true if
5007/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005008void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005009 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005010 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5011 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005012 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005013
5014 // C++ [class.copy]p3:
5015 // A declaration of a constructor for a class X is ill-formed if
5016 // its first parameter is of type (optionally cv-qualified) X and
5017 // either there are no other parameters or else all other
5018 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005019 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005020 ((Constructor->getNumParams() == 1) ||
5021 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005022 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5023 Constructor->getTemplateSpecializationKind()
5024 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005025 QualType ParamType = Constructor->getParamDecl(0)->getType();
5026 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5027 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005028 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005029 const char *ConstRef
5030 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5031 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005032 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005033 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005034
5035 // FIXME: Rather that making the constructor invalid, we should endeavor
5036 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005037 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005038 }
5039 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005040}
5041
John McCall15442822010-08-04 01:04:25 +00005042/// CheckDestructor - Checks a fully-formed destructor definition for
5043/// well-formedness, issuing any diagnostics required. Returns true
5044/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005045bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005046 CXXRecordDecl *RD = Destructor->getParent();
5047
5048 if (Destructor->isVirtual()) {
5049 SourceLocation Loc;
5050
5051 if (!Destructor->isImplicit())
5052 Loc = Destructor->getLocation();
5053 else
5054 Loc = RD->getLocation();
5055
5056 // If we have a virtual destructor, look up the deallocation function
5057 FunctionDecl *OperatorDelete = 0;
5058 DeclarationName Name =
5059 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005060 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005061 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005062
Eli Friedman5f2987c2012-02-02 03:46:19 +00005063 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005064
5065 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005066 }
Anders Carlsson37909802009-11-30 21:24:50 +00005067
5068 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005069}
5070
Mike Stump1eb44332009-09-09 15:08:12 +00005071static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005072FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5073 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5074 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005075 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005076}
5077
Douglas Gregor42a552f2008-11-05 20:51:48 +00005078/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5079/// the well-formednes of the destructor declarator @p D with type @p
5080/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005081/// emit diagnostics and set the declarator to invalid. Even if this happens,
5082/// will be updated to reflect a well-formed type for the destructor and
5083/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005084QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005085 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005086 // C++ [class.dtor]p1:
5087 // [...] A typedef-name that names a class is a class-name
5088 // (7.1.3); however, a typedef-name that names a class shall not
5089 // be used as the identifier in the declarator for a destructor
5090 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005091 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005092 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005093 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005094 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005095 else if (const TemplateSpecializationType *TST =
5096 DeclaratorType->getAs<TemplateSpecializationType>())
5097 if (TST->isTypeAlias())
5098 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5099 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005100
5101 // C++ [class.dtor]p2:
5102 // A destructor is used to destroy objects of its class type. A
5103 // destructor takes no parameters, and no return type can be
5104 // specified for it (not even void). The address of a destructor
5105 // shall not be taken. A destructor shall not be static. A
5106 // destructor can be invoked for a const, volatile or const
5107 // volatile object. A destructor shall not be declared const,
5108 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005109 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005110 if (!D.isInvalidType())
5111 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5112 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005113 << SourceRange(D.getIdentifierLoc())
5114 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5115
John McCalld931b082010-08-26 03:08:43 +00005116 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005117 }
Chris Lattner65401802009-04-25 08:28:21 +00005118 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005119 // Destructors don't have return types, but the parser will
5120 // happily parse something like:
5121 //
5122 // class X {
5123 // float ~X();
5124 // };
5125 //
5126 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005127 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5128 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5129 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005130 }
Mike Stump1eb44332009-09-09 15:08:12 +00005131
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005132 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005133 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005134 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005135 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5136 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005137 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005138 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5139 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005140 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005141 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5142 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005143 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005144 }
5145
Douglas Gregorc938c162011-01-26 05:01:58 +00005146 // C++0x [class.dtor]p2:
5147 // A destructor shall not be declared with a ref-qualifier.
5148 if (FTI.hasRefQualifier()) {
5149 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5150 << FTI.RefQualifierIsLValueRef
5151 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5152 D.setInvalidType();
5153 }
5154
Douglas Gregor42a552f2008-11-05 20:51:48 +00005155 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005156 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005157 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5158
5159 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005160 FTI.freeArgs();
5161 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005162 }
5163
Mike Stump1eb44332009-09-09 15:08:12 +00005164 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005165 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005166 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005167 D.setInvalidType();
5168 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005169
5170 // Rebuild the function type "R" without any type qualifiers or
5171 // parameters (in case any of the errors above fired) and with
5172 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005173 // types.
John McCalle23cf432010-12-14 08:05:40 +00005174 if (!D.isInvalidType())
5175 return R;
5176
Douglas Gregord92ec472010-07-01 05:10:53 +00005177 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005178 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5179 EPI.Variadic = false;
5180 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005181 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005182 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005183}
5184
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005185/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5186/// well-formednes of the conversion function declarator @p D with
5187/// type @p R. If there are any errors in the declarator, this routine
5188/// will emit diagnostics and return true. Otherwise, it will return
5189/// false. Either way, the type @p R will be updated to reflect a
5190/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005191void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005192 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005193 // C++ [class.conv.fct]p1:
5194 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005195 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005196 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005197 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005198 if (!D.isInvalidType())
5199 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5200 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5201 << SourceRange(D.getIdentifierLoc());
5202 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005203 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005204 }
John McCalla3f81372010-04-13 00:04:31 +00005205
5206 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5207
Chris Lattner6e475012009-04-25 08:35:12 +00005208 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005209 // Conversion functions don't have return types, but the parser will
5210 // happily parse something like:
5211 //
5212 // class X {
5213 // float operator bool();
5214 // };
5215 //
5216 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005217 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5218 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5219 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005220 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005221 }
5222
John McCalla3f81372010-04-13 00:04:31 +00005223 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5224
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005225 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005226 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005227 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5228
5229 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005230 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005231 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005232 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005233 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005234 D.setInvalidType();
5235 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005236
John McCalla3f81372010-04-13 00:04:31 +00005237 // Diagnose "&operator bool()" and other such nonsense. This
5238 // is actually a gcc extension which we don't support.
5239 if (Proto->getResultType() != ConvType) {
5240 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5241 << Proto->getResultType();
5242 D.setInvalidType();
5243 ConvType = Proto->getResultType();
5244 }
5245
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005246 // C++ [class.conv.fct]p4:
5247 // The conversion-type-id shall not represent a function type nor
5248 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005249 if (ConvType->isArrayType()) {
5250 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5251 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005252 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005253 } else if (ConvType->isFunctionType()) {
5254 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5255 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005256 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005257 }
5258
5259 // Rebuild the function type "R" without any parameters (in case any
5260 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005261 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005262 if (D.isInvalidType())
5263 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005264
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005265 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005266 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005267 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005268 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005269 diag::warn_cxx98_compat_explicit_conversion_functions :
5270 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005271 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005272}
5273
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005274/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5275/// the declaration of the given C++ conversion function. This routine
5276/// is responsible for recording the conversion function in the C++
5277/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005278Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005279 assert(Conversion && "Expected to receive a conversion function declaration");
5280
Douglas Gregor9d350972008-12-12 08:25:50 +00005281 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005282
5283 // Make sure we aren't redeclaring the conversion function.
5284 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005285
5286 // C++ [class.conv.fct]p1:
5287 // [...] A conversion function is never used to convert a
5288 // (possibly cv-qualified) object to the (possibly cv-qualified)
5289 // same object type (or a reference to it), to a (possibly
5290 // cv-qualified) base class of that type (or a reference to it),
5291 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005292 // FIXME: Suppress this warning if the conversion function ends up being a
5293 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005294 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005295 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005296 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005297 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005298 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5299 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005300 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005301 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005302 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5303 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005304 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005305 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005306 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005307 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005308 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005309 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005310 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005311 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005312 }
5313
Douglas Gregore80622f2010-09-29 04:25:11 +00005314 if (FunctionTemplateDecl *ConversionTemplate
5315 = Conversion->getDescribedFunctionTemplate())
5316 return ConversionTemplate;
5317
John McCalld226f652010-08-21 09:40:31 +00005318 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005319}
5320
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005321//===----------------------------------------------------------------------===//
5322// Namespace Handling
5323//===----------------------------------------------------------------------===//
5324
John McCallea318642010-08-26 09:15:37 +00005325
5326
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005327/// ActOnStartNamespaceDef - This is called at the start of a namespace
5328/// definition.
John McCalld226f652010-08-21 09:40:31 +00005329Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005330 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005331 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005332 SourceLocation IdentLoc,
5333 IdentifierInfo *II,
5334 SourceLocation LBrace,
5335 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005336 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5337 // For anonymous namespace, take the location of the left brace.
5338 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005339 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005340 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005341 bool IsStd = false;
5342 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005343 Scope *DeclRegionScope = NamespcScope->getParent();
5344
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005345 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005346 if (II) {
5347 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005348 // The identifier in an original-namespace-definition shall not
5349 // have been previously defined in the declarative region in
5350 // which the original-namespace-definition appears. The
5351 // identifier in an original-namespace-definition is the name of
5352 // the namespace. Subsequently in that declarative region, it is
5353 // treated as an original-namespace-name.
5354 //
5355 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005356 // look through using directives, just look for any ordinary names.
5357
5358 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005359 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5360 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005361 NamedDecl *PrevDecl = 0;
5362 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005363 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005364 R.first != R.second; ++R.first) {
5365 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5366 PrevDecl = *R.first;
5367 break;
5368 }
5369 }
5370
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005371 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5372
5373 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005374 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005375 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005376 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005377 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005378 // The user probably just forgot the 'inline', so suggest that it
5379 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005380 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005381 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5382 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005383 Diag(Loc, diag::err_inline_namespace_mismatch)
5384 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005385 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005386 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5387
5388 IsInline = PrevNS->isInline();
5389 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005390 } else if (PrevDecl) {
5391 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005392 Diag(Loc, diag::err_redefinition_different_kind)
5393 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005394 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005395 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005396 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005397 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005398 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005399 // This is the first "real" definition of the namespace "std", so update
5400 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005401 PrevNS = getStdNamespace();
5402 IsStd = true;
5403 AddToKnown = !IsInline;
5404 } else {
5405 // We've seen this namespace for the first time.
5406 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005407 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005408 } else {
John McCall9aeed322009-10-01 00:25:31 +00005409 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005410
5411 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005412 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005413 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005414 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005415 } else {
5416 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005417 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005418 }
5419
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005420 if (PrevNS && IsInline != PrevNS->isInline()) {
5421 // inline-ness must match
5422 Diag(Loc, diag::err_inline_namespace_mismatch)
5423 << IsInline;
5424 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005425
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005426 // Recover by ignoring the new namespace's inline status.
5427 IsInline = PrevNS->isInline();
5428 }
5429 }
5430
5431 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5432 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005433 if (IsInvalid)
5434 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005435
5436 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005437
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005438 // FIXME: Should we be merging attributes?
5439 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005440 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005441
5442 if (IsStd)
5443 StdNamespace = Namespc;
5444 if (AddToKnown)
5445 KnownNamespaces[Namespc] = false;
5446
5447 if (II) {
5448 PushOnScopeChains(Namespc, DeclRegionScope);
5449 } else {
5450 // Link the anonymous namespace into its parent.
5451 DeclContext *Parent = CurContext->getRedeclContext();
5452 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5453 TU->setAnonymousNamespace(Namespc);
5454 } else {
5455 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005456 }
John McCall9aeed322009-10-01 00:25:31 +00005457
Douglas Gregora4181472010-03-24 00:46:35 +00005458 CurContext->addDecl(Namespc);
5459
John McCall9aeed322009-10-01 00:25:31 +00005460 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5461 // behaves as if it were replaced by
5462 // namespace unique { /* empty body */ }
5463 // using namespace unique;
5464 // namespace unique { namespace-body }
5465 // where all occurrences of 'unique' in a translation unit are
5466 // replaced by the same identifier and this identifier differs
5467 // from all other identifiers in the entire program.
5468
5469 // We just create the namespace with an empty name and then add an
5470 // implicit using declaration, just like the standard suggests.
5471 //
5472 // CodeGen enforces the "universally unique" aspect by giving all
5473 // declarations semantically contained within an anonymous
5474 // namespace internal linkage.
5475
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005476 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005477 UsingDirectiveDecl* UD
5478 = UsingDirectiveDecl::Create(Context, CurContext,
5479 /* 'using' */ LBrace,
5480 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005481 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005482 /* identifier */ SourceLocation(),
5483 Namespc,
5484 /* Ancestor */ CurContext);
5485 UD->setImplicit();
5486 CurContext->addDecl(UD);
5487 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005488 }
5489
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005490 ActOnDocumentableDecl(Namespc);
5491
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005492 // Although we could have an invalid decl (i.e. the namespace name is a
5493 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005494 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5495 // for the namespace has the declarations that showed up in that particular
5496 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005497 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005498 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005499}
5500
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005501/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5502/// is a namespace alias, returns the namespace it points to.
5503static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5504 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5505 return AD->getNamespace();
5506 return dyn_cast_or_null<NamespaceDecl>(D);
5507}
5508
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005509/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5510/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005511void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005512 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5513 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005514 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005515 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005516 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005517 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005518}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005519
John McCall384aff82010-08-25 07:42:41 +00005520CXXRecordDecl *Sema::getStdBadAlloc() const {
5521 return cast_or_null<CXXRecordDecl>(
5522 StdBadAlloc.get(Context.getExternalSource()));
5523}
5524
5525NamespaceDecl *Sema::getStdNamespace() const {
5526 return cast_or_null<NamespaceDecl>(
5527 StdNamespace.get(Context.getExternalSource()));
5528}
5529
Douglas Gregor66992202010-06-29 17:53:46 +00005530/// \brief Retrieve the special "std" namespace, which may require us to
5531/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005532NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005533 if (!StdNamespace) {
5534 // The "std" namespace has not yet been defined, so build one implicitly.
5535 StdNamespace = NamespaceDecl::Create(Context,
5536 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005537 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005538 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005539 &PP.getIdentifierTable().get("std"),
5540 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005541 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005542 }
5543
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005544 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005545}
5546
Sebastian Redl395e04d2012-01-17 22:49:33 +00005547bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005548 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005549 "Looking for std::initializer_list outside of C++.");
5550
5551 // We're looking for implicit instantiations of
5552 // template <typename E> class std::initializer_list.
5553
5554 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5555 return false;
5556
Sebastian Redl84760e32012-01-17 22:49:58 +00005557 ClassTemplateDecl *Template = 0;
5558 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005559
Sebastian Redl84760e32012-01-17 22:49:58 +00005560 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005561
Sebastian Redl84760e32012-01-17 22:49:58 +00005562 ClassTemplateSpecializationDecl *Specialization =
5563 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5564 if (!Specialization)
5565 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005566
Sebastian Redl84760e32012-01-17 22:49:58 +00005567 Template = Specialization->getSpecializedTemplate();
5568 Arguments = Specialization->getTemplateArgs().data();
5569 } else if (const TemplateSpecializationType *TST =
5570 Ty->getAs<TemplateSpecializationType>()) {
5571 Template = dyn_cast_or_null<ClassTemplateDecl>(
5572 TST->getTemplateName().getAsTemplateDecl());
5573 Arguments = TST->getArgs();
5574 }
5575 if (!Template)
5576 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005577
5578 if (!StdInitializerList) {
5579 // Haven't recognized std::initializer_list yet, maybe this is it.
5580 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5581 if (TemplateClass->getIdentifier() !=
5582 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005583 !getStdNamespace()->InEnclosingNamespaceSetOf(
5584 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005585 return false;
5586 // This is a template called std::initializer_list, but is it the right
5587 // template?
5588 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005589 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005590 return false;
5591 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5592 return false;
5593
5594 // It's the right template.
5595 StdInitializerList = Template;
5596 }
5597
5598 if (Template != StdInitializerList)
5599 return false;
5600
5601 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005602 if (Element)
5603 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005604 return true;
5605}
5606
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005607static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5608 NamespaceDecl *Std = S.getStdNamespace();
5609 if (!Std) {
5610 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5611 return 0;
5612 }
5613
5614 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5615 Loc, Sema::LookupOrdinaryName);
5616 if (!S.LookupQualifiedName(Result, Std)) {
5617 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5618 return 0;
5619 }
5620 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5621 if (!Template) {
5622 Result.suppressDiagnostics();
5623 // We found something weird. Complain about the first thing we found.
5624 NamedDecl *Found = *Result.begin();
5625 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5626 return 0;
5627 }
5628
5629 // We found some template called std::initializer_list. Now verify that it's
5630 // correct.
5631 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005632 if (Params->getMinRequiredArguments() != 1 ||
5633 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005634 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5635 return 0;
5636 }
5637
5638 return Template;
5639}
5640
5641QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5642 if (!StdInitializerList) {
5643 StdInitializerList = LookupStdInitializerList(*this, Loc);
5644 if (!StdInitializerList)
5645 return QualType();
5646 }
5647
5648 TemplateArgumentListInfo Args(Loc, Loc);
5649 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5650 Context.getTrivialTypeSourceInfo(Element,
5651 Loc)));
5652 return Context.getCanonicalType(
5653 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5654}
5655
Sebastian Redl98d36062012-01-17 22:50:14 +00005656bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5657 // C++ [dcl.init.list]p2:
5658 // A constructor is an initializer-list constructor if its first parameter
5659 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5660 // std::initializer_list<E> for some type E, and either there are no other
5661 // parameters or else all other parameters have default arguments.
5662 if (Ctor->getNumParams() < 1 ||
5663 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5664 return false;
5665
5666 QualType ArgType = Ctor->getParamDecl(0)->getType();
5667 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5668 ArgType = RT->getPointeeType().getUnqualifiedType();
5669
5670 return isStdInitializerList(ArgType, 0);
5671}
5672
Douglas Gregor9172aa62011-03-26 22:25:30 +00005673/// \brief Determine whether a using statement is in a context where it will be
5674/// apply in all contexts.
5675static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5676 switch (CurContext->getDeclKind()) {
5677 case Decl::TranslationUnit:
5678 return true;
5679 case Decl::LinkageSpec:
5680 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5681 default:
5682 return false;
5683 }
5684}
5685
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005686namespace {
5687
5688// Callback to only accept typo corrections that are namespaces.
5689class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5690 public:
5691 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5692 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5693 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5694 }
5695 return false;
5696 }
5697};
5698
5699}
5700
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005701static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5702 CXXScopeSpec &SS,
5703 SourceLocation IdentLoc,
5704 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005705 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005706 R.clear();
5707 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005708 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005709 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005710 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5711 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005712 if (DeclContext *DC = S.computeDeclContext(SS, false))
5713 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5714 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5715 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5716 else
5717 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5718 << Ident << CorrectedQuotedStr
5719 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005720
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005721 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5722 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005723
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005724 R.addDecl(Corrected.getCorrectionDecl());
5725 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005726 }
5727 return false;
5728}
5729
John McCalld226f652010-08-21 09:40:31 +00005730Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005731 SourceLocation UsingLoc,
5732 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005733 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005734 SourceLocation IdentLoc,
5735 IdentifierInfo *NamespcName,
5736 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005737 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5738 assert(NamespcName && "Invalid NamespcName.");
5739 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005740
5741 // This can only happen along a recovery path.
5742 while (S->getFlags() & Scope::TemplateParamScope)
5743 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005744 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005745
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005746 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005747 NestedNameSpecifier *Qualifier = 0;
5748 if (SS.isSet())
5749 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5750
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005751 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005752 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5753 LookupParsedName(R, S, &SS);
5754 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005755 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005756
Douglas Gregor66992202010-06-29 17:53:46 +00005757 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005758 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005759 // Allow "using namespace std;" or "using namespace ::std;" even if
5760 // "std" hasn't been defined yet, for GCC compatibility.
5761 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5762 NamespcName->isStr("std")) {
5763 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005764 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005765 R.resolveKind();
5766 }
5767 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005768 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005769 }
5770
John McCallf36e02d2009-10-09 21:13:30 +00005771 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005772 NamedDecl *Named = R.getFoundDecl();
5773 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5774 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005775 // C++ [namespace.udir]p1:
5776 // A using-directive specifies that the names in the nominated
5777 // namespace can be used in the scope in which the
5778 // using-directive appears after the using-directive. During
5779 // unqualified name lookup (3.4.1), the names appear as if they
5780 // were declared in the nearest enclosing namespace which
5781 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005782 // namespace. [Note: in this context, "contains" means "contains
5783 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005784
5785 // Find enclosing context containing both using-directive and
5786 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005787 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005788 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5789 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5790 CommonAncestor = CommonAncestor->getParent();
5791
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005792 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005793 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005794 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005795
Douglas Gregor9172aa62011-03-26 22:25:30 +00005796 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005797 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005798 Diag(IdentLoc, diag::warn_using_directive_in_header);
5799 }
5800
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005801 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005802 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005803 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005804 }
5805
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005806 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005807 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005808}
5809
5810void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005811 // If the scope has an associated entity and the using directive is at
5812 // namespace or translation unit scope, add the UsingDirectiveDecl into
5813 // its lookup structure so qualified name lookup can find it.
5814 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5815 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005816 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005817 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005818 // Otherwise, it is at block sope. The using-directives will affect lookup
5819 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005820 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005821}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005822
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005823
John McCalld226f652010-08-21 09:40:31 +00005824Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005825 AccessSpecifier AS,
5826 bool HasUsingKeyword,
5827 SourceLocation UsingLoc,
5828 CXXScopeSpec &SS,
5829 UnqualifiedId &Name,
5830 AttributeList *AttrList,
5831 bool IsTypeName,
5832 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005833 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005834
Douglas Gregor12c118a2009-11-04 16:30:06 +00005835 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005836 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005837 case UnqualifiedId::IK_Identifier:
5838 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005839 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005840 case UnqualifiedId::IK_ConversionFunctionId:
5841 break;
5842
5843 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005844 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005845 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005846 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005847 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005848 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5849 // instead once inheriting constructors work.
5850 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005851 diag::err_using_decl_constructor)
5852 << SS.getRange();
5853
David Blaikie4e4d0842012-03-11 07:00:24 +00005854 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005855
John McCalld226f652010-08-21 09:40:31 +00005856 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005857
5858 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005859 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005860 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005861 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005862
5863 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005864 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005865 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005866 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005867 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005868
5869 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5870 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005871 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005872 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005873
John McCall60fa3cf2009-12-11 02:10:03 +00005874 // Warn about using declarations.
5875 // TODO: store that the declaration was written without 'using' and
5876 // talk about access decls instead of using decls in the
5877 // diagnostics.
5878 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005879 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005880
5881 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005882 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005883 }
5884
Douglas Gregor56c04582010-12-16 00:46:58 +00005885 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5886 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5887 return 0;
5888
John McCall9488ea12009-11-17 05:59:44 +00005889 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005890 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005891 /* IsInstantiation */ false,
5892 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005893 if (UD)
5894 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005895
John McCalld226f652010-08-21 09:40:31 +00005896 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005897}
5898
Douglas Gregor09acc982010-07-07 23:08:52 +00005899/// \brief Determine whether a using declaration considers the given
5900/// declarations as "equivalent", e.g., if they are redeclarations of
5901/// the same entity or are both typedefs of the same type.
5902static bool
5903IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5904 bool &SuppressRedeclaration) {
5905 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5906 SuppressRedeclaration = false;
5907 return true;
5908 }
5909
Richard Smith162e1c12011-04-15 14:24:37 +00005910 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5911 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005912 SuppressRedeclaration = true;
5913 return Context.hasSameType(TD1->getUnderlyingType(),
5914 TD2->getUnderlyingType());
5915 }
5916
5917 return false;
5918}
5919
5920
John McCall9f54ad42009-12-10 09:41:52 +00005921/// Determines whether to create a using shadow decl for a particular
5922/// decl, given the set of decls existing prior to this using lookup.
5923bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5924 const LookupResult &Previous) {
5925 // Diagnose finding a decl which is not from a base class of the
5926 // current class. We do this now because there are cases where this
5927 // function will silently decide not to build a shadow decl, which
5928 // will pre-empt further diagnostics.
5929 //
5930 // We don't need to do this in C++0x because we do the check once on
5931 // the qualifier.
5932 //
5933 // FIXME: diagnose the following if we care enough:
5934 // struct A { int foo; };
5935 // struct B : A { using A::foo; };
5936 // template <class T> struct C : A {};
5937 // template <class T> struct D : C<T> { using B::foo; } // <---
5938 // This is invalid (during instantiation) in C++03 because B::foo
5939 // resolves to the using decl in B, which is not a base class of D<T>.
5940 // We can't diagnose it immediately because C<T> is an unknown
5941 // specialization. The UsingShadowDecl in D<T> then points directly
5942 // to A::foo, which will look well-formed when we instantiate.
5943 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005944 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005945 DeclContext *OrigDC = Orig->getDeclContext();
5946
5947 // Handle enums and anonymous structs.
5948 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5949 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5950 while (OrigRec->isAnonymousStructOrUnion())
5951 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5952
5953 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5954 if (OrigDC == CurContext) {
5955 Diag(Using->getLocation(),
5956 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005957 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005958 Diag(Orig->getLocation(), diag::note_using_decl_target);
5959 return true;
5960 }
5961
Douglas Gregordc355712011-02-25 00:36:19 +00005962 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005963 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005964 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005965 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005966 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005967 Diag(Orig->getLocation(), diag::note_using_decl_target);
5968 return true;
5969 }
5970 }
5971
5972 if (Previous.empty()) return false;
5973
5974 NamedDecl *Target = Orig;
5975 if (isa<UsingShadowDecl>(Target))
5976 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5977
John McCalld7533ec2009-12-11 02:33:26 +00005978 // If the target happens to be one of the previous declarations, we
5979 // don't have a conflict.
5980 //
5981 // FIXME: but we might be increasing its access, in which case we
5982 // should redeclare it.
5983 NamedDecl *NonTag = 0, *Tag = 0;
5984 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5985 I != E; ++I) {
5986 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005987 bool Result;
5988 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5989 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005990
5991 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5992 }
5993
John McCall9f54ad42009-12-10 09:41:52 +00005994 if (Target->isFunctionOrFunctionTemplate()) {
5995 FunctionDecl *FD;
5996 if (isa<FunctionTemplateDecl>(Target))
5997 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5998 else
5999 FD = cast<FunctionDecl>(Target);
6000
6001 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006002 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006003 case Ovl_Overload:
6004 return false;
6005
6006 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006007 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006008 break;
6009
6010 // We found a decl with the exact signature.
6011 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006012 // If we're in a record, we want to hide the target, so we
6013 // return true (without a diagnostic) to tell the caller not to
6014 // build a shadow decl.
6015 if (CurContext->isRecord())
6016 return true;
6017
6018 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006019 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006020 break;
6021 }
6022
6023 Diag(Target->getLocation(), diag::note_using_decl_target);
6024 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6025 return true;
6026 }
6027
6028 // Target is not a function.
6029
John McCall9f54ad42009-12-10 09:41:52 +00006030 if (isa<TagDecl>(Target)) {
6031 // No conflict between a tag and a non-tag.
6032 if (!Tag) return false;
6033
John McCall41ce66f2009-12-10 19:51:03 +00006034 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006035 Diag(Target->getLocation(), diag::note_using_decl_target);
6036 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6037 return true;
6038 }
6039
6040 // No conflict between a tag and a non-tag.
6041 if (!NonTag) return false;
6042
John McCall41ce66f2009-12-10 19:51:03 +00006043 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006044 Diag(Target->getLocation(), diag::note_using_decl_target);
6045 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6046 return true;
6047}
6048
John McCall9488ea12009-11-17 05:59:44 +00006049/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006050UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006051 UsingDecl *UD,
6052 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006053
6054 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006055 NamedDecl *Target = Orig;
6056 if (isa<UsingShadowDecl>(Target)) {
6057 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6058 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006059 }
6060
6061 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006062 = UsingShadowDecl::Create(Context, CurContext,
6063 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006064 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006065
6066 Shadow->setAccess(UD->getAccess());
6067 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6068 Shadow->setInvalidDecl();
6069
John McCall9488ea12009-11-17 05:59:44 +00006070 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006071 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006072 else
John McCall604e7f12009-12-08 07:46:18 +00006073 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006074
John McCall604e7f12009-12-08 07:46:18 +00006075
John McCall9f54ad42009-12-10 09:41:52 +00006076 return Shadow;
6077}
John McCall604e7f12009-12-08 07:46:18 +00006078
John McCall9f54ad42009-12-10 09:41:52 +00006079/// Hides a using shadow declaration. This is required by the current
6080/// using-decl implementation when a resolvable using declaration in a
6081/// class is followed by a declaration which would hide or override
6082/// one or more of the using decl's targets; for example:
6083///
6084/// struct Base { void foo(int); };
6085/// struct Derived : Base {
6086/// using Base::foo;
6087/// void foo(int);
6088/// };
6089///
6090/// The governing language is C++03 [namespace.udecl]p12:
6091///
6092/// When a using-declaration brings names from a base class into a
6093/// derived class scope, member functions in the derived class
6094/// override and/or hide member functions with the same name and
6095/// parameter types in a base class (rather than conflicting).
6096///
6097/// There are two ways to implement this:
6098/// (1) optimistically create shadow decls when they're not hidden
6099/// by existing declarations, or
6100/// (2) don't create any shadow decls (or at least don't make them
6101/// visible) until we've fully parsed/instantiated the class.
6102/// The problem with (1) is that we might have to retroactively remove
6103/// a shadow decl, which requires several O(n) operations because the
6104/// decl structures are (very reasonably) not designed for removal.
6105/// (2) avoids this but is very fiddly and phase-dependent.
6106void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006107 if (Shadow->getDeclName().getNameKind() ==
6108 DeclarationName::CXXConversionFunctionName)
6109 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6110
John McCall9f54ad42009-12-10 09:41:52 +00006111 // Remove it from the DeclContext...
6112 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006113
John McCall9f54ad42009-12-10 09:41:52 +00006114 // ...and the scope, if applicable...
6115 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006116 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006117 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006118 }
6119
John McCall9f54ad42009-12-10 09:41:52 +00006120 // ...and the using decl.
6121 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6122
6123 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006124 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006125}
6126
John McCall7ba107a2009-11-18 02:36:19 +00006127/// Builds a using declaration.
6128///
6129/// \param IsInstantiation - Whether this call arises from an
6130/// instantiation of an unresolved using declaration. We treat
6131/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006132NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6133 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006134 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006135 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006136 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006137 bool IsInstantiation,
6138 bool IsTypeName,
6139 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006140 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006141 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006142 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006143
Anders Carlsson550b14b2009-08-28 05:49:21 +00006144 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006145
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006146 if (SS.isEmpty()) {
6147 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006148 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006149 }
Mike Stump1eb44332009-09-09 15:08:12 +00006150
John McCall9f54ad42009-12-10 09:41:52 +00006151 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006152 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006153 ForRedeclaration);
6154 Previous.setHideTags(false);
6155 if (S) {
6156 LookupName(Previous, S);
6157
6158 // It is really dumb that we have to do this.
6159 LookupResult::Filter F = Previous.makeFilter();
6160 while (F.hasNext()) {
6161 NamedDecl *D = F.next();
6162 if (!isDeclInScope(D, CurContext, S))
6163 F.erase();
6164 }
6165 F.done();
6166 } else {
6167 assert(IsInstantiation && "no scope in non-instantiation");
6168 assert(CurContext->isRecord() && "scope not record in instantiation");
6169 LookupQualifiedName(Previous, CurContext);
6170 }
6171
John McCall9f54ad42009-12-10 09:41:52 +00006172 // Check for invalid redeclarations.
6173 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6174 return 0;
6175
6176 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006177 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6178 return 0;
6179
John McCallaf8e6ed2009-11-12 03:15:40 +00006180 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006181 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006182 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006183 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006184 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006185 // FIXME: not all declaration name kinds are legal here
6186 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6187 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006188 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006189 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006190 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006191 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6192 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006193 }
John McCalled976492009-12-04 22:46:56 +00006194 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006195 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6196 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006197 }
John McCalled976492009-12-04 22:46:56 +00006198 D->setAccess(AS);
6199 CurContext->addDecl(D);
6200
6201 if (!LookupContext) return D;
6202 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006203
John McCall77bb1aa2010-05-01 00:40:08 +00006204 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006205 UD->setInvalidDecl();
6206 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006207 }
6208
Richard Smithc5a89a12012-04-02 01:30:27 +00006209 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006210 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006211 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006212 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006213 return UD;
6214 }
6215
6216 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006217
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006218 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006219
John McCall604e7f12009-12-08 07:46:18 +00006220 // Unlike most lookups, we don't always want to hide tag
6221 // declarations: tag names are visible through the using declaration
6222 // even if hidden by ordinary names, *except* in a dependent context
6223 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006224 if (!IsInstantiation)
6225 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006226
John McCallb9abd8722012-04-07 03:04:20 +00006227 // For the purposes of this lookup, we have a base object type
6228 // equal to that of the current context.
6229 if (CurContext->isRecord()) {
6230 R.setBaseObjectType(
6231 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6232 }
6233
John McCalla24dc2e2009-11-17 02:14:36 +00006234 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006235
John McCallf36e02d2009-10-09 21:13:30 +00006236 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006237 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006238 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006239 UD->setInvalidDecl();
6240 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006241 }
6242
John McCalled976492009-12-04 22:46:56 +00006243 if (R.isAmbiguous()) {
6244 UD->setInvalidDecl();
6245 return UD;
6246 }
Mike Stump1eb44332009-09-09 15:08:12 +00006247
John McCall7ba107a2009-11-18 02:36:19 +00006248 if (IsTypeName) {
6249 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006250 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006251 Diag(IdentLoc, diag::err_using_typename_non_type);
6252 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6253 Diag((*I)->getUnderlyingDecl()->getLocation(),
6254 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006255 UD->setInvalidDecl();
6256 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006257 }
6258 } else {
6259 // If we asked for a non-typename and we got a type, error out,
6260 // but only if this is an instantiation of an unresolved using
6261 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006262 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006263 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6264 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006265 UD->setInvalidDecl();
6266 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006267 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006268 }
6269
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006270 // C++0x N2914 [namespace.udecl]p6:
6271 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006272 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006273 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6274 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006275 UD->setInvalidDecl();
6276 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006277 }
Mike Stump1eb44332009-09-09 15:08:12 +00006278
John McCall9f54ad42009-12-10 09:41:52 +00006279 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6280 if (!CheckUsingShadowDecl(UD, *I, Previous))
6281 BuildUsingShadowDecl(S, UD, *I);
6282 }
John McCall9488ea12009-11-17 05:59:44 +00006283
6284 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006285}
6286
Sebastian Redlf677ea32011-02-05 19:23:19 +00006287/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006288bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6289 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006290
Douglas Gregordc355712011-02-25 00:36:19 +00006291 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006292 assert(SourceType &&
6293 "Using decl naming constructor doesn't have type in scope spec.");
6294 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6295
6296 // Check whether the named type is a direct base class.
6297 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6298 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6299 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6300 BaseIt != BaseE; ++BaseIt) {
6301 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6302 if (CanonicalSourceType == BaseType)
6303 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006304 if (BaseIt->getType()->isDependentType())
6305 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006306 }
6307
6308 if (BaseIt == BaseE) {
6309 // Did not find SourceType in the bases.
6310 Diag(UD->getUsingLocation(),
6311 diag::err_using_decl_constructor_not_in_direct_base)
6312 << UD->getNameInfo().getSourceRange()
6313 << QualType(SourceType, 0) << TargetClass;
6314 return true;
6315 }
6316
Richard Smithc5a89a12012-04-02 01:30:27 +00006317 if (!CurContext->isDependentContext())
6318 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006319
6320 return false;
6321}
6322
John McCall9f54ad42009-12-10 09:41:52 +00006323/// Checks that the given using declaration is not an invalid
6324/// redeclaration. Note that this is checking only for the using decl
6325/// itself, not for any ill-formedness among the UsingShadowDecls.
6326bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6327 bool isTypeName,
6328 const CXXScopeSpec &SS,
6329 SourceLocation NameLoc,
6330 const LookupResult &Prev) {
6331 // C++03 [namespace.udecl]p8:
6332 // C++0x [namespace.udecl]p10:
6333 // A using-declaration is a declaration and can therefore be used
6334 // repeatedly where (and only where) multiple declarations are
6335 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006336 //
John McCall8a726212010-11-29 18:01:58 +00006337 // That's in non-member contexts.
6338 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006339 return false;
6340
6341 NestedNameSpecifier *Qual
6342 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6343
6344 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6345 NamedDecl *D = *I;
6346
6347 bool DTypename;
6348 NestedNameSpecifier *DQual;
6349 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6350 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006351 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006352 } else if (UnresolvedUsingValueDecl *UD
6353 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6354 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006355 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006356 } else if (UnresolvedUsingTypenameDecl *UD
6357 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6358 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006359 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006360 } else continue;
6361
6362 // using decls differ if one says 'typename' and the other doesn't.
6363 // FIXME: non-dependent using decls?
6364 if (isTypeName != DTypename) continue;
6365
6366 // using decls differ if they name different scopes (but note that
6367 // template instantiation can cause this check to trigger when it
6368 // didn't before instantiation).
6369 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6370 Context.getCanonicalNestedNameSpecifier(DQual))
6371 continue;
6372
6373 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006374 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006375 return true;
6376 }
6377
6378 return false;
6379}
6380
John McCall604e7f12009-12-08 07:46:18 +00006381
John McCalled976492009-12-04 22:46:56 +00006382/// Checks that the given nested-name qualifier used in a using decl
6383/// in the current context is appropriately related to the current
6384/// scope. If an error is found, diagnoses it and returns true.
6385bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6386 const CXXScopeSpec &SS,
6387 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006388 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006389
John McCall604e7f12009-12-08 07:46:18 +00006390 if (!CurContext->isRecord()) {
6391 // C++03 [namespace.udecl]p3:
6392 // C++0x [namespace.udecl]p8:
6393 // A using-declaration for a class member shall be a member-declaration.
6394
6395 // If we weren't able to compute a valid scope, it must be a
6396 // dependent class scope.
6397 if (!NamedContext || NamedContext->isRecord()) {
6398 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6399 << SS.getRange();
6400 return true;
6401 }
6402
6403 // Otherwise, everything is known to be fine.
6404 return false;
6405 }
6406
6407 // The current scope is a record.
6408
6409 // If the named context is dependent, we can't decide much.
6410 if (!NamedContext) {
6411 // FIXME: in C++0x, we can diagnose if we can prove that the
6412 // nested-name-specifier does not refer to a base class, which is
6413 // still possible in some cases.
6414
6415 // Otherwise we have to conservatively report that things might be
6416 // okay.
6417 return false;
6418 }
6419
6420 if (!NamedContext->isRecord()) {
6421 // Ideally this would point at the last name in the specifier,
6422 // but we don't have that level of source info.
6423 Diag(SS.getRange().getBegin(),
6424 diag::err_using_decl_nested_name_specifier_is_not_class)
6425 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6426 return true;
6427 }
6428
Douglas Gregor6fb07292010-12-21 07:41:49 +00006429 if (!NamedContext->isDependentContext() &&
6430 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6431 return true;
6432
David Blaikie4e4d0842012-03-11 07:00:24 +00006433 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006434 // C++0x [namespace.udecl]p3:
6435 // In a using-declaration used as a member-declaration, the
6436 // nested-name-specifier shall name a base class of the class
6437 // being defined.
6438
6439 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6440 cast<CXXRecordDecl>(NamedContext))) {
6441 if (CurContext == NamedContext) {
6442 Diag(NameLoc,
6443 diag::err_using_decl_nested_name_specifier_is_current_class)
6444 << SS.getRange();
6445 return true;
6446 }
6447
6448 Diag(SS.getRange().getBegin(),
6449 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6450 << (NestedNameSpecifier*) SS.getScopeRep()
6451 << cast<CXXRecordDecl>(CurContext)
6452 << SS.getRange();
6453 return true;
6454 }
6455
6456 return false;
6457 }
6458
6459 // C++03 [namespace.udecl]p4:
6460 // A using-declaration used as a member-declaration shall refer
6461 // to a member of a base class of the class being defined [etc.].
6462
6463 // Salient point: SS doesn't have to name a base class as long as
6464 // lookup only finds members from base classes. Therefore we can
6465 // diagnose here only if we can prove that that can't happen,
6466 // i.e. if the class hierarchies provably don't intersect.
6467
6468 // TODO: it would be nice if "definitely valid" results were cached
6469 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6470 // need to be repeated.
6471
6472 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006473 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006474
6475 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6476 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6477 Data->Bases.insert(Base);
6478 return true;
6479 }
6480
6481 bool hasDependentBases(const CXXRecordDecl *Class) {
6482 return !Class->forallBases(collect, this);
6483 }
6484
6485 /// Returns true if the base is dependent or is one of the
6486 /// accumulated base classes.
6487 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6488 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6489 return !Data->Bases.count(Base);
6490 }
6491
6492 bool mightShareBases(const CXXRecordDecl *Class) {
6493 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6494 }
6495 };
6496
6497 UserData Data;
6498
6499 // Returns false if we find a dependent base.
6500 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6501 return false;
6502
6503 // Returns false if the class has a dependent base or if it or one
6504 // of its bases is present in the base set of the current context.
6505 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6506 return false;
6507
6508 Diag(SS.getRange().getBegin(),
6509 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6510 << (NestedNameSpecifier*) SS.getScopeRep()
6511 << cast<CXXRecordDecl>(CurContext)
6512 << SS.getRange();
6513
6514 return true;
John McCalled976492009-12-04 22:46:56 +00006515}
6516
Richard Smith162e1c12011-04-15 14:24:37 +00006517Decl *Sema::ActOnAliasDeclaration(Scope *S,
6518 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006519 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006520 SourceLocation UsingLoc,
6521 UnqualifiedId &Name,
6522 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006523 // Skip up to the relevant declaration scope.
6524 while (S->getFlags() & Scope::TemplateParamScope)
6525 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006526 assert((S->getFlags() & Scope::DeclScope) &&
6527 "got alias-declaration outside of declaration scope");
6528
6529 if (Type.isInvalid())
6530 return 0;
6531
6532 bool Invalid = false;
6533 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6534 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006535 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006536
6537 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6538 return 0;
6539
6540 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006541 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006542 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006543 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6544 TInfo->getTypeLoc().getBeginLoc());
6545 }
Richard Smith162e1c12011-04-15 14:24:37 +00006546
6547 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6548 LookupName(Previous, S);
6549
6550 // Warn about shadowing the name of a template parameter.
6551 if (Previous.isSingleResult() &&
6552 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006553 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006554 Previous.clear();
6555 }
6556
6557 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6558 "name in alias declaration must be an identifier");
6559 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6560 Name.StartLocation,
6561 Name.Identifier, TInfo);
6562
6563 NewTD->setAccess(AS);
6564
6565 if (Invalid)
6566 NewTD->setInvalidDecl();
6567
Richard Smith3e4c6c42011-05-05 21:57:07 +00006568 CheckTypedefForVariablyModifiedType(S, NewTD);
6569 Invalid |= NewTD->isInvalidDecl();
6570
Richard Smith162e1c12011-04-15 14:24:37 +00006571 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006572
6573 NamedDecl *NewND;
6574 if (TemplateParamLists.size()) {
6575 TypeAliasTemplateDecl *OldDecl = 0;
6576 TemplateParameterList *OldTemplateParams = 0;
6577
6578 if (TemplateParamLists.size() != 1) {
6579 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006580 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6581 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006582 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006583 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006584
6585 // Only consider previous declarations in the same scope.
6586 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6587 /*ExplicitInstantiationOrSpecialization*/false);
6588 if (!Previous.empty()) {
6589 Redeclaration = true;
6590
6591 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6592 if (!OldDecl && !Invalid) {
6593 Diag(UsingLoc, diag::err_redefinition_different_kind)
6594 << Name.Identifier;
6595
6596 NamedDecl *OldD = Previous.getRepresentativeDecl();
6597 if (OldD->getLocation().isValid())
6598 Diag(OldD->getLocation(), diag::note_previous_definition);
6599
6600 Invalid = true;
6601 }
6602
6603 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6604 if (TemplateParameterListsAreEqual(TemplateParams,
6605 OldDecl->getTemplateParameters(),
6606 /*Complain=*/true,
6607 TPL_TemplateMatch))
6608 OldTemplateParams = OldDecl->getTemplateParameters();
6609 else
6610 Invalid = true;
6611
6612 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6613 if (!Invalid &&
6614 !Context.hasSameType(OldTD->getUnderlyingType(),
6615 NewTD->getUnderlyingType())) {
6616 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6617 // but we can't reasonably accept it.
6618 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6619 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6620 if (OldTD->getLocation().isValid())
6621 Diag(OldTD->getLocation(), diag::note_previous_definition);
6622 Invalid = true;
6623 }
6624 }
6625 }
6626
6627 // Merge any previous default template arguments into our parameters,
6628 // and check the parameter list.
6629 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6630 TPC_TypeAliasTemplate))
6631 return 0;
6632
6633 TypeAliasTemplateDecl *NewDecl =
6634 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6635 Name.Identifier, TemplateParams,
6636 NewTD);
6637
6638 NewDecl->setAccess(AS);
6639
6640 if (Invalid)
6641 NewDecl->setInvalidDecl();
6642 else if (OldDecl)
6643 NewDecl->setPreviousDeclaration(OldDecl);
6644
6645 NewND = NewDecl;
6646 } else {
6647 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6648 NewND = NewTD;
6649 }
Richard Smith162e1c12011-04-15 14:24:37 +00006650
6651 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006652 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006653
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006654 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006655 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006656}
6657
John McCalld226f652010-08-21 09:40:31 +00006658Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006659 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006660 SourceLocation AliasLoc,
6661 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006662 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006663 SourceLocation IdentLoc,
6664 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006665
Anders Carlsson81c85c42009-03-28 23:53:49 +00006666 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006667 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6668 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006669
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006670 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006671 NamedDecl *PrevDecl
6672 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6673 ForRedeclaration);
6674 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6675 PrevDecl = 0;
6676
6677 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006678 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006679 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006680 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006681 // FIXME: At some point, we'll want to create the (redundant)
6682 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006683 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006684 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006685 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006686 }
Mike Stump1eb44332009-09-09 15:08:12 +00006687
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006688 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6689 diag::err_redefinition_different_kind;
6690 Diag(AliasLoc, DiagID) << Alias;
6691 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006692 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006693 }
6694
John McCalla24dc2e2009-11-17 02:14:36 +00006695 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006696 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006697
John McCallf36e02d2009-10-09 21:13:30 +00006698 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006699 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006700 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006701 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006702 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006703 }
Mike Stump1eb44332009-09-09 15:08:12 +00006704
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006705 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006706 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006707 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006708 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006709
John McCall3dbd3d52010-02-16 06:53:13 +00006710 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006711 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006712}
6713
Douglas Gregor39957dc2010-05-01 15:04:51 +00006714namespace {
6715 /// \brief Scoped object used to handle the state changes required in Sema
6716 /// to implicitly define the body of a C++ member function;
6717 class ImplicitlyDefinedFunctionScope {
6718 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006719 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006720
6721 public:
6722 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006723 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006724 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006725 S.PushFunctionScope();
6726 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6727 }
6728
6729 ~ImplicitlyDefinedFunctionScope() {
6730 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006731 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006732 }
6733 };
6734}
6735
Sean Hunt001cad92011-05-10 00:49:42 +00006736Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006737Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6738 CXXMethodDecl *MD) {
6739 CXXRecordDecl *ClassDecl = MD->getParent();
6740
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006741 // C++ [except.spec]p14:
6742 // An implicitly declared special member function (Clause 12) shall have an
6743 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006744 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006745 if (ClassDecl->isInvalidDecl())
6746 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006747
Sebastian Redl60618fa2011-03-12 11:50:43 +00006748 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006749 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6750 BEnd = ClassDecl->bases_end();
6751 B != BEnd; ++B) {
6752 if (B->isVirtual()) // Handled below.
6753 continue;
6754
Douglas Gregor18274032010-07-03 00:47:00 +00006755 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6756 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006757 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6758 // If this is a deleted function, add it anyway. This might be conformant
6759 // with the standard. This might not. I'm not sure. It might not matter.
6760 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006761 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006762 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006763 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006764
6765 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006766 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6767 BEnd = ClassDecl->vbases_end();
6768 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006769 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6770 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006771 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6772 // If this is a deleted function, add it anyway. This might be conformant
6773 // with the standard. This might not. I'm not sure. It might not matter.
6774 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006775 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006776 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006777 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006778
6779 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006780 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6781 FEnd = ClassDecl->field_end();
6782 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006783 if (F->hasInClassInitializer()) {
6784 if (Expr *E = F->getInClassInitializer())
6785 ExceptSpec.CalledExpr(E);
6786 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006787 // DR1351:
6788 // If the brace-or-equal-initializer of a non-static data member
6789 // invokes a defaulted default constructor of its class or of an
6790 // enclosing class in a potentially evaluated subexpression, the
6791 // program is ill-formed.
6792 //
6793 // This resolution is unworkable: the exception specification of the
6794 // default constructor can be needed in an unevaluated context, in
6795 // particular, in the operand of a noexcept-expression, and we can be
6796 // unable to compute an exception specification for an enclosed class.
6797 //
6798 // We do not allow an in-class initializer to require the evaluation
6799 // of the exception specification for any in-class initializer whose
6800 // definition is not lexically complete.
6801 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006802 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006803 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006804 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6805 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6806 // If this is a deleted function, add it anyway. This might be conformant
6807 // with the standard. This might not. I'm not sure. It might not matter.
6808 // In particular, the problem is that this function never gets called. It
6809 // might just be ill-formed because this function attempts to refer to
6810 // a deleted function here.
6811 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006812 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006813 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006814 }
John McCalle23cf432010-12-14 08:05:40 +00006815
Sean Hunt001cad92011-05-10 00:49:42 +00006816 return ExceptSpec;
6817}
6818
6819CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6820 CXXRecordDecl *ClassDecl) {
6821 // C++ [class.ctor]p5:
6822 // A default constructor for a class X is a constructor of class X
6823 // that can be called without an argument. If there is no
6824 // user-declared constructor for class X, a default constructor is
6825 // implicitly declared. An implicitly-declared default constructor
6826 // is an inline public member of its class.
6827 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6828 "Should not build implicit default constructor!");
6829
Richard Smith7756afa2012-06-10 05:43:50 +00006830 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6831 CXXDefaultConstructor,
6832 false);
6833
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006834 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006835 CanQualType ClassType
6836 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006837 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006838 DeclarationName Name
6839 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006840 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006841 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00006842 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00006843 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00006844 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006845 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006846 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006847 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006848 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00006849
6850 // Build an exception specification pointing back at this constructor.
6851 FunctionProtoType::ExtProtoInfo EPI;
6852 EPI.ExceptionSpecType = EST_Unevaluated;
6853 EPI.ExceptionSpecDecl = DefaultCon;
6854 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6855
Douglas Gregor18274032010-07-03 00:47:00 +00006856 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006857 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6858
Douglas Gregor23c94db2010-07-02 17:43:08 +00006859 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006860 PushOnScopeChains(DefaultCon, S, false);
6861 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006862
Sean Hunte16da072011-10-10 06:18:57 +00006863 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006864 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006865
Douglas Gregor32df23e2010-07-01 22:02:46 +00006866 return DefaultCon;
6867}
6868
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006869void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6870 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006871 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006872 !Constructor->doesThisDeclarationHaveABody() &&
6873 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006874 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006875
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006876 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006877 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006878
Douglas Gregor39957dc2010-05-01 15:04:51 +00006879 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006880 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006881 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006882 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006883 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006884 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006885 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006886 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006887 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006888
6889 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00006890 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006891
6892 Constructor->setUsed();
6893 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006894
6895 if (ASTMutationListener *L = getASTMutationListener()) {
6896 L->CompletedImplicitDefinition(Constructor);
6897 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006898}
6899
Richard Smith7a614d82011-06-11 17:19:42 +00006900void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6901 if (!D) return;
6902 AdjustDeclIfTemplate(D);
6903
6904 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00006905
Richard Smithb9d0b762012-07-27 04:22:15 +00006906 if (!ClassDecl->isDependentType())
6907 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006908}
6909
Sebastian Redlf677ea32011-02-05 19:23:19 +00006910void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6911 // We start with an initial pass over the base classes to collect those that
6912 // inherit constructors from. If there are none, we can forgo all further
6913 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006914 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006915 BasesVector BasesToInheritFrom;
6916 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6917 BaseE = ClassDecl->bases_end();
6918 BaseIt != BaseE; ++BaseIt) {
6919 if (BaseIt->getInheritConstructors()) {
6920 QualType Base = BaseIt->getType();
6921 if (Base->isDependentType()) {
6922 // If we inherit constructors from anything that is dependent, just
6923 // abort processing altogether. We'll get another chance for the
6924 // instantiations.
6925 return;
6926 }
6927 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6928 }
6929 }
6930 if (BasesToInheritFrom.empty())
6931 return;
6932
6933 // Now collect the constructors that we already have in the current class.
6934 // Those take precedence over inherited constructors.
6935 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6936 // unless there is a user-declared constructor with the same signature in
6937 // the class where the using-declaration appears.
6938 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6939 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6940 CtorE = ClassDecl->ctor_end();
6941 CtorIt != CtorE; ++CtorIt) {
6942 ExistingConstructors.insert(
6943 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6944 }
6945
Sebastian Redlf677ea32011-02-05 19:23:19 +00006946 DeclarationName CreatedCtorName =
6947 Context.DeclarationNames.getCXXConstructorName(
6948 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6949
6950 // Now comes the true work.
6951 // First, we keep a map from constructor types to the base that introduced
6952 // them. Needed for finding conflicting constructors. We also keep the
6953 // actually inserted declarations in there, for pretty diagnostics.
6954 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6955 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6956 ConstructorToSourceMap InheritedConstructors;
6957 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6958 BaseE = BasesToInheritFrom.end();
6959 BaseIt != BaseE; ++BaseIt) {
6960 const RecordType *Base = *BaseIt;
6961 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6962 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6963 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6964 CtorE = BaseDecl->ctor_end();
6965 CtorIt != CtorE; ++CtorIt) {
6966 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006967 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006968 DeclarationName Name =
6969 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006970 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6971 LookupQualifiedName(Result, CurContext);
6972 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006973 SourceLocation UsingLoc = UD ? UD->getLocation() :
6974 ClassDecl->getLocation();
6975
6976 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6977 // from the class X named in the using-declaration consists of actual
6978 // constructors and notional constructors that result from the
6979 // transformation of defaulted parameters as follows:
6980 // - all non-template default constructors of X, and
6981 // - for each non-template constructor of X that has at least one
6982 // parameter with a default argument, the set of constructors that
6983 // results from omitting any ellipsis parameter specification and
6984 // successively omitting parameters with a default argument from the
6985 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00006986 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006987 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6988 const FunctionProtoType *BaseCtorType =
6989 BaseCtor->getType()->getAs<FunctionProtoType>();
6990
6991 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6992 maxParams = BaseCtor->getNumParams();
6993 params <= maxParams; ++params) {
6994 // Skip default constructors. They're never inherited.
6995 if (params == 0)
6996 continue;
6997 // Skip copy and move constructors for the same reason.
6998 if (CanBeCopyOrMove && params == 1)
6999 continue;
7000
7001 // Build up a function type for this particular constructor.
7002 // FIXME: The working paper does not consider that the exception spec
7003 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007004 // source. This code doesn't yet, either. When it does, this code will
7005 // need to be delayed until after exception specifications and in-class
7006 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007007 const Type *NewCtorType;
7008 if (params == maxParams)
7009 NewCtorType = BaseCtorType;
7010 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007011 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007012 for (unsigned i = 0; i < params; ++i) {
7013 Args.push_back(BaseCtorType->getArgType(i));
7014 }
7015 FunctionProtoType::ExtProtoInfo ExtInfo =
7016 BaseCtorType->getExtProtoInfo();
7017 ExtInfo.Variadic = false;
7018 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7019 Args.data(), params, ExtInfo)
7020 .getTypePtr();
7021 }
7022 const Type *CanonicalNewCtorType =
7023 Context.getCanonicalType(NewCtorType);
7024
7025 // Now that we have the type, first check if the class already has a
7026 // constructor with this signature.
7027 if (ExistingConstructors.count(CanonicalNewCtorType))
7028 continue;
7029
7030 // Then we check if we have already declared an inherited constructor
7031 // with this signature.
7032 std::pair<ConstructorToSourceMap::iterator, bool> result =
7033 InheritedConstructors.insert(std::make_pair(
7034 CanonicalNewCtorType,
7035 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7036 if (!result.second) {
7037 // Already in the map. If it came from a different class, that's an
7038 // error. Not if it's from the same.
7039 CanQualType PreviousBase = result.first->second.first;
7040 if (CanonicalBase != PreviousBase) {
7041 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7042 const CXXConstructorDecl *PrevBaseCtor =
7043 PrevCtor->getInheritedConstructor();
7044 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7045
7046 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7047 Diag(BaseCtor->getLocation(),
7048 diag::note_using_decl_constructor_conflict_current_ctor);
7049 Diag(PrevBaseCtor->getLocation(),
7050 diag::note_using_decl_constructor_conflict_previous_ctor);
7051 Diag(PrevCtor->getLocation(),
7052 diag::note_using_decl_constructor_conflict_previous_using);
7053 }
7054 continue;
7055 }
7056
7057 // OK, we're there, now add the constructor.
7058 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007059 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007060 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7061 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007062 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7063 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007064 /*ImplicitlyDeclared=*/true,
7065 // FIXME: Due to a defect in the standard, we treat inherited
7066 // constructors as constexpr even if that makes them ill-formed.
7067 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007068 NewCtor->setAccess(BaseCtor->getAccess());
7069
7070 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007071 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007072 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007073 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7074 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007075 /*IdentifierInfo=*/0,
7076 BaseCtorType->getArgType(i),
7077 /*TInfo=*/0, SC_None,
7078 SC_None, /*DefaultArg=*/0));
7079 }
David Blaikie4278c652011-09-21 18:16:56 +00007080 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007081 NewCtor->setInheritedConstructor(BaseCtor);
7082
Sebastian Redlf677ea32011-02-05 19:23:19 +00007083 ClassDecl->addDecl(NewCtor);
7084 result.first->second.second = NewCtor;
7085 }
7086 }
7087 }
7088}
7089
Sean Huntcb45a0f2011-05-12 22:46:25 +00007090Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007091Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7092 CXXRecordDecl *ClassDecl = MD->getParent();
7093
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007094 // C++ [except.spec]p14:
7095 // An implicitly declared special member function (Clause 12) shall have
7096 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007097 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007098 if (ClassDecl->isInvalidDecl())
7099 return ExceptSpec;
7100
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007101 // Direct base-class destructors.
7102 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7103 BEnd = ClassDecl->bases_end();
7104 B != BEnd; ++B) {
7105 if (B->isVirtual()) // Handled below.
7106 continue;
7107
7108 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007109 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007110 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007111 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007112
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007113 // Virtual base-class destructors.
7114 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7115 BEnd = ClassDecl->vbases_end();
7116 B != BEnd; ++B) {
7117 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007118 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007119 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007120 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007121
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007122 // Field destructors.
7123 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7124 FEnd = ClassDecl->field_end();
7125 F != FEnd; ++F) {
7126 if (const RecordType *RecordTy
7127 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007128 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007129 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007130 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007131
Sean Huntcb45a0f2011-05-12 22:46:25 +00007132 return ExceptSpec;
7133}
7134
7135CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7136 // C++ [class.dtor]p2:
7137 // If a class has no user-declared destructor, a destructor is
7138 // declared implicitly. An implicitly-declared destructor is an
7139 // inline public member of its class.
Sean Huntcb45a0f2011-05-12 22:46:25 +00007140
Douglas Gregor4923aa22010-07-02 20:37:36 +00007141 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007142 CanQualType ClassType
7143 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007144 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007145 DeclarationName Name
7146 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007147 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007148 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007149 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7150 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007151 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007152 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007153 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007154 Destructor->setImplicit();
7155 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007156
7157 // Build an exception specification pointing back at this destructor.
7158 FunctionProtoType::ExtProtoInfo EPI;
7159 EPI.ExceptionSpecType = EST_Unevaluated;
7160 EPI.ExceptionSpecDecl = Destructor;
7161 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7162
Douglas Gregor4923aa22010-07-02 20:37:36 +00007163 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007164 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007165
Douglas Gregor4923aa22010-07-02 20:37:36 +00007166 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007167 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007168 PushOnScopeChains(Destructor, S, false);
7169 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007170
Richard Smith9a561d52012-02-26 09:11:52 +00007171 AddOverriddenMethods(ClassDecl, Destructor);
7172
Richard Smith7d5088a2012-02-18 02:02:13 +00007173 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007174 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007175
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007176 return Destructor;
7177}
7178
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007179void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007180 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007181 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007182 !Destructor->doesThisDeclarationHaveABody() &&
7183 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007184 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007185 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007186 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007187
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007188 if (Destructor->isInvalidDecl())
7189 return;
7190
Douglas Gregor39957dc2010-05-01 15:04:51 +00007191 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007192
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007193 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007194 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7195 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007196
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007197 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007198 Diag(CurrentLocation, diag::note_member_synthesized_at)
7199 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7200
7201 Destructor->setInvalidDecl();
7202 return;
7203 }
7204
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007205 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007206 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007207 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007208 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007209 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007210
7211 if (ASTMutationListener *L = getASTMutationListener()) {
7212 L->CompletedImplicitDefinition(Destructor);
7213 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007214}
7215
Richard Smitha4156b82012-04-21 18:42:51 +00007216/// \brief Perform any semantic analysis which needs to be delayed until all
7217/// pending class member declarations have been parsed.
7218void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007219 // Perform any deferred checking of exception specifications for virtual
7220 // destructors.
7221 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7222 i != e; ++i) {
7223 const CXXDestructorDecl *Dtor =
7224 DelayedDestructorExceptionSpecChecks[i].first;
7225 assert(!Dtor->getParent()->isDependentType() &&
7226 "Should not ever add destructors of templates into the list.");
7227 CheckOverridingFunctionExceptionSpec(Dtor,
7228 DelayedDestructorExceptionSpecChecks[i].second);
7229 }
7230 DelayedDestructorExceptionSpecChecks.clear();
7231}
7232
Richard Smithb9d0b762012-07-27 04:22:15 +00007233void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7234 CXXDestructorDecl *Destructor) {
7235 assert(getLangOpts().CPlusPlus0x &&
7236 "adjusting dtor exception specs was introduced in c++11");
7237
Sebastian Redl0ee33912011-05-19 05:13:44 +00007238 // C++11 [class.dtor]p3:
7239 // A declaration of a destructor that does not have an exception-
7240 // specification is implicitly considered to have the same exception-
7241 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007242 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007243 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007244 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007245 return;
7246
Chandler Carruth3f224b22011-09-20 04:55:26 +00007247 // Replace the destructor's type, building off the existing one. Fortunately,
7248 // the only thing of interest in the destructor type is its extended info.
7249 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007250 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7251 EPI.ExceptionSpecType = EST_Unevaluated;
7252 EPI.ExceptionSpecDecl = Destructor;
7253 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007254
Sebastian Redl0ee33912011-05-19 05:13:44 +00007255 // FIXME: If the destructor has a body that could throw, and the newly created
7256 // spec doesn't allow exceptions, we should emit a warning, because this
7257 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007258 // However, we don't have a body or an exception specification yet, so it
7259 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007260}
7261
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007262/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007263/// \c To.
7264///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007265/// This routine is used to copy/move the members of a class with an
7266/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007267/// copied are arrays, this routine builds for loops to copy them.
7268///
7269/// \param S The Sema object used for type-checking.
7270///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007271/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007272///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007273/// \param T The type of the expressions being copied/moved. Both expressions
7274/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007275///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007276/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007277///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007278/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007279///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007280/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007281/// Otherwise, it's a non-static member subobject.
7282///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007283/// \param Copying Whether we're copying or moving.
7284///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007285/// \param Depth Internal parameter recording the depth of the recursion.
7286///
7287/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007288static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007289BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007290 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007291 bool CopyingBaseSubobject, bool Copying,
7292 unsigned Depth = 0) {
7293 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007294 // Each subobject is assigned in the manner appropriate to its type:
7295 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007296 // - if the subobject is of class type, as if by a call to operator= with
7297 // the subobject as the object expression and the corresponding
7298 // subobject of x as a single function argument (as if by explicit
7299 // qualification; that is, ignoring any possible virtual overriding
7300 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007301 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7302 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7303
7304 // Look for operator=.
7305 DeclarationName Name
7306 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7307 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7308 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7309
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007310 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007311 LookupResult::Filter F = OpLookup.makeFilter();
7312 while (F.hasNext()) {
7313 NamedDecl *D = F.next();
7314 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007315 if (Method->isCopyAssignmentOperator() ||
7316 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007317 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007318
Douglas Gregor06a9f362010-05-01 20:49:11 +00007319 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007320 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007321 F.done();
7322
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007323 // Suppress the protected check (C++ [class.protected]) for each of the
7324 // assignment operators we found. This strange dance is required when
7325 // we're assigning via a base classes's copy-assignment operator. To
7326 // ensure that we're getting the right base class subobject (without
7327 // ambiguities), we need to cast "this" to that subobject type; to
7328 // ensure that we don't go through the virtual call mechanism, we need
7329 // to qualify the operator= name with the base class (see below). However,
7330 // this means that if the base class has a protected copy assignment
7331 // operator, the protected member access check will fail. So, we
7332 // rewrite "protected" access to "public" access in this case, since we
7333 // know by construction that we're calling from a derived class.
7334 if (CopyingBaseSubobject) {
7335 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7336 L != LEnd; ++L) {
7337 if (L.getAccess() == AS_protected)
7338 L.setAccess(AS_public);
7339 }
7340 }
7341
Douglas Gregor06a9f362010-05-01 20:49:11 +00007342 // Create the nested-name-specifier that will be used to qualify the
7343 // reference to operator=; this is required to suppress the virtual
7344 // call mechanism.
7345 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007346 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007347 SS.MakeTrivial(S.Context,
7348 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007349 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007350 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007351
7352 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007353 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007354 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007355 /*TemplateKWLoc=*/SourceLocation(),
7356 /*FirstQualifierInScope=*/0,
7357 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007358 /*TemplateArgs=*/0,
7359 /*SuppressQualifierCheck=*/true);
7360 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007361 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007362
7363 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007364
John McCall60d7b3a2010-08-24 06:29:42 +00007365 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007366 OpEqualRef.takeAs<Expr>(),
7367 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007368 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007369 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007370
7371 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007372 }
John McCallb0207482010-03-16 06:11:48 +00007373
Douglas Gregor06a9f362010-05-01 20:49:11 +00007374 // - if the subobject is of scalar type, the built-in assignment
7375 // operator is used.
7376 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7377 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007378 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007379 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007380 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007381
7382 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007383 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007384
7385 // - if the subobject is an array, each element is assigned, in the
7386 // manner appropriate to the element type;
7387
7388 // Construct a loop over the array bounds, e.g.,
7389 //
7390 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7391 //
7392 // that will copy each of the array elements.
7393 QualType SizeType = S.Context.getSizeType();
7394
7395 // Create the iteration variable.
7396 IdentifierInfo *IterationVarName = 0;
7397 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007398 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007399 llvm::raw_svector_ostream OS(Str);
7400 OS << "__i" << Depth;
7401 IterationVarName = &S.Context.Idents.get(OS.str());
7402 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007403 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007404 IterationVarName, SizeType,
7405 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007406 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007407
7408 // Initialize the iteration variable to zero.
7409 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007410 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007411
7412 // Create a reference to the iteration variable; we'll use this several
7413 // times throughout.
7414 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007415 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007416 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007417 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7418 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7419
Douglas Gregor06a9f362010-05-01 20:49:11 +00007420 // Create the DeclStmt that holds the iteration variable.
7421 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7422
7423 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007424 llvm::APInt Upper
7425 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007426 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007427 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007428 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7429 BO_NE, S.Context.BoolTy,
7430 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007431
7432 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007433 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007434 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7435 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007436
7437 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007438 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007439 IterationVarRefRVal,
7440 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007441 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007442 IterationVarRefRVal,
7443 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007444 if (!Copying) // Cast to rvalue
7445 From = CastForMoving(S, From);
7446
7447 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007448 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7449 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007450 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007451 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007452 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007453
7454 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007455 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007456 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007457 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007458 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007459}
7460
Richard Smithb9d0b762012-07-27 04:22:15 +00007461/// Determine whether an implicit copy assignment operator for ClassDecl has a
7462/// const argument.
7463/// FIXME: It ought to be possible to store this on the record.
7464static bool isImplicitCopyAssignmentArgConst(Sema &S,
7465 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007466 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007467 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007468
Douglas Gregord3c35902010-07-01 16:36:15 +00007469 // C++ [class.copy]p10:
7470 // If the class definition does not explicitly declare a copy
7471 // assignment operator, one is declared implicitly.
7472 // The implicitly-defined copy assignment operator for a class X
7473 // will have the form
7474 //
7475 // X& X::operator=(const X&)
7476 //
7477 // if
Douglas Gregord3c35902010-07-01 16:36:15 +00007478 // -- each direct base class B of X has a copy assignment operator
7479 // whose parameter is of type const B&, const volatile B& or B,
7480 // and
7481 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7482 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007483 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007484 // We'll handle this below
Richard Smithb9d0b762012-07-27 04:22:15 +00007485 if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00007486 continue;
7487
Douglas Gregord3c35902010-07-01 16:36:15 +00007488 assert(!Base->getType()->isDependentType() &&
7489 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007490 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007491 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7492 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007493 }
7494
Richard Smithebaf0e62011-10-18 20:49:44 +00007495 // In C++11, the above citation has "or virtual" added
Richard Smithb9d0b762012-07-27 04:22:15 +00007496 if (S.getLangOpts().CPlusPlus0x) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007497 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7498 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007499 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007500 assert(!Base->getType()->isDependentType() &&
7501 "Cannot generate implicit members for class with dependent bases.");
7502 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007503 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7504 false, 0))
7505 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007506 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007507 }
7508
7509 // -- for all the nonstatic data members of X that are of a class
7510 // type M (or array thereof), each such class type has a copy
7511 // assignment operator whose parameter is of type const M&,
7512 // const volatile M& or M.
7513 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7514 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007515 Field != FieldEnd; ++Field) {
7516 QualType FieldType = S.Context.getBaseElementType(Field->getType());
7517 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7518 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7519 false, 0))
7520 return false;
Douglas Gregord3c35902010-07-01 16:36:15 +00007521 }
7522
7523 // Otherwise, the implicitly declared copy assignment operator will
7524 // have the form
7525 //
7526 // X& X::operator=(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00007527
7528 return true;
7529}
7530
7531Sema::ImplicitExceptionSpecification
7532Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7533 CXXRecordDecl *ClassDecl = MD->getParent();
7534
7535 ImplicitExceptionSpecification ExceptSpec(*this);
7536 if (ClassDecl->isInvalidDecl())
7537 return ExceptSpec;
7538
7539 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7540 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7541 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7542
Douglas Gregorb87786f2010-07-01 17:48:08 +00007543 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007544 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007545 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007546
7547 // It is unspecified whether or not an implicit copy assignment operator
7548 // attempts to deduplicate calls to assignment operators of virtual bases are
7549 // made. As such, this exception specification is effectively unspecified.
7550 // Based on a similar decision made for constness in C++0x, we're erring on
7551 // the side of assuming such calls to be made regardless of whether they
7552 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007553 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7554 BaseEnd = ClassDecl->bases_end();
7555 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007556 if (Base->isVirtual())
7557 continue;
7558
Douglas Gregora376d102010-07-02 21:50:04 +00007559 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007560 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007561 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7562 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007563 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007564 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007565
7566 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7567 BaseEnd = ClassDecl->vbases_end();
7568 Base != BaseEnd; ++Base) {
7569 CXXRecordDecl *BaseClassDecl
7570 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7571 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7572 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007573 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007574 }
7575
Douglas Gregorb87786f2010-07-01 17:48:08 +00007576 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7577 FieldEnd = ClassDecl->field_end();
7578 Field != FieldEnd;
7579 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007580 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007581 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7582 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007583 LookupCopyingAssignment(FieldClassDecl,
7584 ArgQuals | FieldType.getCVRQualifiers(),
7585 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007586 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007587 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007588 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007589
Richard Smithb9d0b762012-07-27 04:22:15 +00007590 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007591}
7592
7593CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7594 // Note: The following rules are largely analoguous to the copy
7595 // constructor rules. Note that virtual bases are not taken into account
7596 // for determining the argument type of the operator. Note also that
7597 // operators taking an object instead of a reference are allowed.
7598
Sean Hunt30de05c2011-05-14 05:23:20 +00007599 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7600 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithb9d0b762012-07-27 04:22:15 +00007601 if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
Sean Hunt30de05c2011-05-14 05:23:20 +00007602 ArgType = ArgType.withConst();
7603 ArgType = Context.getLValueReferenceType(ArgType);
7604
Douglas Gregord3c35902010-07-01 16:36:15 +00007605 // An implicitly-declared copy assignment operator is an inline public
7606 // member of its class.
7607 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007608 SourceLocation ClassLoc = ClassDecl->getLocation();
7609 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007610 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007611 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007612 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007613 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007614 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007615 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007616 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007617 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007618 CopyAssignment->setImplicit();
7619 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007620
7621 // Build an exception specification pointing back at this member.
7622 FunctionProtoType::ExtProtoInfo EPI;
7623 EPI.ExceptionSpecType = EST_Unevaluated;
7624 EPI.ExceptionSpecDecl = CopyAssignment;
7625 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7626
Douglas Gregord3c35902010-07-01 16:36:15 +00007627 // Add the parameter to the operator.
7628 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007629 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007630 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007631 SC_None,
7632 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007633 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007634
Douglas Gregora376d102010-07-02 21:50:04 +00007635 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007636 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007637
Douglas Gregor23c94db2010-07-02 17:43:08 +00007638 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007639 PushOnScopeChains(CopyAssignment, S, false);
7640 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007641
Nico Weberafcc96a2012-01-23 03:19:29 +00007642 // C++0x [class.copy]p19:
7643 // .... If the class definition does not explicitly declare a copy
7644 // assignment operator, there is no user-declared move constructor, and
7645 // there is no user-declared move assignment operator, a copy assignment
7646 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007647 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007648 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007649
Douglas Gregord3c35902010-07-01 16:36:15 +00007650 AddOverriddenMethods(ClassDecl, CopyAssignment);
7651 return CopyAssignment;
7652}
7653
Douglas Gregor06a9f362010-05-01 20:49:11 +00007654void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7655 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007656 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007657 CopyAssignOperator->isOverloadedOperator() &&
7658 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007659 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7660 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007661 "DefineImplicitCopyAssignment called for wrong function");
7662
7663 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7664
7665 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7666 CopyAssignOperator->setInvalidDecl();
7667 return;
7668 }
7669
7670 CopyAssignOperator->setUsed();
7671
7672 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007673 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007674
7675 // C++0x [class.copy]p30:
7676 // The implicitly-defined or explicitly-defaulted copy assignment operator
7677 // for a non-union class X performs memberwise copy assignment of its
7678 // subobjects. The direct base classes of X are assigned first, in the
7679 // order of their declaration in the base-specifier-list, and then the
7680 // immediate non-static data members of X are assigned, in the order in
7681 // which they were declared in the class definition.
7682
7683 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007684 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007685
7686 // The parameter for the "other" object, which we are copying from.
7687 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7688 Qualifiers OtherQuals = Other->getType().getQualifiers();
7689 QualType OtherRefType = Other->getType();
7690 if (const LValueReferenceType *OtherRef
7691 = OtherRefType->getAs<LValueReferenceType>()) {
7692 OtherRefType = OtherRef->getPointeeType();
7693 OtherQuals = OtherRefType.getQualifiers();
7694 }
7695
7696 // Our location for everything implicitly-generated.
7697 SourceLocation Loc = CopyAssignOperator->getLocation();
7698
7699 // Construct a reference to the "other" object. We'll be using this
7700 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007701 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007702 assert(OtherRef && "Reference to parameter cannot fail!");
7703
7704 // Construct the "this" pointer. We'll be using this throughout the generated
7705 // ASTs.
7706 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7707 assert(This && "Reference to this cannot fail!");
7708
7709 // Assign base classes.
7710 bool Invalid = false;
7711 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7712 E = ClassDecl->bases_end(); Base != E; ++Base) {
7713 // Form the assignment:
7714 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7715 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007716 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007717 Invalid = true;
7718 continue;
7719 }
7720
John McCallf871d0c2010-08-07 06:22:56 +00007721 CXXCastPath BasePath;
7722 BasePath.push_back(Base);
7723
Douglas Gregor06a9f362010-05-01 20:49:11 +00007724 // Construct the "from" expression, which is an implicit cast to the
7725 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007726 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007727 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7728 CK_UncheckedDerivedToBase,
7729 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007730
7731 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007732 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007733
7734 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007735 To = ImpCastExprToType(To.take(),
7736 Context.getCVRQualifiedType(BaseType,
7737 CopyAssignOperator->getTypeQualifiers()),
7738 CK_UncheckedDerivedToBase,
7739 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007740
7741 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007742 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007743 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007744 /*CopyingBaseSubobject=*/true,
7745 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007746 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007747 Diag(CurrentLocation, diag::note_member_synthesized_at)
7748 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7749 CopyAssignOperator->setInvalidDecl();
7750 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007751 }
7752
7753 // Success! Record the copy.
7754 Statements.push_back(Copy.takeAs<Expr>());
7755 }
7756
7757 // \brief Reference to the __builtin_memcpy function.
7758 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007759 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007760 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007761
7762 // Assign non-static members.
7763 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7764 FieldEnd = ClassDecl->field_end();
7765 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007766 if (Field->isUnnamedBitfield())
7767 continue;
7768
Douglas Gregor06a9f362010-05-01 20:49:11 +00007769 // Check for members of reference type; we can't copy those.
7770 if (Field->getType()->isReferenceType()) {
7771 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7772 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7773 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007774 Diag(CurrentLocation, diag::note_member_synthesized_at)
7775 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007776 Invalid = true;
7777 continue;
7778 }
7779
7780 // Check for members of const-qualified, non-class type.
7781 QualType BaseType = Context.getBaseElementType(Field->getType());
7782 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7783 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7784 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7785 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007786 Diag(CurrentLocation, diag::note_member_synthesized_at)
7787 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007788 Invalid = true;
7789 continue;
7790 }
John McCallb77115d2011-06-17 00:18:42 +00007791
7792 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007793 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7794 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007795
7796 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007797 if (FieldType->isIncompleteArrayType()) {
7798 assert(ClassDecl->hasFlexibleArrayMember() &&
7799 "Incomplete array type is not valid");
7800 continue;
7801 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007802
7803 // Build references to the field in the object we're copying from and to.
7804 CXXScopeSpec SS; // Intentionally empty
7805 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7806 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00007807 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007808 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007809 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007810 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007811 SS, SourceLocation(), 0,
7812 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007813 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007814 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007815 SS, SourceLocation(), 0,
7816 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007817 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7818 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7819
7820 // If the field should be copied with __builtin_memcpy rather than via
7821 // explicit assignments, do so. This optimization only applies for arrays
7822 // of scalars and arrays of class type with trivial copy-assignment
7823 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007824 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007825 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007826 // Compute the size of the memory buffer to be copied.
7827 QualType SizeType = Context.getSizeType();
7828 llvm::APInt Size(Context.getTypeSize(SizeType),
7829 Context.getTypeSizeInChars(BaseType).getQuantity());
7830 for (const ConstantArrayType *Array
7831 = Context.getAsConstantArrayType(FieldType);
7832 Array;
7833 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007834 llvm::APInt ArraySize
7835 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007836 Size *= ArraySize;
7837 }
7838
7839 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007840 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7841 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007842
7843 bool NeedsCollectableMemCpy =
7844 (BaseType->isRecordType() &&
7845 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7846
7847 if (NeedsCollectableMemCpy) {
7848 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007849 // Create a reference to the __builtin_objc_memmove_collectable function.
7850 LookupResult R(*this,
7851 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007852 Loc, LookupOrdinaryName);
7853 LookupName(R, TUScope, true);
7854
7855 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7856 if (!CollectableMemCpy) {
7857 // Something went horribly wrong earlier, and we will have
7858 // complained about it.
7859 Invalid = true;
7860 continue;
7861 }
7862
7863 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00007864 Context.BuiltinFnTy,
7865 VK_RValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007866 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7867 }
7868 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007869 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007870 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007871 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7872 LookupOrdinaryName);
7873 LookupName(R, TUScope, true);
7874
7875 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7876 if (!BuiltinMemCpy) {
7877 // Something went horribly wrong earlier, and we will have complained
7878 // about it.
7879 Invalid = true;
7880 continue;
7881 }
7882
7883 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00007884 Context.BuiltinFnTy,
7885 VK_RValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007886 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7887 }
7888
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007889 SmallVector<Expr*, 8> CallArgs;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007890 CallArgs.push_back(To.takeAs<Expr>());
7891 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007892 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007893 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007894 if (NeedsCollectableMemCpy)
7895 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007896 CollectableMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007897 Loc, CallArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00007898 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007899 else
7900 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007901 BuiltinMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007902 Loc, CallArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00007903 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007904
Douglas Gregor06a9f362010-05-01 20:49:11 +00007905 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7906 Statements.push_back(Call.takeAs<Expr>());
7907 continue;
7908 }
7909
7910 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007911 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007912 To.get(), From.get(),
7913 /*CopyingBaseSubobject=*/false,
7914 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007915 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007916 Diag(CurrentLocation, diag::note_member_synthesized_at)
7917 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7918 CopyAssignOperator->setInvalidDecl();
7919 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007920 }
7921
7922 // Success! Record the copy.
7923 Statements.push_back(Copy.takeAs<Stmt>());
7924 }
7925
7926 if (!Invalid) {
7927 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007928 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007929
John McCall60d7b3a2010-08-24 06:29:42 +00007930 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007931 if (Return.isInvalid())
7932 Invalid = true;
7933 else {
7934 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007935
7936 if (Trap.hasErrorOccurred()) {
7937 Diag(CurrentLocation, diag::note_member_synthesized_at)
7938 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7939 Invalid = true;
7940 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007941 }
7942 }
7943
7944 if (Invalid) {
7945 CopyAssignOperator->setInvalidDecl();
7946 return;
7947 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007948
7949 StmtResult Body;
7950 {
7951 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007952 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007953 /*isStmtExpr=*/false);
7954 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7955 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007956 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007957
7958 if (ASTMutationListener *L = getASTMutationListener()) {
7959 L->CompletedImplicitDefinition(CopyAssignOperator);
7960 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007961}
7962
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007963Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007964Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
7965 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007966
Richard Smithb9d0b762012-07-27 04:22:15 +00007967 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007968 if (ClassDecl->isInvalidDecl())
7969 return ExceptSpec;
7970
7971 // C++0x [except.spec]p14:
7972 // An implicitly declared special member function (Clause 12) shall have an
7973 // exception-specification. [...]
7974
7975 // It is unspecified whether or not an implicit move assignment operator
7976 // attempts to deduplicate calls to assignment operators of virtual bases are
7977 // made. As such, this exception specification is effectively unspecified.
7978 // Based on a similar decision made for constness in C++0x, we're erring on
7979 // the side of assuming such calls to be made regardless of whether they
7980 // actually happen.
7981 // Note that a move constructor is not implicitly declared when there are
7982 // virtual bases, but it can still be user-declared and explicitly defaulted.
7983 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7984 BaseEnd = ClassDecl->bases_end();
7985 Base != BaseEnd; ++Base) {
7986 if (Base->isVirtual())
7987 continue;
7988
7989 CXXRecordDecl *BaseClassDecl
7990 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7991 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00007992 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007993 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007994 }
7995
7996 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7997 BaseEnd = ClassDecl->vbases_end();
7998 Base != BaseEnd; ++Base) {
7999 CXXRecordDecl *BaseClassDecl
8000 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8001 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008002 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008003 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008004 }
8005
8006 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8007 FieldEnd = ClassDecl->field_end();
8008 Field != FieldEnd;
8009 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008010 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008011 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008012 if (CXXMethodDecl *MoveAssign =
8013 LookupMovingAssignment(FieldClassDecl,
8014 FieldType.getCVRQualifiers(),
8015 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008016 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008017 }
8018 }
8019
8020 return ExceptSpec;
8021}
8022
Richard Smith1c931be2012-04-02 18:40:40 +00008023/// Determine whether the class type has any direct or indirect virtual base
8024/// classes which have a non-trivial move assignment operator.
8025static bool
8026hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8027 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8028 BaseEnd = ClassDecl->vbases_end();
8029 Base != BaseEnd; ++Base) {
8030 CXXRecordDecl *BaseClass =
8031 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8032
8033 // Try to declare the move assignment. If it would be deleted, then the
8034 // class does not have a non-trivial move assignment.
8035 if (BaseClass->needsImplicitMoveAssignment())
8036 S.DeclareImplicitMoveAssignment(BaseClass);
8037
8038 // If the class has both a trivial move assignment and a non-trivial move
8039 // assignment, hasTrivialMoveAssignment() is false.
8040 if (BaseClass->hasDeclaredMoveAssignment() &&
8041 !BaseClass->hasTrivialMoveAssignment())
8042 return true;
8043 }
8044
8045 return false;
8046}
8047
8048/// Determine whether the given type either has a move constructor or is
8049/// trivially copyable.
8050static bool
8051hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8052 Type = S.Context.getBaseElementType(Type);
8053
8054 // FIXME: Technically, non-trivially-copyable non-class types, such as
8055 // reference types, are supposed to return false here, but that appears
8056 // to be a standard defect.
8057 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00008058 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00008059 return true;
8060
8061 if (Type.isTriviallyCopyableType(S.Context))
8062 return true;
8063
8064 if (IsConstructor) {
8065 if (ClassDecl->needsImplicitMoveConstructor())
8066 S.DeclareImplicitMoveConstructor(ClassDecl);
8067 return ClassDecl->hasDeclaredMoveConstructor();
8068 }
8069
8070 if (ClassDecl->needsImplicitMoveAssignment())
8071 S.DeclareImplicitMoveAssignment(ClassDecl);
8072 return ClassDecl->hasDeclaredMoveAssignment();
8073}
8074
8075/// Determine whether all non-static data members and direct or virtual bases
8076/// of class \p ClassDecl have either a move operation, or are trivially
8077/// copyable.
8078static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8079 bool IsConstructor) {
8080 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8081 BaseEnd = ClassDecl->bases_end();
8082 Base != BaseEnd; ++Base) {
8083 if (Base->isVirtual())
8084 continue;
8085
8086 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8087 return false;
8088 }
8089
8090 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8091 BaseEnd = ClassDecl->vbases_end();
8092 Base != BaseEnd; ++Base) {
8093 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8094 return false;
8095 }
8096
8097 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8098 FieldEnd = ClassDecl->field_end();
8099 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008100 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008101 return false;
8102 }
8103
8104 return true;
8105}
8106
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008107CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008108 // C++11 [class.copy]p20:
8109 // If the definition of a class X does not explicitly declare a move
8110 // assignment operator, one will be implicitly declared as defaulted
8111 // if and only if:
8112 //
8113 // - [first 4 bullets]
8114 assert(ClassDecl->needsImplicitMoveAssignment());
8115
8116 // [Checked after we build the declaration]
8117 // - the move assignment operator would not be implicitly defined as
8118 // deleted,
8119
8120 // [DR1402]:
8121 // - X has no direct or indirect virtual base class with a non-trivial
8122 // move assignment operator, and
8123 // - each of X's non-static data members and direct or virtual base classes
8124 // has a type that either has a move assignment operator or is trivially
8125 // copyable.
8126 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8127 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8128 ClassDecl->setFailedImplicitMoveAssignment();
8129 return 0;
8130 }
8131
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008132 // Note: The following rules are largely analoguous to the move
8133 // constructor rules.
8134
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008135 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8136 QualType RetType = Context.getLValueReferenceType(ArgType);
8137 ArgType = Context.getRValueReferenceType(ArgType);
8138
8139 // An implicitly-declared move assignment operator is an inline public
8140 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008141 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8142 SourceLocation ClassLoc = ClassDecl->getLocation();
8143 DeclarationNameInfo NameInfo(Name, ClassLoc);
8144 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008145 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008146 /*TInfo=*/0, /*isStatic=*/false,
8147 /*StorageClassAsWritten=*/SC_None,
8148 /*isInline=*/true,
8149 /*isConstexpr=*/false,
8150 SourceLocation());
8151 MoveAssignment->setAccess(AS_public);
8152 MoveAssignment->setDefaulted();
8153 MoveAssignment->setImplicit();
8154 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8155
Richard Smithb9d0b762012-07-27 04:22:15 +00008156 // Build an exception specification pointing back at this member.
8157 FunctionProtoType::ExtProtoInfo EPI;
8158 EPI.ExceptionSpecType = EST_Unevaluated;
8159 EPI.ExceptionSpecDecl = MoveAssignment;
8160 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8161
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008162 // Add the parameter to the operator.
8163 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8164 ClassLoc, ClassLoc, /*Id=*/0,
8165 ArgType, /*TInfo=*/0,
8166 SC_None,
8167 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008168 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008169
8170 // Note that we have added this copy-assignment operator.
8171 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8172
8173 // C++0x [class.copy]p9:
8174 // If the definition of a class X does not explicitly declare a move
8175 // assignment operator, one will be implicitly declared as defaulted if and
8176 // only if:
8177 // [...]
8178 // - the move assignment operator would not be implicitly defined as
8179 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008180 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008181 // Cache this result so that we don't try to generate this over and over
8182 // on every lookup, leaking memory and wasting time.
8183 ClassDecl->setFailedImplicitMoveAssignment();
8184 return 0;
8185 }
8186
8187 if (Scope *S = getScopeForContext(ClassDecl))
8188 PushOnScopeChains(MoveAssignment, S, false);
8189 ClassDecl->addDecl(MoveAssignment);
8190
8191 AddOverriddenMethods(ClassDecl, MoveAssignment);
8192 return MoveAssignment;
8193}
8194
8195void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8196 CXXMethodDecl *MoveAssignOperator) {
8197 assert((MoveAssignOperator->isDefaulted() &&
8198 MoveAssignOperator->isOverloadedOperator() &&
8199 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008200 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8201 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008202 "DefineImplicitMoveAssignment called for wrong function");
8203
8204 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8205
8206 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8207 MoveAssignOperator->setInvalidDecl();
8208 return;
8209 }
8210
8211 MoveAssignOperator->setUsed();
8212
8213 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
8214 DiagnosticErrorTrap Trap(Diags);
8215
8216 // C++0x [class.copy]p28:
8217 // The implicitly-defined or move assignment operator for a non-union class
8218 // X performs memberwise move assignment of its subobjects. The direct base
8219 // classes of X are assigned first, in the order of their declaration in the
8220 // base-specifier-list, and then the immediate non-static data members of X
8221 // are assigned, in the order in which they were declared in the class
8222 // definition.
8223
8224 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008225 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008226
8227 // The parameter for the "other" object, which we are move from.
8228 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8229 QualType OtherRefType = Other->getType()->
8230 getAs<RValueReferenceType>()->getPointeeType();
8231 assert(OtherRefType.getQualifiers() == 0 &&
8232 "Bad argument type of defaulted move assignment");
8233
8234 // Our location for everything implicitly-generated.
8235 SourceLocation Loc = MoveAssignOperator->getLocation();
8236
8237 // Construct a reference to the "other" object. We'll be using this
8238 // throughout the generated ASTs.
8239 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8240 assert(OtherRef && "Reference to parameter cannot fail!");
8241 // Cast to rvalue.
8242 OtherRef = CastForMoving(*this, OtherRef);
8243
8244 // Construct the "this" pointer. We'll be using this throughout the generated
8245 // ASTs.
8246 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8247 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008248
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008249 // Assign base classes.
8250 bool Invalid = false;
8251 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8252 E = ClassDecl->bases_end(); Base != E; ++Base) {
8253 // Form the assignment:
8254 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8255 QualType BaseType = Base->getType().getUnqualifiedType();
8256 if (!BaseType->isRecordType()) {
8257 Invalid = true;
8258 continue;
8259 }
8260
8261 CXXCastPath BasePath;
8262 BasePath.push_back(Base);
8263
8264 // Construct the "from" expression, which is an implicit cast to the
8265 // appropriately-qualified base type.
8266 Expr *From = OtherRef;
8267 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008268 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008269
8270 // Dereference "this".
8271 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8272
8273 // Implicitly cast "this" to the appropriately-qualified base type.
8274 To = ImpCastExprToType(To.take(),
8275 Context.getCVRQualifiedType(BaseType,
8276 MoveAssignOperator->getTypeQualifiers()),
8277 CK_UncheckedDerivedToBase,
8278 VK_LValue, &BasePath);
8279
8280 // Build the move.
8281 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8282 To.get(), From,
8283 /*CopyingBaseSubobject=*/true,
8284 /*Copying=*/false);
8285 if (Move.isInvalid()) {
8286 Diag(CurrentLocation, diag::note_member_synthesized_at)
8287 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8288 MoveAssignOperator->setInvalidDecl();
8289 return;
8290 }
8291
8292 // Success! Record the move.
8293 Statements.push_back(Move.takeAs<Expr>());
8294 }
8295
8296 // \brief Reference to the __builtin_memcpy function.
8297 Expr *BuiltinMemCpyRef = 0;
8298 // \brief Reference to the __builtin_objc_memmove_collectable function.
8299 Expr *CollectableMemCpyRef = 0;
8300
8301 // Assign non-static members.
8302 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8303 FieldEnd = ClassDecl->field_end();
8304 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008305 if (Field->isUnnamedBitfield())
8306 continue;
8307
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008308 // Check for members of reference type; we can't move those.
8309 if (Field->getType()->isReferenceType()) {
8310 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8311 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8312 Diag(Field->getLocation(), diag::note_declared_at);
8313 Diag(CurrentLocation, diag::note_member_synthesized_at)
8314 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8315 Invalid = true;
8316 continue;
8317 }
8318
8319 // Check for members of const-qualified, non-class type.
8320 QualType BaseType = Context.getBaseElementType(Field->getType());
8321 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8322 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8323 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8324 Diag(Field->getLocation(), diag::note_declared_at);
8325 Diag(CurrentLocation, diag::note_member_synthesized_at)
8326 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8327 Invalid = true;
8328 continue;
8329 }
8330
8331 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008332 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8333 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008334
8335 QualType FieldType = Field->getType().getNonReferenceType();
8336 if (FieldType->isIncompleteArrayType()) {
8337 assert(ClassDecl->hasFlexibleArrayMember() &&
8338 "Incomplete array type is not valid");
8339 continue;
8340 }
8341
8342 // Build references to the field in the object we're copying from and to.
8343 CXXScopeSpec SS; // Intentionally empty
8344 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8345 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008346 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008347 MemberLookup.resolveKind();
8348 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8349 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008350 SS, SourceLocation(), 0,
8351 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008352 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8353 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008354 SS, SourceLocation(), 0,
8355 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008356 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8357 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8358
8359 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8360 "Member reference with rvalue base must be rvalue except for reference "
8361 "members, which aren't allowed for move assignment.");
8362
8363 // If the field should be copied with __builtin_memcpy rather than via
8364 // explicit assignments, do so. This optimization only applies for arrays
8365 // of scalars and arrays of class type with trivial move-assignment
8366 // operators.
8367 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8368 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8369 // Compute the size of the memory buffer to be copied.
8370 QualType SizeType = Context.getSizeType();
8371 llvm::APInt Size(Context.getTypeSize(SizeType),
8372 Context.getTypeSizeInChars(BaseType).getQuantity());
8373 for (const ConstantArrayType *Array
8374 = Context.getAsConstantArrayType(FieldType);
8375 Array;
8376 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8377 llvm::APInt ArraySize
8378 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8379 Size *= ArraySize;
8380 }
8381
Douglas Gregor45d3d712011-09-01 02:09:07 +00008382 // Take the address of the field references for "from" and "to". We
8383 // directly construct UnaryOperators here because semantic analysis
8384 // does not permit us to take the address of an xvalue.
8385 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8386 Context.getPointerType(From.get()->getType()),
8387 VK_RValue, OK_Ordinary, Loc);
8388 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8389 Context.getPointerType(To.get()->getType()),
8390 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008391
8392 bool NeedsCollectableMemCpy =
8393 (BaseType->isRecordType() &&
8394 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8395
8396 if (NeedsCollectableMemCpy) {
8397 if (!CollectableMemCpyRef) {
8398 // Create a reference to the __builtin_objc_memmove_collectable function.
8399 LookupResult R(*this,
8400 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8401 Loc, LookupOrdinaryName);
8402 LookupName(R, TUScope, true);
8403
8404 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8405 if (!CollectableMemCpy) {
8406 // Something went horribly wrong earlier, and we will have
8407 // complained about it.
8408 Invalid = true;
8409 continue;
8410 }
8411
8412 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00008413 Context.BuiltinFnTy,
8414 VK_RValue, Loc, 0).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008415 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8416 }
8417 }
8418 // Create a reference to the __builtin_memcpy builtin function.
8419 else if (!BuiltinMemCpyRef) {
8420 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8421 LookupOrdinaryName);
8422 LookupName(R, TUScope, true);
8423
8424 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8425 if (!BuiltinMemCpy) {
8426 // Something went horribly wrong earlier, and we will have complained
8427 // about it.
8428 Invalid = true;
8429 continue;
8430 }
8431
8432 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00008433 Context.BuiltinFnTy,
8434 VK_RValue, Loc, 0).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008435 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8436 }
8437
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008438 SmallVector<Expr*, 8> CallArgs;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008439 CallArgs.push_back(To.takeAs<Expr>());
8440 CallArgs.push_back(From.takeAs<Expr>());
8441 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8442 ExprResult Call = ExprError();
8443 if (NeedsCollectableMemCpy)
8444 Call = ActOnCallExpr(/*Scope=*/0,
8445 CollectableMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008446 Loc, CallArgs,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008447 Loc);
8448 else
8449 Call = ActOnCallExpr(/*Scope=*/0,
8450 BuiltinMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008451 Loc, CallArgs,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008452 Loc);
8453
8454 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8455 Statements.push_back(Call.takeAs<Expr>());
8456 continue;
8457 }
8458
8459 // Build the move of this field.
8460 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8461 To.get(), From.get(),
8462 /*CopyingBaseSubobject=*/false,
8463 /*Copying=*/false);
8464 if (Move.isInvalid()) {
8465 Diag(CurrentLocation, diag::note_member_synthesized_at)
8466 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8467 MoveAssignOperator->setInvalidDecl();
8468 return;
8469 }
8470
8471 // Success! Record the copy.
8472 Statements.push_back(Move.takeAs<Stmt>());
8473 }
8474
8475 if (!Invalid) {
8476 // Add a "return *this;"
8477 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8478
8479 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8480 if (Return.isInvalid())
8481 Invalid = true;
8482 else {
8483 Statements.push_back(Return.takeAs<Stmt>());
8484
8485 if (Trap.hasErrorOccurred()) {
8486 Diag(CurrentLocation, diag::note_member_synthesized_at)
8487 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8488 Invalid = true;
8489 }
8490 }
8491 }
8492
8493 if (Invalid) {
8494 MoveAssignOperator->setInvalidDecl();
8495 return;
8496 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008497
8498 StmtResult Body;
8499 {
8500 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008501 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008502 /*isStmtExpr=*/false);
8503 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8504 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008505 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8506
8507 if (ASTMutationListener *L = getASTMutationListener()) {
8508 L->CompletedImplicitDefinition(MoveAssignOperator);
8509 }
8510}
8511
Richard Smithb9d0b762012-07-27 04:22:15 +00008512/// Determine whether an implicit copy constructor for ClassDecl has a const
8513/// argument.
8514/// FIXME: It ought to be possible to store this on the record.
8515static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008516 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00008517 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008518
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008519 // C++ [class.copy]p5:
8520 // The implicitly-declared copy constructor for a class X will
8521 // have the form
8522 //
8523 // X::X(const X&)
8524 //
8525 // if
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008526 // -- each direct or virtual base class B of X has a copy
8527 // constructor whose first parameter is of type const B& or
8528 // const volatile B&, and
8529 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8530 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008531 Base != BaseEnd; ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008532 // Virtual bases are handled below.
8533 if (Base->isVirtual())
8534 continue;
Richard Smithb9d0b762012-07-27 04:22:15 +00008535
Douglas Gregor22584312010-07-02 23:41:54 +00008536 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008537 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008538 // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8539 // ambiguous, we should still produce a constructor with a const-qualified
8540 // parameter.
8541 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8542 return false;
Douglas Gregor598a8542010-07-01 18:27:03 +00008543 }
8544
8545 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8546 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008547 Base != BaseEnd; ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008548 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008549 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008550 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8551 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008552 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008553
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008554 // -- for all the nonstatic data members of X that are of a
8555 // class type M (or array thereof), each such class type
8556 // has a copy constructor whose first parameter is of type
8557 // const M& or const volatile M&.
8558 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8559 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008560 Field != FieldEnd; ++Field) {
8561 QualType FieldType = S.Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008562 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smithb9d0b762012-07-27 04:22:15 +00008563 if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8564 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008565 }
8566 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008567
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008568 // Otherwise, the implicitly declared copy constructor will have
8569 // the form
8570 //
8571 // X::X(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00008572
8573 return true;
8574}
8575
8576Sema::ImplicitExceptionSpecification
8577Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8578 CXXRecordDecl *ClassDecl = MD->getParent();
8579
8580 ImplicitExceptionSpecification ExceptSpec(*this);
8581 if (ClassDecl->isInvalidDecl())
8582 return ExceptSpec;
8583
8584 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8585 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8586 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8587
Douglas Gregor0d405db2010-07-01 20:59:04 +00008588 // C++ [except.spec]p14:
8589 // An implicitly declared special member function (Clause 12) shall have an
8590 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008591 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8592 BaseEnd = ClassDecl->bases_end();
8593 Base != BaseEnd;
8594 ++Base) {
8595 // Virtual bases are handled below.
8596 if (Base->isVirtual())
8597 continue;
8598
Douglas Gregor22584312010-07-02 23:41:54 +00008599 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008600 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008601 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008602 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008603 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008604 }
8605 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8606 BaseEnd = ClassDecl->vbases_end();
8607 Base != BaseEnd;
8608 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008609 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008610 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008611 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008612 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008613 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008614 }
8615 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8616 FieldEnd = ClassDecl->field_end();
8617 Field != FieldEnd;
8618 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008619 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008620 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8621 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008622 LookupCopyingConstructor(FieldClassDecl,
8623 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008624 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008625 }
8626 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008627
Richard Smithb9d0b762012-07-27 04:22:15 +00008628 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008629}
8630
8631CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8632 CXXRecordDecl *ClassDecl) {
8633 // C++ [class.copy]p4:
8634 // If the class definition does not explicitly declare a copy
8635 // constructor, one is declared implicitly.
8636
Sean Hunt49634cf2011-05-13 06:10:58 +00008637 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8638 QualType ArgType = ClassType;
Richard Smithb9d0b762012-07-27 04:22:15 +00008639 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
Sean Hunt49634cf2011-05-13 06:10:58 +00008640 if (Const)
8641 ArgType = ArgType.withConst();
8642 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008643
Richard Smith7756afa2012-06-10 05:43:50 +00008644 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8645 CXXCopyConstructor,
8646 Const);
8647
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008648 DeclarationName Name
8649 = Context.DeclarationNames.getCXXConstructorName(
8650 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008651 SourceLocation ClassLoc = ClassDecl->getLocation();
8652 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008653
8654 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008655 // member of its class.
8656 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008657 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008658 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008659 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008660 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008661 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008662 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008663
Richard Smithb9d0b762012-07-27 04:22:15 +00008664 // Build an exception specification pointing back at this member.
8665 FunctionProtoType::ExtProtoInfo EPI;
8666 EPI.ExceptionSpecType = EST_Unevaluated;
8667 EPI.ExceptionSpecDecl = CopyConstructor;
8668 CopyConstructor->setType(
8669 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8670
Douglas Gregor22584312010-07-02 23:41:54 +00008671 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008672 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8673
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008674 // Add the parameter to the constructor.
8675 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008676 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008677 /*IdentifierInfo=*/0,
8678 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008679 SC_None,
8680 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008681 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008682
Douglas Gregor23c94db2010-07-02 17:43:08 +00008683 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008684 PushOnScopeChains(CopyConstructor, S, false);
8685 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008686
Nico Weberafcc96a2012-01-23 03:19:29 +00008687 // C++11 [class.copy]p8:
8688 // ... If the class definition does not explicitly declare a copy
8689 // constructor, there is no user-declared move constructor, and there is no
8690 // user-declared move assignment operator, a copy constructor is implicitly
8691 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008692 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008693 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008694
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008695 return CopyConstructor;
8696}
8697
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008698void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008699 CXXConstructorDecl *CopyConstructor) {
8700 assert((CopyConstructor->isDefaulted() &&
8701 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008702 !CopyConstructor->doesThisDeclarationHaveABody() &&
8703 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008704 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008705
Anders Carlsson63010a72010-04-23 16:24:12 +00008706 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008707 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008708
Douglas Gregor39957dc2010-05-01 15:04:51 +00008709 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008710 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008711
Sean Huntcbb67482011-01-08 20:30:50 +00008712 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008713 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008714 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008715 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008716 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008717 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008718 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008719 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8720 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008721 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008722 /*isStmtExpr=*/false)
8723 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008724 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008725 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008726
8727 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008728 if (ASTMutationListener *L = getASTMutationListener()) {
8729 L->CompletedImplicitDefinition(CopyConstructor);
8730 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008731}
8732
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008733Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008734Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8735 CXXRecordDecl *ClassDecl = MD->getParent();
8736
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008737 // C++ [except.spec]p14:
8738 // An implicitly declared special member function (Clause 12) shall have an
8739 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008740 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008741 if (ClassDecl->isInvalidDecl())
8742 return ExceptSpec;
8743
8744 // Direct base-class constructors.
8745 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8746 BEnd = ClassDecl->bases_end();
8747 B != BEnd; ++B) {
8748 if (B->isVirtual()) // Handled below.
8749 continue;
8750
8751 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8752 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008753 CXXConstructorDecl *Constructor =
8754 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008755 // If this is a deleted function, add it anyway. This might be conformant
8756 // with the standard. This might not. I'm not sure. It might not matter.
8757 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008758 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008759 }
8760 }
8761
8762 // Virtual base-class constructors.
8763 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8764 BEnd = ClassDecl->vbases_end();
8765 B != BEnd; ++B) {
8766 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8767 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008768 CXXConstructorDecl *Constructor =
8769 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008770 // If this is a deleted function, add it anyway. This might be conformant
8771 // with the standard. This might not. I'm not sure. It might not matter.
8772 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008773 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008774 }
8775 }
8776
8777 // Field constructors.
8778 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8779 FEnd = ClassDecl->field_end();
8780 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008781 QualType FieldType = Context.getBaseElementType(F->getType());
8782 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8783 CXXConstructorDecl *Constructor =
8784 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008785 // If this is a deleted function, add it anyway. This might be conformant
8786 // with the standard. This might not. I'm not sure. It might not matter.
8787 // In particular, the problem is that this function never gets called. It
8788 // might just be ill-formed because this function attempts to refer to
8789 // a deleted function here.
8790 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008791 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008792 }
8793 }
8794
8795 return ExceptSpec;
8796}
8797
8798CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8799 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008800 // C++11 [class.copy]p9:
8801 // If the definition of a class X does not explicitly declare a move
8802 // constructor, one will be implicitly declared as defaulted if and only if:
8803 //
8804 // - [first 4 bullets]
8805 assert(ClassDecl->needsImplicitMoveConstructor());
8806
8807 // [Checked after we build the declaration]
8808 // - the move assignment operator would not be implicitly defined as
8809 // deleted,
8810
8811 // [DR1402]:
8812 // - each of X's non-static data members and direct or virtual base classes
8813 // has a type that either has a move constructor or is trivially copyable.
8814 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8815 ClassDecl->setFailedImplicitMoveConstructor();
8816 return 0;
8817 }
8818
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008819 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8820 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008821
Richard Smith7756afa2012-06-10 05:43:50 +00008822 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8823 CXXMoveConstructor,
8824 false);
8825
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008826 DeclarationName Name
8827 = Context.DeclarationNames.getCXXConstructorName(
8828 Context.getCanonicalType(ClassType));
8829 SourceLocation ClassLoc = ClassDecl->getLocation();
8830 DeclarationNameInfo NameInfo(Name, ClassLoc);
8831
8832 // C++0x [class.copy]p11:
8833 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008834 // member of its class.
8835 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008836 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008837 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008838 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008839 MoveConstructor->setAccess(AS_public);
8840 MoveConstructor->setDefaulted();
8841 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008842
Richard Smithb9d0b762012-07-27 04:22:15 +00008843 // Build an exception specification pointing back at this member.
8844 FunctionProtoType::ExtProtoInfo EPI;
8845 EPI.ExceptionSpecType = EST_Unevaluated;
8846 EPI.ExceptionSpecDecl = MoveConstructor;
8847 MoveConstructor->setType(
8848 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8849
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008850 // Add the parameter to the constructor.
8851 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8852 ClassLoc, ClassLoc,
8853 /*IdentifierInfo=*/0,
8854 ArgType, /*TInfo=*/0,
8855 SC_None,
8856 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008857 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008858
8859 // C++0x [class.copy]p9:
8860 // If the definition of a class X does not explicitly declare a move
8861 // constructor, one will be implicitly declared as defaulted if and only if:
8862 // [...]
8863 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008864 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008865 // Cache this result so that we don't try to generate this over and over
8866 // on every lookup, leaking memory and wasting time.
8867 ClassDecl->setFailedImplicitMoveConstructor();
8868 return 0;
8869 }
8870
8871 // Note that we have declared this constructor.
8872 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8873
8874 if (Scope *S = getScopeForContext(ClassDecl))
8875 PushOnScopeChains(MoveConstructor, S, false);
8876 ClassDecl->addDecl(MoveConstructor);
8877
8878 return MoveConstructor;
8879}
8880
8881void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8882 CXXConstructorDecl *MoveConstructor) {
8883 assert((MoveConstructor->isDefaulted() &&
8884 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008885 !MoveConstructor->doesThisDeclarationHaveABody() &&
8886 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008887 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8888
8889 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8890 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8891
8892 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8893 DiagnosticErrorTrap Trap(Diags);
8894
8895 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8896 Trap.hasErrorOccurred()) {
8897 Diag(CurrentLocation, diag::note_member_synthesized_at)
8898 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8899 MoveConstructor->setInvalidDecl();
8900 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008901 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008902 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8903 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008904 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008905 /*isStmtExpr=*/false)
8906 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008907 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008908 }
8909
8910 MoveConstructor->setUsed();
8911
8912 if (ASTMutationListener *L = getASTMutationListener()) {
8913 L->CompletedImplicitDefinition(MoveConstructor);
8914 }
8915}
8916
Douglas Gregore4e68d42012-02-15 19:33:52 +00008917bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8918 return FD->isDeleted() &&
8919 (FD->isDefaulted() || FD->isImplicit()) &&
8920 isa<CXXMethodDecl>(FD);
8921}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008922
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008923/// \brief Mark the call operator of the given lambda closure type as "used".
8924static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8925 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008926 = cast<CXXMethodDecl>(
8927 *Lambda->lookup(
8928 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008929 CallOperator->setReferenced();
8930 CallOperator->setUsed();
8931}
8932
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008933void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8934 SourceLocation CurrentLocation,
8935 CXXConversionDecl *Conv)
8936{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008937 CXXRecordDecl *Lambda = Conv->getParent();
8938
8939 // Make sure that the lambda call operator is marked used.
8940 markLambdaCallOperatorUsed(*this, Lambda);
8941
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008942 Conv->setUsed();
8943
8944 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8945 DiagnosticErrorTrap Trap(Diags);
8946
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008947 // Return the address of the __invoke function.
8948 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8949 CXXMethodDecl *Invoke
8950 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8951 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8952 VK_LValue, Conv->getLocation()).take();
8953 assert(FunctionRef && "Can't refer to __invoke function?");
8954 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8955 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8956 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008957 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008958
8959 // Fill in the __invoke function with a dummy implementation. IR generation
8960 // will fill in the actual details.
8961 Invoke->setUsed();
8962 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008963 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008964
8965 if (ASTMutationListener *L = getASTMutationListener()) {
8966 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008967 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008968 }
8969}
8970
8971void Sema::DefineImplicitLambdaToBlockPointerConversion(
8972 SourceLocation CurrentLocation,
8973 CXXConversionDecl *Conv)
8974{
8975 Conv->setUsed();
8976
8977 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8978 DiagnosticErrorTrap Trap(Diags);
8979
Douglas Gregorac1303e2012-02-22 05:02:47 +00008980 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008981 Expr *This = ActOnCXXThis(CurrentLocation).take();
8982 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008983
Eli Friedman23f02672012-03-01 04:01:32 +00008984 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8985 Conv->getLocation(),
8986 Conv, DerefThis);
8987
8988 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8989 // behavior. Note that only the general conversion function does this
8990 // (since it's unusable otherwise); in the case where we inline the
8991 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008992 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008993 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8994 CK_CopyAndAutoreleaseBlockObject,
8995 BuildBlock.get(), 0, VK_RValue);
8996
8997 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008998 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00008999 Conv->setInvalidDecl();
9000 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009001 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009002
Douglas Gregorac1303e2012-02-22 05:02:47 +00009003 // Create the return statement that returns the block from the conversion
9004 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009005 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009006 if (Return.isInvalid()) {
9007 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9008 Conv->setInvalidDecl();
9009 return;
9010 }
9011
9012 // Set the body of the conversion function.
9013 Stmt *ReturnS = Return.take();
9014 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9015 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009016 Conv->getLocation()));
9017
Douglas Gregorac1303e2012-02-22 05:02:47 +00009018 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009019 if (ASTMutationListener *L = getASTMutationListener()) {
9020 L->CompletedImplicitDefinition(Conv);
9021 }
9022}
9023
Douglas Gregorf52757d2012-03-10 06:53:13 +00009024/// \brief Determine whether the given list arguments contains exactly one
9025/// "real" (non-default) argument.
9026static bool hasOneRealArgument(MultiExprArg Args) {
9027 switch (Args.size()) {
9028 case 0:
9029 return false;
9030
9031 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009032 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009033 return false;
9034
9035 // fall through
9036 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009037 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009038 }
9039
9040 return false;
9041}
9042
John McCall60d7b3a2010-08-24 06:29:42 +00009043ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009044Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009045 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009046 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009047 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009048 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009049 unsigned ConstructKind,
9050 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009051 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009052
Douglas Gregor2f599792010-04-02 18:24:57 +00009053 // C++0x [class.copy]p34:
9054 // When certain criteria are met, an implementation is allowed to
9055 // omit the copy/move construction of a class object, even if the
9056 // copy/move constructor and/or destructor for the object have
9057 // side effects. [...]
9058 // - when a temporary class object that has not been bound to a
9059 // reference (12.2) would be copied/moved to a class object
9060 // with the same cv-unqualified type, the copy/move operation
9061 // can be omitted by constructing the temporary object
9062 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009063 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009064 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009065 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009066 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009067 }
Mike Stump1eb44332009-09-09 15:08:12 +00009068
9069 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009070 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009071 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009072}
9073
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009074/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9075/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009076ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009077Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9078 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009079 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009080 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009081 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009082 unsigned ConstructKind,
9083 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009084 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009085 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009086 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009087 HadMultipleCandidates, /*FIXME*/false,
9088 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009089 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9090 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009091}
9092
Mike Stump1eb44332009-09-09 15:08:12 +00009093bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009094 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009095 MultiExprArg Exprs,
9096 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009097 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009098 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009099 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009100 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009101 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009102 if (TempResult.isInvalid())
9103 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009104
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009105 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009106 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009107 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009108 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009109 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009110
Anders Carlssonfe2de492009-08-25 05:18:00 +00009111 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009112}
9113
John McCall68c6c9a2010-02-02 09:10:11 +00009114void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009115 if (VD->isInvalidDecl()) return;
9116
John McCall68c6c9a2010-02-02 09:10:11 +00009117 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009118 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009119 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009120 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009121
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009122 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009123 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009124 CheckDestructorAccess(VD->getLocation(), Destructor,
9125 PDiag(diag::err_access_dtor_var)
9126 << VD->getDeclName()
9127 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009128 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009129
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009130 if (!VD->hasGlobalStorage()) return;
9131
9132 // Emit warning for non-trivial dtor in global scope (a real global,
9133 // class-static, function-static).
9134 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9135
9136 // TODO: this should be re-enabled for static locals by !CXAAtExit
9137 if (!VD->isStaticLocal())
9138 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009139}
9140
Douglas Gregor39da0b82009-09-09 23:08:42 +00009141/// \brief Given a constructor and the set of arguments provided for the
9142/// constructor, convert the arguments and add any required default arguments
9143/// to form a proper call to this constructor.
9144///
9145/// \returns true if an error occurred, false otherwise.
9146bool
9147Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9148 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009149 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009150 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009151 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009152 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9153 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009154 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009155
9156 const FunctionProtoType *Proto
9157 = Constructor->getType()->getAs<FunctionProtoType>();
9158 assert(Proto && "Constructor without a prototype?");
9159 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009160
9161 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009162 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009163 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009164 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009165 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009166
9167 VariadicCallType CallType =
9168 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009169 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009170 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9171 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009172 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009173 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009174
9175 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9176
Richard Smith831421f2012-06-25 20:30:08 +00009177 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9178 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009179
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009180 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009181}
9182
Anders Carlsson20d45d22009-12-12 00:32:00 +00009183static inline bool
9184CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9185 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009186 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009187 if (isa<NamespaceDecl>(DC)) {
9188 return SemaRef.Diag(FnDecl->getLocation(),
9189 diag::err_operator_new_delete_declared_in_namespace)
9190 << FnDecl->getDeclName();
9191 }
9192
9193 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009194 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009195 return SemaRef.Diag(FnDecl->getLocation(),
9196 diag::err_operator_new_delete_declared_static)
9197 << FnDecl->getDeclName();
9198 }
9199
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009200 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009201}
9202
Anders Carlsson156c78e2009-12-13 17:53:43 +00009203static inline bool
9204CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9205 CanQualType ExpectedResultType,
9206 CanQualType ExpectedFirstParamType,
9207 unsigned DependentParamTypeDiag,
9208 unsigned InvalidParamTypeDiag) {
9209 QualType ResultType =
9210 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9211
9212 // Check that the result type is not dependent.
9213 if (ResultType->isDependentType())
9214 return SemaRef.Diag(FnDecl->getLocation(),
9215 diag::err_operator_new_delete_dependent_result_type)
9216 << FnDecl->getDeclName() << ExpectedResultType;
9217
9218 // Check that the result type is what we expect.
9219 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9220 return SemaRef.Diag(FnDecl->getLocation(),
9221 diag::err_operator_new_delete_invalid_result_type)
9222 << FnDecl->getDeclName() << ExpectedResultType;
9223
9224 // A function template must have at least 2 parameters.
9225 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9226 return SemaRef.Diag(FnDecl->getLocation(),
9227 diag::err_operator_new_delete_template_too_few_parameters)
9228 << FnDecl->getDeclName();
9229
9230 // The function decl must have at least 1 parameter.
9231 if (FnDecl->getNumParams() == 0)
9232 return SemaRef.Diag(FnDecl->getLocation(),
9233 diag::err_operator_new_delete_too_few_parameters)
9234 << FnDecl->getDeclName();
9235
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009236 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009237 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9238 if (FirstParamType->isDependentType())
9239 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9240 << FnDecl->getDeclName() << ExpectedFirstParamType;
9241
9242 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009243 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009244 ExpectedFirstParamType)
9245 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9246 << FnDecl->getDeclName() << ExpectedFirstParamType;
9247
9248 return false;
9249}
9250
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009251static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009252CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009253 // C++ [basic.stc.dynamic.allocation]p1:
9254 // A program is ill-formed if an allocation function is declared in a
9255 // namespace scope other than global scope or declared static in global
9256 // scope.
9257 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9258 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009259
9260 CanQualType SizeTy =
9261 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9262
9263 // C++ [basic.stc.dynamic.allocation]p1:
9264 // The return type shall be void*. The first parameter shall have type
9265 // std::size_t.
9266 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9267 SizeTy,
9268 diag::err_operator_new_dependent_param_type,
9269 diag::err_operator_new_param_type))
9270 return true;
9271
9272 // C++ [basic.stc.dynamic.allocation]p1:
9273 // The first parameter shall not have an associated default argument.
9274 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009275 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009276 diag::err_operator_new_default_arg)
9277 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9278
9279 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009280}
9281
9282static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009283CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9284 // C++ [basic.stc.dynamic.deallocation]p1:
9285 // A program is ill-formed if deallocation functions are declared in a
9286 // namespace scope other than global scope or declared static in global
9287 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009288 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9289 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009290
9291 // C++ [basic.stc.dynamic.deallocation]p2:
9292 // Each deallocation function shall return void and its first parameter
9293 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009294 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9295 SemaRef.Context.VoidPtrTy,
9296 diag::err_operator_delete_dependent_param_type,
9297 diag::err_operator_delete_param_type))
9298 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009299
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009300 return false;
9301}
9302
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009303/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9304/// of this overloaded operator is well-formed. If so, returns false;
9305/// otherwise, emits appropriate diagnostics and returns true.
9306bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009307 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009308 "Expected an overloaded operator declaration");
9309
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009310 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9311
Mike Stump1eb44332009-09-09 15:08:12 +00009312 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009313 // The allocation and deallocation functions, operator new,
9314 // operator new[], operator delete and operator delete[], are
9315 // described completely in 3.7.3. The attributes and restrictions
9316 // found in the rest of this subclause do not apply to them unless
9317 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009318 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009319 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009320
Anders Carlssona3ccda52009-12-12 00:26:23 +00009321 if (Op == OO_New || Op == OO_Array_New)
9322 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009323
9324 // C++ [over.oper]p6:
9325 // An operator function shall either be a non-static member
9326 // function or be a non-member function and have at least one
9327 // parameter whose type is a class, a reference to a class, an
9328 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009329 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9330 if (MethodDecl->isStatic())
9331 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009332 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009333 } else {
9334 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009335 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9336 ParamEnd = FnDecl->param_end();
9337 Param != ParamEnd; ++Param) {
9338 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009339 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9340 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009341 ClassOrEnumParam = true;
9342 break;
9343 }
9344 }
9345
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009346 if (!ClassOrEnumParam)
9347 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009348 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009349 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009350 }
9351
9352 // C++ [over.oper]p8:
9353 // An operator function cannot have default arguments (8.3.6),
9354 // except where explicitly stated below.
9355 //
Mike Stump1eb44332009-09-09 15:08:12 +00009356 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009357 // (C++ [over.call]p1).
9358 if (Op != OO_Call) {
9359 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9360 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009361 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009362 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009363 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009364 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009365 }
9366 }
9367
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009368 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9369 { false, false, false }
9370#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9371 , { Unary, Binary, MemberOnly }
9372#include "clang/Basic/OperatorKinds.def"
9373 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009374
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009375 bool CanBeUnaryOperator = OperatorUses[Op][0];
9376 bool CanBeBinaryOperator = OperatorUses[Op][1];
9377 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009378
9379 // C++ [over.oper]p8:
9380 // [...] Operator functions cannot have more or fewer parameters
9381 // than the number required for the corresponding operator, as
9382 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009383 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009384 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009385 if (Op != OO_Call &&
9386 ((NumParams == 1 && !CanBeUnaryOperator) ||
9387 (NumParams == 2 && !CanBeBinaryOperator) ||
9388 (NumParams < 1) || (NumParams > 2))) {
9389 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009390 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009391 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009392 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009393 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009394 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009395 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009396 assert(CanBeBinaryOperator &&
9397 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009398 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009399 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009400
Chris Lattner416e46f2008-11-21 07:57:12 +00009401 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009402 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009403 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009404
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009405 // Overloaded operators other than operator() cannot be variadic.
9406 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009407 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009408 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009409 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009410 }
9411
9412 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009413 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9414 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009415 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009416 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009417 }
9418
9419 // C++ [over.inc]p1:
9420 // The user-defined function called operator++ implements the
9421 // prefix and postfix ++ operator. If this function is a member
9422 // function with no parameters, or a non-member function with one
9423 // parameter of class or enumeration type, it defines the prefix
9424 // increment operator ++ for objects of that type. If the function
9425 // is a member function with one parameter (which shall be of type
9426 // int) or a non-member function with two parameters (the second
9427 // of which shall be of type int), it defines the postfix
9428 // increment operator ++ for objects of that type.
9429 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9430 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9431 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009432 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009433 ParamIsInt = BT->getKind() == BuiltinType::Int;
9434
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009435 if (!ParamIsInt)
9436 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009437 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009438 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009439 }
9440
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009441 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009442}
Chris Lattner5a003a42008-12-17 07:09:26 +00009443
Sean Hunta6c058d2010-01-13 09:01:02 +00009444/// CheckLiteralOperatorDeclaration - Check whether the declaration
9445/// of this literal operator function is well-formed. If so, returns
9446/// false; otherwise, emits appropriate diagnostics and returns true.
9447bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009448 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009449 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9450 << FnDecl->getDeclName();
9451 return true;
9452 }
9453
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009454 if (FnDecl->isExternC()) {
9455 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9456 return true;
9457 }
9458
Sean Hunta6c058d2010-01-13 09:01:02 +00009459 bool Valid = false;
9460
Richard Smith36f5cfe2012-03-09 08:00:36 +00009461 // This might be the definition of a literal operator template.
9462 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9463 // This might be a specialization of a literal operator template.
9464 if (!TpDecl)
9465 TpDecl = FnDecl->getPrimaryTemplate();
9466
Sean Hunt216c2782010-04-07 23:11:06 +00009467 // template <char...> type operator "" name() is the only valid template
9468 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009469 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009470 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009471 // Must have only one template parameter
9472 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9473 if (Params->size() == 1) {
9474 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009475 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009476
Sean Hunt216c2782010-04-07 23:11:06 +00009477 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009478 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9479 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9480 Valid = true;
9481 }
9482 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009483 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009484 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009485 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9486
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009487 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009488
Sean Hunt30019c02010-04-07 22:57:35 +00009489 // unsigned long long int, long double, and any character type are allowed
9490 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009491 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9492 Context.hasSameType(T, Context.LongDoubleTy) ||
9493 Context.hasSameType(T, Context.CharTy) ||
9494 Context.hasSameType(T, Context.WCharTy) ||
9495 Context.hasSameType(T, Context.Char16Ty) ||
9496 Context.hasSameType(T, Context.Char32Ty)) {
9497 if (++Param == FnDecl->param_end())
9498 Valid = true;
9499 goto FinishedParams;
9500 }
9501
Sean Hunt30019c02010-04-07 22:57:35 +00009502 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009503 const PointerType *PT = T->getAs<PointerType>();
9504 if (!PT)
9505 goto FinishedParams;
9506 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009507 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009508 goto FinishedParams;
9509 T = T.getUnqualifiedType();
9510
9511 // Move on to the second parameter;
9512 ++Param;
9513
9514 // If there is no second parameter, the first must be a const char *
9515 if (Param == FnDecl->param_end()) {
9516 if (Context.hasSameType(T, Context.CharTy))
9517 Valid = true;
9518 goto FinishedParams;
9519 }
9520
9521 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9522 // are allowed as the first parameter to a two-parameter function
9523 if (!(Context.hasSameType(T, Context.CharTy) ||
9524 Context.hasSameType(T, Context.WCharTy) ||
9525 Context.hasSameType(T, Context.Char16Ty) ||
9526 Context.hasSameType(T, Context.Char32Ty)))
9527 goto FinishedParams;
9528
9529 // The second and final parameter must be an std::size_t
9530 T = (*Param)->getType().getUnqualifiedType();
9531 if (Context.hasSameType(T, Context.getSizeType()) &&
9532 ++Param == FnDecl->param_end())
9533 Valid = true;
9534 }
9535
9536 // FIXME: This diagnostic is absolutely terrible.
9537FinishedParams:
9538 if (!Valid) {
9539 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9540 << FnDecl->getDeclName();
9541 return true;
9542 }
9543
Richard Smitha9e88b22012-03-09 08:16:22 +00009544 // A parameter-declaration-clause containing a default argument is not
9545 // equivalent to any of the permitted forms.
9546 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9547 ParamEnd = FnDecl->param_end();
9548 Param != ParamEnd; ++Param) {
9549 if ((*Param)->hasDefaultArg()) {
9550 Diag((*Param)->getDefaultArgRange().getBegin(),
9551 diag::err_literal_operator_default_argument)
9552 << (*Param)->getDefaultArgRange();
9553 break;
9554 }
9555 }
9556
Richard Smith2fb4ae32012-03-08 02:39:21 +00009557 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009558 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9559 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009560 // C++11 [usrlit.suffix]p1:
9561 // Literal suffix identifiers that do not start with an underscore
9562 // are reserved for future standardization.
9563 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009564 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009565
Sean Hunta6c058d2010-01-13 09:01:02 +00009566 return false;
9567}
9568
Douglas Gregor074149e2009-01-05 19:45:36 +00009569/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9570/// linkage specification, including the language and (if present)
9571/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9572/// the location of the language string literal, which is provided
9573/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9574/// the '{' brace. Otherwise, this linkage specification does not
9575/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009576Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9577 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009578 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009579 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009580 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009581 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009582 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009583 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009584 Language = LinkageSpecDecl::lang_cxx;
9585 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009586 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009587 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009588 }
Mike Stump1eb44332009-09-09 15:08:12 +00009589
Chris Lattnercc98eac2008-12-17 07:13:27 +00009590 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009591
Douglas Gregor074149e2009-01-05 19:45:36 +00009592 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009593 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009594 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009595 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009596 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009597}
9598
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009599/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009600/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9601/// valid, it's the position of the closing '}' brace in a linkage
9602/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009603Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009604 Decl *LinkageSpec,
9605 SourceLocation RBraceLoc) {
9606 if (LinkageSpec) {
9607 if (RBraceLoc.isValid()) {
9608 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9609 LSDecl->setRBraceLoc(RBraceLoc);
9610 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009611 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009612 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009613 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009614}
9615
Douglas Gregord308e622009-05-18 20:51:54 +00009616/// \brief Perform semantic analysis for the variable declaration that
9617/// occurs within a C++ catch clause, returning the newly-created
9618/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009619VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009620 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009621 SourceLocation StartLoc,
9622 SourceLocation Loc,
9623 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009624 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009625 QualType ExDeclType = TInfo->getType();
9626
Sebastian Redl4b07b292008-12-22 19:15:10 +00009627 // Arrays and functions decay.
9628 if (ExDeclType->isArrayType())
9629 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9630 else if (ExDeclType->isFunctionType())
9631 ExDeclType = Context.getPointerType(ExDeclType);
9632
9633 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9634 // The exception-declaration shall not denote a pointer or reference to an
9635 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009636 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009637 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009638 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009639 Invalid = true;
9640 }
Douglas Gregord308e622009-05-18 20:51:54 +00009641
Sebastian Redl4b07b292008-12-22 19:15:10 +00009642 QualType BaseType = ExDeclType;
9643 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009644 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009645 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009646 BaseType = Ptr->getPointeeType();
9647 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009648 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009649 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009650 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009651 BaseType = Ref->getPointeeType();
9652 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009653 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009654 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009655 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009656 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009657 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009658
Mike Stump1eb44332009-09-09 15:08:12 +00009659 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009660 RequireNonAbstractType(Loc, ExDeclType,
9661 diag::err_abstract_type_in_decl,
9662 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009663 Invalid = true;
9664
John McCall5a180392010-07-24 00:37:23 +00009665 // Only the non-fragile NeXT runtime currently supports C++ catches
9666 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009667 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009668 QualType T = ExDeclType;
9669 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9670 T = RT->getPointeeType();
9671
9672 if (T->isObjCObjectType()) {
9673 Diag(Loc, diag::err_objc_object_catch);
9674 Invalid = true;
9675 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009676 // FIXME: should this be a test for macosx-fragile specifically?
9677 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009678 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009679 }
9680 }
9681
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009682 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9683 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009684 ExDecl->setExceptionVariable(true);
9685
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009686 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009687 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009688 Invalid = true;
9689
Douglas Gregorc41b8782011-07-06 18:14:43 +00009690 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009691 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009692 // C++ [except.handle]p16:
9693 // The object declared in an exception-declaration or, if the
9694 // exception-declaration does not specify a name, a temporary (12.2) is
9695 // copy-initialized (8.5) from the exception object. [...]
9696 // The object is destroyed when the handler exits, after the destruction
9697 // of any automatic objects initialized within the handler.
9698 //
9699 // We just pretend to initialize the object with itself, then make sure
9700 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009701 QualType initType = ExDeclType;
9702
9703 InitializedEntity entity =
9704 InitializedEntity::InitializeVariable(ExDecl);
9705 InitializationKind initKind =
9706 InitializationKind::CreateCopy(Loc, SourceLocation());
9707
9708 Expr *opaqueValue =
9709 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9710 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9711 ExprResult result = sequence.Perform(*this, entity, initKind,
9712 MultiExprArg(&opaqueValue, 1));
9713 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009714 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009715 else {
9716 // If the constructor used was non-trivial, set this as the
9717 // "initializer".
9718 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9719 if (!construct->getConstructor()->isTrivial()) {
9720 Expr *init = MaybeCreateExprWithCleanups(construct);
9721 ExDecl->setInit(init);
9722 }
9723
9724 // And make sure it's destructable.
9725 FinalizeVarWithDestructor(ExDecl, recordType);
9726 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009727 }
9728 }
9729
Douglas Gregord308e622009-05-18 20:51:54 +00009730 if (Invalid)
9731 ExDecl->setInvalidDecl();
9732
9733 return ExDecl;
9734}
9735
9736/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9737/// handler.
John McCalld226f652010-08-21 09:40:31 +00009738Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009739 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009740 bool Invalid = D.isInvalidType();
9741
9742 // Check for unexpanded parameter packs.
9743 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9744 UPPC_ExceptionType)) {
9745 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9746 D.getIdentifierLoc());
9747 Invalid = true;
9748 }
9749
Sebastian Redl4b07b292008-12-22 19:15:10 +00009750 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009751 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009752 LookupOrdinaryName,
9753 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009754 // The scope should be freshly made just for us. There is just no way
9755 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009756 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009757 if (PrevDecl->isTemplateParameter()) {
9758 // Maybe we will complain about the shadowed template parameter.
9759 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009760 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009761 }
9762 }
9763
Chris Lattnereaaebc72009-04-25 08:06:05 +00009764 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009765 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9766 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009767 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009768 }
9769
Douglas Gregor83cb9422010-09-09 17:09:21 +00009770 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009771 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009772 D.getIdentifierLoc(),
9773 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009774 if (Invalid)
9775 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009776
Sebastian Redl4b07b292008-12-22 19:15:10 +00009777 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009778 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009779 PushOnScopeChains(ExDecl, S);
9780 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009781 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009782
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009783 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009784 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009785}
Anders Carlssonfb311762009-03-14 00:25:26 +00009786
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009787Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009788 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009789 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009790 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009791 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009792
Richard Smithe3f470a2012-07-11 22:37:56 +00009793 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9794 return 0;
9795
9796 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9797 AssertMessage, RParenLoc, false);
9798}
9799
9800Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9801 Expr *AssertExpr,
9802 StringLiteral *AssertMessage,
9803 SourceLocation RParenLoc,
9804 bool Failed) {
9805 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9806 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009807 // In a static_assert-declaration, the constant-expression shall be a
9808 // constant expression that can be contextually converted to bool.
9809 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9810 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009811 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009812
Richard Smithdaaefc52011-12-14 23:32:26 +00009813 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009814 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009815 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009816 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009817 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009818
Richard Smithe3f470a2012-07-11 22:37:56 +00009819 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009820 llvm::SmallString<256> MsgBuffer;
9821 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009822 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009823 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009824 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009825 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009826 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009827 }
Mike Stump1eb44332009-09-09 15:08:12 +00009828
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009829 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009830 AssertExpr, AssertMessage, RParenLoc,
9831 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009832
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009833 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009834 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009835}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009836
Douglas Gregor1d869352010-04-07 16:53:43 +00009837/// \brief Perform semantic analysis of the given friend type declaration.
9838///
9839/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009840FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9841 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009842 TypeSourceInfo *TSInfo) {
9843 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9844
9845 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009846 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009847
Richard Smith6b130222011-10-18 21:39:00 +00009848 // C++03 [class.friend]p2:
9849 // An elaborated-type-specifier shall be used in a friend declaration
9850 // for a class.*
9851 //
9852 // * The class-key of the elaborated-type-specifier is required.
9853 if (!ActiveTemplateInstantiations.empty()) {
9854 // Do not complain about the form of friend template types during
9855 // template instantiation; we will already have complained when the
9856 // template was declared.
9857 } else if (!T->isElaboratedTypeSpecifier()) {
9858 // If we evaluated the type to a record type, suggest putting
9859 // a tag in front.
9860 if (const RecordType *RT = T->getAs<RecordType>()) {
9861 RecordDecl *RD = RT->getDecl();
9862
9863 std::string InsertionText = std::string(" ") + RD->getKindName();
9864
9865 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009866 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009867 diag::warn_cxx98_compat_unelaborated_friend_type :
9868 diag::ext_unelaborated_friend_type)
9869 << (unsigned) RD->getTagKind()
9870 << T
9871 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9872 InsertionText);
9873 } else {
9874 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009875 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009876 diag::warn_cxx98_compat_nonclass_type_friend :
9877 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009878 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009879 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009880 }
Richard Smith6b130222011-10-18 21:39:00 +00009881 } else if (T->getAs<EnumType>()) {
9882 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009883 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009884 diag::warn_cxx98_compat_enum_friend :
9885 diag::ext_enum_friend)
9886 << T
9887 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009888 }
9889
Douglas Gregor06245bf2010-04-07 17:57:12 +00009890 // C++0x [class.friend]p3:
9891 // If the type specifier in a friend declaration designates a (possibly
9892 // cv-qualified) class type, that class is declared as a friend; otherwise,
9893 // the friend declaration is ignored.
9894
9895 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9896 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009897
Abramo Bagnara0216df82011-10-29 20:52:52 +00009898 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009899}
9900
John McCall9a34edb2010-10-19 01:40:49 +00009901/// Handle a friend tag declaration where the scope specifier was
9902/// templated.
9903Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9904 unsigned TagSpec, SourceLocation TagLoc,
9905 CXXScopeSpec &SS,
9906 IdentifierInfo *Name, SourceLocation NameLoc,
9907 AttributeList *Attr,
9908 MultiTemplateParamsArg TempParamLists) {
9909 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9910
9911 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009912 bool Invalid = false;
9913
9914 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009915 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009916 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009917 TempParamLists.size(),
9918 /*friend*/ true,
9919 isExplicitSpecialization,
9920 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009921 if (TemplateParams->size() > 0) {
9922 // This is a declaration of a class template.
9923 if (Invalid)
9924 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009925
Eric Christopher4110e132011-07-21 05:34:24 +00009926 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9927 SS, Name, NameLoc, Attr,
9928 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009929 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009930 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009931 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009932 } else {
9933 // The "template<>" header is extraneous.
9934 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9935 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9936 isExplicitSpecialization = true;
9937 }
9938 }
9939
9940 if (Invalid) return 0;
9941
John McCall9a34edb2010-10-19 01:40:49 +00009942 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009943 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009944 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +00009945 isAllExplicitSpecializations = false;
9946 break;
9947 }
9948 }
9949
9950 // FIXME: don't ignore attributes.
9951
9952 // If it's explicit specializations all the way down, just forget
9953 // about the template header and build an appropriate non-templated
9954 // friend. TODO: for source fidelity, remember the headers.
9955 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009956 if (SS.isEmpty()) {
9957 bool Owned = false;
9958 bool IsDependent = false;
9959 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9960 Attr, AS_public,
9961 /*ModulePrivateLoc=*/SourceLocation(),
9962 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009963 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009964 /*ScopedEnumUsesClassTag=*/false,
9965 /*UnderlyingType=*/TypeResult());
9966 }
9967
Douglas Gregor2494dd02011-03-01 01:34:45 +00009968 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009969 ElaboratedTypeKeyword Keyword
9970 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009971 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009972 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009973 if (T.isNull())
9974 return 0;
9975
9976 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9977 if (isa<DependentNameType>(T)) {
9978 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009979 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009980 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009981 TL.setNameLoc(NameLoc);
9982 } else {
9983 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009984 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009985 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009986 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9987 }
9988
9989 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9990 TSI, FriendLoc);
9991 Friend->setAccess(AS_public);
9992 CurContext->addDecl(Friend);
9993 return Friend;
9994 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009995
9996 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
9997
9998
John McCall9a34edb2010-10-19 01:40:49 +00009999
10000 // Handle the case of a templated-scope friend class. e.g.
10001 // template <class T> class A<T>::B;
10002 // FIXME: we don't support these right now.
10003 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10004 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10005 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10006 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010007 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010008 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010009 TL.setNameLoc(NameLoc);
10010
10011 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10012 TSI, FriendLoc);
10013 Friend->setAccess(AS_public);
10014 Friend->setUnsupportedFriend(true);
10015 CurContext->addDecl(Friend);
10016 return Friend;
10017}
10018
10019
John McCalldd4a3b02009-09-16 22:47:08 +000010020/// Handle a friend type declaration. This works in tandem with
10021/// ActOnTag.
10022///
10023/// Notes on friend class templates:
10024///
10025/// We generally treat friend class declarations as if they were
10026/// declaring a class. So, for example, the elaborated type specifier
10027/// in a friend declaration is required to obey the restrictions of a
10028/// class-head (i.e. no typedefs in the scope chain), template
10029/// parameters are required to match up with simple template-ids, &c.
10030/// However, unlike when declaring a template specialization, it's
10031/// okay to refer to a template specialization without an empty
10032/// template parameter declaration, e.g.
10033/// friend class A<T>::B<unsigned>;
10034/// We permit this as a special case; if there are any template
10035/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010036/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010037Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010038 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010039 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010040
10041 assert(DS.isFriendSpecified());
10042 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10043
John McCalldd4a3b02009-09-16 22:47:08 +000010044 // Try to convert the decl specifier to a type. This works for
10045 // friend templates because ActOnTag never produces a ClassTemplateDecl
10046 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010047 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010048 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10049 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010050 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010051 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010052
Douglas Gregor6ccab972010-12-16 01:14:37 +000010053 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10054 return 0;
10055
John McCalldd4a3b02009-09-16 22:47:08 +000010056 // This is definitely an error in C++98. It's probably meant to
10057 // be forbidden in C++0x, too, but the specification is just
10058 // poorly written.
10059 //
10060 // The problem is with declarations like the following:
10061 // template <T> friend A<T>::foo;
10062 // where deciding whether a class C is a friend or not now hinges
10063 // on whether there exists an instantiation of A that causes
10064 // 'foo' to equal C. There are restrictions on class-heads
10065 // (which we declare (by fiat) elaborated friend declarations to
10066 // be) that makes this tractable.
10067 //
10068 // FIXME: handle "template <> friend class A<T>;", which
10069 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010070 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010071 Diag(Loc, diag::err_tagless_friend_type_template)
10072 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010073 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010074 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010075
John McCall02cace72009-08-28 07:59:38 +000010076 // C++98 [class.friend]p1: A friend of a class is a function
10077 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010078 // This is fixed in DR77, which just barely didn't make the C++03
10079 // deadline. It's also a very silly restriction that seriously
10080 // affects inner classes and which nobody else seems to implement;
10081 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010082 //
10083 // But note that we could warn about it: it's always useless to
10084 // friend one of your own members (it's not, however, worthless to
10085 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010086
John McCalldd4a3b02009-09-16 22:47:08 +000010087 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010088 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010089 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010090 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010091 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010092 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010093 DS.getFriendSpecLoc());
10094 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010095 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010096
10097 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010098 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010099
John McCalldd4a3b02009-09-16 22:47:08 +000010100 D->setAccess(AS_public);
10101 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010102
John McCalld226f652010-08-21 09:40:31 +000010103 return D;
John McCall02cace72009-08-28 07:59:38 +000010104}
10105
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010106Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010107 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010108 const DeclSpec &DS = D.getDeclSpec();
10109
10110 assert(DS.isFriendSpecified());
10111 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10112
10113 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010114 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010115
10116 // C++ [class.friend]p1
10117 // A friend of a class is a function or class....
10118 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010119 // It *doesn't* see through dependent types, which is correct
10120 // according to [temp.arg.type]p3:
10121 // If a declaration acquires a function type through a
10122 // type dependent on a template-parameter and this causes
10123 // a declaration that does not use the syntactic form of a
10124 // function declarator to have a function type, the program
10125 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010126 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010127 Diag(Loc, diag::err_unexpected_friend);
10128
10129 // It might be worthwhile to try to recover by creating an
10130 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010131 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010132 }
10133
10134 // C++ [namespace.memdef]p3
10135 // - If a friend declaration in a non-local class first declares a
10136 // class or function, the friend class or function is a member
10137 // of the innermost enclosing namespace.
10138 // - The name of the friend is not found by simple name lookup
10139 // until a matching declaration is provided in that namespace
10140 // scope (either before or after the class declaration granting
10141 // friendship).
10142 // - If a friend function is called, its name may be found by the
10143 // name lookup that considers functions from namespaces and
10144 // classes associated with the types of the function arguments.
10145 // - When looking for a prior declaration of a class or a function
10146 // declared as a friend, scopes outside the innermost enclosing
10147 // namespace scope are not considered.
10148
John McCall337ec3d2010-10-12 23:13:28 +000010149 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010150 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10151 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010152 assert(Name);
10153
Douglas Gregor6ccab972010-12-16 01:14:37 +000010154 // Check for unexpanded parameter packs.
10155 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10156 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10157 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10158 return 0;
10159
John McCall67d1a672009-08-06 02:15:43 +000010160 // The context we found the declaration in, or in which we should
10161 // create the declaration.
10162 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010163 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010164 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010165 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010166
John McCall337ec3d2010-10-12 23:13:28 +000010167 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010168
John McCall337ec3d2010-10-12 23:13:28 +000010169 // There are four cases here.
10170 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010171 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010172 // there as appropriate.
10173 // Recover from invalid scope qualifiers as if they just weren't there.
10174 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010175 // C++0x [namespace.memdef]p3:
10176 // If the name in a friend declaration is neither qualified nor
10177 // a template-id and the declaration is a function or an
10178 // elaborated-type-specifier, the lookup to determine whether
10179 // the entity has been previously declared shall not consider
10180 // any scopes outside the innermost enclosing namespace.
10181 // C++0x [class.friend]p11:
10182 // If a friend declaration appears in a local class and the name
10183 // specified is an unqualified name, a prior declaration is
10184 // looked up without considering scopes that are outside the
10185 // innermost enclosing non-class scope. For a friend function
10186 // declaration, if there is no prior declaration, the program is
10187 // ill-formed.
10188 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010189 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010190
John McCall29ae6e52010-10-13 05:45:15 +000010191 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010192 DC = CurContext;
10193 while (true) {
10194 // Skip class contexts. If someone can cite chapter and verse
10195 // for this behavior, that would be nice --- it's what GCC and
10196 // EDG do, and it seems like a reasonable intent, but the spec
10197 // really only says that checks for unqualified existing
10198 // declarations should stop at the nearest enclosing namespace,
10199 // not that they should only consider the nearest enclosing
10200 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010201 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010202 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010203
John McCall68263142009-11-18 22:49:29 +000010204 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010205
10206 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010207 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010208 break;
John McCall29ae6e52010-10-13 05:45:15 +000010209
John McCall8a407372010-10-14 22:22:28 +000010210 if (isTemplateId) {
10211 if (isa<TranslationUnitDecl>(DC)) break;
10212 } else {
10213 if (DC->isFileContext()) break;
10214 }
John McCall67d1a672009-08-06 02:15:43 +000010215 DC = DC->getParent();
10216 }
10217
10218 // C++ [class.friend]p1: A friend of a class is a function or
10219 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010220 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010221 // Most C++ 98 compilers do seem to give an error here, so
10222 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010223 if (!Previous.empty() && DC->Equals(CurContext))
10224 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010225 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010226 diag::warn_cxx98_compat_friend_is_member :
10227 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010228
John McCall380aaa42010-10-13 06:22:15 +000010229 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010230
Douglas Gregor883af832011-10-10 01:11:59 +000010231 // C++ [class.friend]p6:
10232 // A function can be defined in a friend declaration of a class if and
10233 // only if the class is a non-local class (9.8), the function name is
10234 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010235 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010236 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10237 }
10238
John McCall337ec3d2010-10-12 23:13:28 +000010239 // - There's a non-dependent scope specifier, in which case we
10240 // compute it and do a previous lookup there for a function
10241 // or function template.
10242 } else if (!SS.getScopeRep()->isDependent()) {
10243 DC = computeDeclContext(SS);
10244 if (!DC) return 0;
10245
10246 if (RequireCompleteDeclContext(SS, DC)) return 0;
10247
10248 LookupQualifiedName(Previous, DC);
10249
10250 // Ignore things found implicitly in the wrong scope.
10251 // TODO: better diagnostics for this case. Suggesting the right
10252 // qualified scope would be nice...
10253 LookupResult::Filter F = Previous.makeFilter();
10254 while (F.hasNext()) {
10255 NamedDecl *D = F.next();
10256 if (!DC->InEnclosingNamespaceSetOf(
10257 D->getDeclContext()->getRedeclContext()))
10258 F.erase();
10259 }
10260 F.done();
10261
10262 if (Previous.empty()) {
10263 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010264 Diag(Loc, diag::err_qualified_friend_not_found)
10265 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010266 return 0;
10267 }
10268
10269 // C++ [class.friend]p1: A friend of a class is a function or
10270 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010271 if (DC->Equals(CurContext))
10272 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010273 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010274 diag::warn_cxx98_compat_friend_is_member :
10275 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010276
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010277 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010278 // C++ [class.friend]p6:
10279 // A function can be defined in a friend declaration of a class if and
10280 // only if the class is a non-local class (9.8), the function name is
10281 // unqualified, and the function has namespace scope.
10282 SemaDiagnosticBuilder DB
10283 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10284
10285 DB << SS.getScopeRep();
10286 if (DC->isFileContext())
10287 DB << FixItHint::CreateRemoval(SS.getRange());
10288 SS.clear();
10289 }
John McCall337ec3d2010-10-12 23:13:28 +000010290
10291 // - There's a scope specifier that does not match any template
10292 // parameter lists, in which case we use some arbitrary context,
10293 // create a method or method template, and wait for instantiation.
10294 // - There's a scope specifier that does match some template
10295 // parameter lists, which we don't handle right now.
10296 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010297 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010298 // C++ [class.friend]p6:
10299 // A function can be defined in a friend declaration of a class if and
10300 // only if the class is a non-local class (9.8), the function name is
10301 // unqualified, and the function has namespace scope.
10302 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10303 << SS.getScopeRep();
10304 }
10305
John McCall337ec3d2010-10-12 23:13:28 +000010306 DC = CurContext;
10307 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010308 }
Douglas Gregor883af832011-10-10 01:11:59 +000010309
John McCall29ae6e52010-10-13 05:45:15 +000010310 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010311 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010312 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10313 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10314 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010315 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010316 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10317 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010318 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010319 }
John McCall67d1a672009-08-06 02:15:43 +000010320 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010321
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010322 // FIXME: This is an egregious hack to cope with cases where the scope stack
10323 // does not contain the declaration context, i.e., in an out-of-line
10324 // definition of a class.
10325 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10326 if (!DCScope) {
10327 FakeDCScope.setEntity(DC);
10328 DCScope = &FakeDCScope;
10329 }
10330
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010331 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010332 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010333 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010334 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010335
Douglas Gregor182ddf02009-09-28 00:08:27 +000010336 assert(ND->getDeclContext() == DC);
10337 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010338
John McCallab88d972009-08-31 22:39:49 +000010339 // Add the function declaration to the appropriate lookup tables,
10340 // adjusting the redeclarations list as necessary. We don't
10341 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010342 //
John McCallab88d972009-08-31 22:39:49 +000010343 // Also update the scope-based lookup if the target context's
10344 // lookup context is in lexical scope.
10345 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010346 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010347 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010348 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010349 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010350 }
John McCall02cace72009-08-28 07:59:38 +000010351
10352 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010353 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010354 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010355 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010356 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010357
John McCall1f2e1a92012-08-10 03:15:35 +000010358 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010359 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010360 } else {
10361 if (DC->isRecord()) CheckFriendAccess(ND);
10362
John McCall6102ca12010-10-16 06:59:13 +000010363 FunctionDecl *FD;
10364 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10365 FD = FTD->getTemplatedDecl();
10366 else
10367 FD = cast<FunctionDecl>(ND);
10368
10369 // Mark templated-scope function declarations as unsupported.
10370 if (FD->getNumTemplateParameterLists())
10371 FrD->setUnsupportedFriend(true);
10372 }
John McCall337ec3d2010-10-12 23:13:28 +000010373
John McCalld226f652010-08-21 09:40:31 +000010374 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010375}
10376
John McCalld226f652010-08-21 09:40:31 +000010377void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10378 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010379
Sebastian Redl50de12f2009-03-24 22:27:57 +000010380 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10381 if (!Fn) {
10382 Diag(DelLoc, diag::err_deleted_non_function);
10383 return;
10384 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010385 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010386 // Don't consider the implicit declaration we generate for explicit
10387 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010388 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10389 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010390 Diag(DelLoc, diag::err_deleted_decl_not_first);
10391 Diag(Prev->getLocation(), diag::note_previous_declaration);
10392 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010393 // If the declaration wasn't the first, we delete the function anyway for
10394 // recovery.
10395 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010396 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010397
10398 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10399 if (!MD)
10400 return;
10401
10402 // A deleted special member function is trivial if the corresponding
10403 // implicitly-declared function would have been.
10404 switch (getSpecialMember(MD)) {
10405 case CXXInvalid:
10406 break;
10407 case CXXDefaultConstructor:
10408 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10409 break;
10410 case CXXCopyConstructor:
10411 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10412 break;
10413 case CXXMoveConstructor:
10414 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10415 break;
10416 case CXXCopyAssignment:
10417 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10418 break;
10419 case CXXMoveAssignment:
10420 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10421 break;
10422 case CXXDestructor:
10423 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10424 break;
10425 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010426}
Sebastian Redl13e88542009-04-27 21:33:24 +000010427
Sean Hunte4246a62011-05-12 06:15:49 +000010428void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10429 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10430
10431 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010432 if (MD->getParent()->isDependentType()) {
10433 MD->setDefaulted();
10434 MD->setExplicitlyDefaulted();
10435 return;
10436 }
10437
Sean Hunte4246a62011-05-12 06:15:49 +000010438 CXXSpecialMember Member = getSpecialMember(MD);
10439 if (Member == CXXInvalid) {
10440 Diag(DefaultLoc, diag::err_default_special_members);
10441 return;
10442 }
10443
10444 MD->setDefaulted();
10445 MD->setExplicitlyDefaulted();
10446
Sean Huntcd10dec2011-05-23 23:14:04 +000010447 // If this definition appears within the record, do the checking when
10448 // the record is complete.
10449 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010450 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010451 // Find the uninstantiated declaration that actually had the '= default'
10452 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010453 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010454
10455 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010456 return;
10457
Richard Smithb9d0b762012-07-27 04:22:15 +000010458 CheckExplicitlyDefaultedSpecialMember(MD);
10459
Sean Hunte4246a62011-05-12 06:15:49 +000010460 switch (Member) {
10461 case CXXDefaultConstructor: {
10462 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010463 if (!CD->isInvalidDecl())
10464 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10465 break;
10466 }
10467
10468 case CXXCopyConstructor: {
10469 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010470 if (!CD->isInvalidDecl())
10471 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010472 break;
10473 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010474
Sean Hunt2b188082011-05-14 05:23:28 +000010475 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010476 if (!MD->isInvalidDecl())
10477 DefineImplicitCopyAssignment(DefaultLoc, MD);
10478 break;
10479 }
10480
Sean Huntcb45a0f2011-05-12 22:46:25 +000010481 case CXXDestructor: {
10482 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010483 if (!DD->isInvalidDecl())
10484 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010485 break;
10486 }
10487
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010488 case CXXMoveConstructor: {
10489 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010490 if (!CD->isInvalidDecl())
10491 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010492 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010493 }
Sean Hunt82713172011-05-25 23:16:36 +000010494
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010495 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010496 if (!MD->isInvalidDecl())
10497 DefineImplicitMoveAssignment(DefaultLoc, MD);
10498 break;
10499 }
10500
10501 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010502 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010503 }
10504 } else {
10505 Diag(DefaultLoc, diag::err_default_special_members);
10506 }
10507}
10508
Sebastian Redl13e88542009-04-27 21:33:24 +000010509static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010510 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010511 Stmt *SubStmt = *CI;
10512 if (!SubStmt)
10513 continue;
10514 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010515 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010516 diag::err_return_in_constructor_handler);
10517 if (!isa<Expr>(SubStmt))
10518 SearchForReturnInStmt(Self, SubStmt);
10519 }
10520}
10521
10522void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10523 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10524 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10525 SearchForReturnInStmt(*this, Handler);
10526 }
10527}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010528
Mike Stump1eb44332009-09-09 15:08:12 +000010529bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010530 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010531 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10532 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010533
Chandler Carruth73857792010-02-15 11:53:20 +000010534 if (Context.hasSameType(NewTy, OldTy) ||
10535 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010536 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010537
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010538 // Check if the return types are covariant
10539 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010540
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010541 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010542 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10543 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010544 NewClassTy = NewPT->getPointeeType();
10545 OldClassTy = OldPT->getPointeeType();
10546 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010547 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10548 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10549 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10550 NewClassTy = NewRT->getPointeeType();
10551 OldClassTy = OldRT->getPointeeType();
10552 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010553 }
10554 }
Mike Stump1eb44332009-09-09 15:08:12 +000010555
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010556 // The return types aren't either both pointers or references to a class type.
10557 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010558 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010559 diag::err_different_return_type_for_overriding_virtual_function)
10560 << New->getDeclName() << NewTy << OldTy;
10561 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010562
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010563 return true;
10564 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010565
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010566 // C++ [class.virtual]p6:
10567 // If the return type of D::f differs from the return type of B::f, the
10568 // class type in the return type of D::f shall be complete at the point of
10569 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010570 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10571 if (!RT->isBeingDefined() &&
10572 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010573 diag::err_covariant_return_incomplete,
10574 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010575 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010576 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010577
Douglas Gregora4923eb2009-11-16 21:35:15 +000010578 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010579 // Check if the new class derives from the old class.
10580 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10581 Diag(New->getLocation(),
10582 diag::err_covariant_return_not_derived)
10583 << New->getDeclName() << NewTy << OldTy;
10584 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10585 return true;
10586 }
Mike Stump1eb44332009-09-09 15:08:12 +000010587
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010588 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010589 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010590 diag::err_covariant_return_inaccessible_base,
10591 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10592 // FIXME: Should this point to the return type?
10593 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010594 // FIXME: this note won't trigger for delayed access control
10595 // diagnostics, and it's impossible to get an undelayed error
10596 // here from access control during the original parse because
10597 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010598 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10599 return true;
10600 }
10601 }
Mike Stump1eb44332009-09-09 15:08:12 +000010602
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010603 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010604 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010605 Diag(New->getLocation(),
10606 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010607 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010608 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10609 return true;
10610 };
Mike Stump1eb44332009-09-09 15:08:12 +000010611
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010612
10613 // The new class type must have the same or less qualifiers as the old type.
10614 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10615 Diag(New->getLocation(),
10616 diag::err_covariant_return_type_class_type_more_qualified)
10617 << New->getDeclName() << NewTy << OldTy;
10618 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10619 return true;
10620 };
Mike Stump1eb44332009-09-09 15:08:12 +000010621
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010622 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010623}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010624
Douglas Gregor4ba31362009-12-01 17:24:26 +000010625/// \brief Mark the given method pure.
10626///
10627/// \param Method the method to be marked pure.
10628///
10629/// \param InitRange the source range that covers the "0" initializer.
10630bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010631 SourceLocation EndLoc = InitRange.getEnd();
10632 if (EndLoc.isValid())
10633 Method->setRangeEnd(EndLoc);
10634
Douglas Gregor4ba31362009-12-01 17:24:26 +000010635 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10636 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010637 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010638 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010639
10640 if (!Method->isInvalidDecl())
10641 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10642 << Method->getDeclName() << InitRange;
10643 return true;
10644}
10645
Douglas Gregor552e2992012-02-21 02:22:07 +000010646/// \brief Determine whether the given declaration is a static data member.
10647static bool isStaticDataMember(Decl *D) {
10648 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10649 if (!Var)
10650 return false;
10651
10652 return Var->isStaticDataMember();
10653}
John McCall731ad842009-12-19 09:28:58 +000010654/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10655/// an initializer for the out-of-line declaration 'Dcl'. The scope
10656/// is a fresh scope pushed for just this purpose.
10657///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010658/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10659/// static data member of class X, names should be looked up in the scope of
10660/// class X.
John McCalld226f652010-08-21 09:40:31 +000010661void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010662 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010663 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010664
John McCall731ad842009-12-19 09:28:58 +000010665 // We should only get called for declarations with scope specifiers, like:
10666 // int foo::bar;
10667 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010668 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010669
10670 // If we are parsing the initializer for a static data member, push a
10671 // new expression evaluation context that is associated with this static
10672 // data member.
10673 if (isStaticDataMember(D))
10674 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010675}
10676
10677/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010678/// initializer for the out-of-line declaration 'D'.
10679void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010680 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010681 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010682
Douglas Gregor552e2992012-02-21 02:22:07 +000010683 if (isStaticDataMember(D))
10684 PopExpressionEvaluationContext();
10685
John McCall731ad842009-12-19 09:28:58 +000010686 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010687 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010688}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010689
10690/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10691/// C++ if/switch/while/for statement.
10692/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010693DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010694 // C++ 6.4p2:
10695 // The declarator shall not specify a function or an array.
10696 // The type-specifier-seq shall not contain typedef and shall not declare a
10697 // new class or enumeration.
10698 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10699 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010700
10701 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010702 if (!Dcl)
10703 return true;
10704
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010705 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10706 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010707 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010708 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010709 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010710
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010711 return Dcl;
10712}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010713
Douglas Gregordfe65432011-07-28 19:11:31 +000010714void Sema::LoadExternalVTableUses() {
10715 if (!ExternalSource)
10716 return;
10717
10718 SmallVector<ExternalVTableUse, 4> VTables;
10719 ExternalSource->ReadUsedVTables(VTables);
10720 SmallVector<VTableUse, 4> NewUses;
10721 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10722 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10723 = VTablesUsed.find(VTables[I].Record);
10724 // Even if a definition wasn't required before, it may be required now.
10725 if (Pos != VTablesUsed.end()) {
10726 if (!Pos->second && VTables[I].DefinitionRequired)
10727 Pos->second = true;
10728 continue;
10729 }
10730
10731 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10732 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10733 }
10734
10735 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10736}
10737
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010738void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10739 bool DefinitionRequired) {
10740 // Ignore any vtable uses in unevaluated operands or for classes that do
10741 // not have a vtable.
10742 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10743 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010744 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010745 return;
10746
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010747 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010748 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010749 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10750 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10751 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10752 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010753 // If we already had an entry, check to see if we are promoting this vtable
10754 // to required a definition. If so, we need to reappend to the VTableUses
10755 // list, since we may have already processed the first entry.
10756 if (DefinitionRequired && !Pos.first->second) {
10757 Pos.first->second = true;
10758 } else {
10759 // Otherwise, we can early exit.
10760 return;
10761 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010762 }
10763
10764 // Local classes need to have their virtual members marked
10765 // immediately. For all other classes, we mark their virtual members
10766 // at the end of the translation unit.
10767 if (Class->isLocalClass())
10768 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010769 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010770 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010771}
10772
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010773bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010774 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010775 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010776 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010777
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010778 // Note: The VTableUses vector could grow as a result of marking
10779 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010780 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010781 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010782 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010783 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010784 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010785 if (!Class)
10786 continue;
10787
10788 SourceLocation Loc = VTableUses[I].second;
10789
Richard Smithb9d0b762012-07-27 04:22:15 +000010790 bool DefineVTable = true;
10791
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010792 // If this class has a key function, but that key function is
10793 // defined in another translation unit, we don't need to emit the
10794 // vtable even though we're using it.
10795 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010796 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010797 switch (KeyFunction->getTemplateSpecializationKind()) {
10798 case TSK_Undeclared:
10799 case TSK_ExplicitSpecialization:
10800 case TSK_ExplicitInstantiationDeclaration:
10801 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010802 DefineVTable = false;
10803 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010804
10805 case TSK_ExplicitInstantiationDefinition:
10806 case TSK_ImplicitInstantiation:
10807 // We will be instantiating the key function.
10808 break;
10809 }
10810 } else if (!KeyFunction) {
10811 // If we have a class with no key function that is the subject
10812 // of an explicit instantiation declaration, suppress the
10813 // vtable; it will live with the explicit instantiation
10814 // definition.
10815 bool IsExplicitInstantiationDeclaration
10816 = Class->getTemplateSpecializationKind()
10817 == TSK_ExplicitInstantiationDeclaration;
10818 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10819 REnd = Class->redecls_end();
10820 R != REnd; ++R) {
10821 TemplateSpecializationKind TSK
10822 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10823 if (TSK == TSK_ExplicitInstantiationDeclaration)
10824 IsExplicitInstantiationDeclaration = true;
10825 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10826 IsExplicitInstantiationDeclaration = false;
10827 break;
10828 }
10829 }
10830
10831 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010832 DefineVTable = false;
10833 }
10834
10835 // The exception specifications for all virtual members may be needed even
10836 // if we are not providing an authoritative form of the vtable in this TU.
10837 // We may choose to emit it available_externally anyway.
10838 if (!DefineVTable) {
10839 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10840 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010841 }
10842
10843 // Mark all of the virtual members of this class as referenced, so
10844 // that we can build a vtable. Then, tell the AST consumer that a
10845 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010846 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010847 MarkVirtualMembersReferenced(Loc, Class);
10848 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10849 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10850
10851 // Optionally warn if we're emitting a weak vtable.
10852 if (Class->getLinkage() == ExternalLinkage &&
10853 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010854 const FunctionDecl *KeyFunctionDef = 0;
10855 if (!KeyFunction ||
10856 (KeyFunction->hasBody(KeyFunctionDef) &&
10857 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010858 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10859 TSK_ExplicitInstantiationDefinition
10860 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10861 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010862 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010863 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010864 VTableUses.clear();
10865
Douglas Gregor78844032011-04-22 22:25:37 +000010866 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010867}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010868
Richard Smithb9d0b762012-07-27 04:22:15 +000010869void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10870 const CXXRecordDecl *RD) {
10871 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10872 E = RD->method_end(); I != E; ++I)
10873 if ((*I)->isVirtual() && !(*I)->isPure())
10874 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10875}
10876
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010877void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10878 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010879 // Mark all functions which will appear in RD's vtable as used.
10880 CXXFinalOverriderMap FinalOverriders;
10881 RD->getFinalOverriders(FinalOverriders);
10882 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10883 E = FinalOverriders.end();
10884 I != E; ++I) {
10885 for (OverridingMethods::const_iterator OI = I->second.begin(),
10886 OE = I->second.end();
10887 OI != OE; ++OI) {
10888 assert(OI->second.size() > 0 && "no final overrider");
10889 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010890
Richard Smithff817f72012-07-07 06:59:51 +000010891 // C++ [basic.def.odr]p2:
10892 // [...] A virtual member function is used if it is not pure. [...]
10893 if (!Overrider->isPure())
10894 MarkFunctionReferenced(Loc, Overrider);
10895 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010896 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010897
10898 // Only classes that have virtual bases need a VTT.
10899 if (RD->getNumVBases() == 0)
10900 return;
10901
10902 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10903 e = RD->bases_end(); i != e; ++i) {
10904 const CXXRecordDecl *Base =
10905 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010906 if (Base->getNumVBases() == 0)
10907 continue;
10908 MarkVirtualMembersReferenced(Loc, Base);
10909 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010910}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010911
10912/// SetIvarInitializers - This routine builds initialization ASTs for the
10913/// Objective-C implementation whose ivars need be initialized.
10914void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010915 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010916 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010917 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010918 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010919 CollectIvarsToConstructOrDestruct(OID, ivars);
10920 if (ivars.empty())
10921 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010922 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010923 for (unsigned i = 0; i < ivars.size(); i++) {
10924 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010925 if (Field->isInvalidDecl())
10926 continue;
10927
Sean Huntcbb67482011-01-08 20:30:50 +000010928 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010929 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10930 InitializationKind InitKind =
10931 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10932
10933 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010934 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010935 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010936 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010937 // Note, MemberInit could actually come back empty if no initialization
10938 // is required (e.g., because it would call a trivial default constructor)
10939 if (!MemberInit.get() || MemberInit.isInvalid())
10940 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010941
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010942 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010943 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10944 SourceLocation(),
10945 MemberInit.takeAs<Expr>(),
10946 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010947 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010948
10949 // Be sure that the destructor is accessible and is marked as referenced.
10950 if (const RecordType *RecordTy
10951 = Context.getBaseElementType(Field->getType())
10952 ->getAs<RecordType>()) {
10953 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010954 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010955 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010956 CheckDestructorAccess(Field->getLocation(), Destructor,
10957 PDiag(diag::err_access_dtor_ivar)
10958 << Context.getBaseElementType(Field->getType()));
10959 }
10960 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010961 }
10962 ObjCImplementation->setIvarInitializers(Context,
10963 AllToInit.data(), AllToInit.size());
10964 }
10965}
Sean Huntfe57eef2011-05-04 05:57:24 +000010966
Sean Huntebcbe1d2011-05-04 23:29:54 +000010967static
10968void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10969 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10970 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10971 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10972 Sema &S) {
10973 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10974 CE = Current.end();
10975 if (Ctor->isInvalidDecl())
10976 return;
10977
Richard Smitha8eaf002012-08-23 06:16:52 +000010978 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
10979
10980 // Target may not be determinable yet, for instance if this is a dependent
10981 // call in an uninstantiated template.
10982 if (Target) {
10983 const FunctionDecl *FNTarget = 0;
10984 (void)Target->hasBody(FNTarget);
10985 Target = const_cast<CXXConstructorDecl*>(
10986 cast_or_null<CXXConstructorDecl>(FNTarget));
10987 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010988
10989 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10990 // Avoid dereferencing a null pointer here.
10991 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10992
10993 if (!Current.insert(Canonical))
10994 return;
10995
10996 // We know that beyond here, we aren't chaining into a cycle.
10997 if (!Target || !Target->isDelegatingConstructor() ||
10998 Target->isInvalidDecl() || Valid.count(TCanonical)) {
10999 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11000 Valid.insert(*CI);
11001 Current.clear();
11002 // We've hit a cycle.
11003 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11004 Current.count(TCanonical)) {
11005 // If we haven't diagnosed this cycle yet, do so now.
11006 if (!Invalid.count(TCanonical)) {
11007 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011008 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011009 << Ctor;
11010
Richard Smitha8eaf002012-08-23 06:16:52 +000011011 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011012 if (TCanonical != Canonical)
11013 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11014
11015 CXXConstructorDecl *C = Target;
11016 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011017 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011018 (void)C->getTargetConstructor()->hasBody(FNTarget);
11019 assert(FNTarget && "Ctor cycle through bodiless function");
11020
Richard Smitha8eaf002012-08-23 06:16:52 +000011021 C = const_cast<CXXConstructorDecl*>(
11022 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011023 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11024 }
11025 }
11026
11027 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11028 Invalid.insert(*CI);
11029 Current.clear();
11030 } else {
11031 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11032 }
11033}
11034
11035
Sean Huntfe57eef2011-05-04 05:57:24 +000011036void Sema::CheckDelegatingCtorCycles() {
11037 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11038
Sean Huntebcbe1d2011-05-04 23:29:54 +000011039 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11040 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011041
Douglas Gregor0129b562011-07-27 21:57:17 +000011042 for (DelegatingCtorDeclsType::iterator
11043 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011044 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011045 I != E; ++I)
11046 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011047
11048 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11049 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011050}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011051
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011052namespace {
11053 /// \brief AST visitor that finds references to the 'this' expression.
11054 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11055 Sema &S;
11056
11057 public:
11058 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11059
11060 bool VisitCXXThisExpr(CXXThisExpr *E) {
11061 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11062 << E->isImplicit();
11063 return false;
11064 }
11065 };
11066}
11067
11068bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11069 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11070 if (!TSInfo)
11071 return false;
11072
11073 TypeLoc TL = TSInfo->getTypeLoc();
11074 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11075 if (!ProtoTL)
11076 return false;
11077
11078 // C++11 [expr.prim.general]p3:
11079 // [The expression this] shall not appear before the optional
11080 // cv-qualifier-seq and it shall not appear within the declaration of a
11081 // static member function (although its type and value category are defined
11082 // within a static member function as they are within a non-static member
11083 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011084 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011085 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11086 FindCXXThisExpr Finder(*this);
11087
11088 // If the return type came after the cv-qualifier-seq, check it now.
11089 if (Proto->hasTrailingReturn() &&
11090 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11091 return true;
11092
11093 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011094 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11095 return true;
11096
11097 return checkThisInStaticMemberFunctionAttributes(Method);
11098}
11099
11100bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11101 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11102 if (!TSInfo)
11103 return false;
11104
11105 TypeLoc TL = TSInfo->getTypeLoc();
11106 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11107 if (!ProtoTL)
11108 return false;
11109
11110 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11111 FindCXXThisExpr Finder(*this);
11112
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011113 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011114 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011115 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011116 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011117 case EST_DynamicNone:
11118 case EST_MSAny:
11119 case EST_None:
11120 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011121
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011122 case EST_ComputedNoexcept:
11123 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11124 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011125
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011126 case EST_Dynamic:
11127 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011128 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011129 E != EEnd; ++E) {
11130 if (!Finder.TraverseType(*E))
11131 return true;
11132 }
11133 break;
11134 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011135
11136 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011137}
11138
11139bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11140 FindCXXThisExpr Finder(*this);
11141
11142 // Check attributes.
11143 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11144 A != AEnd; ++A) {
11145 // FIXME: This should be emitted by tblgen.
11146 Expr *Arg = 0;
11147 ArrayRef<Expr *> Args;
11148 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11149 Arg = G->getArg();
11150 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11151 Arg = G->getArg();
11152 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11153 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11154 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11155 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11156 else if (ExclusiveLockFunctionAttr *ELF
11157 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11158 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11159 else if (SharedLockFunctionAttr *SLF
11160 = dyn_cast<SharedLockFunctionAttr>(*A))
11161 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11162 else if (ExclusiveTrylockFunctionAttr *ETLF
11163 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11164 Arg = ETLF->getSuccessValue();
11165 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11166 } else if (SharedTrylockFunctionAttr *STLF
11167 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11168 Arg = STLF->getSuccessValue();
11169 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11170 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11171 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11172 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11173 Arg = LR->getArg();
11174 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11175 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11176 else if (ExclusiveLocksRequiredAttr *ELR
11177 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11178 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11179 else if (SharedLocksRequiredAttr *SLR
11180 = dyn_cast<SharedLocksRequiredAttr>(*A))
11181 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11182
11183 if (Arg && !Finder.TraverseStmt(Arg))
11184 return true;
11185
11186 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11187 if (!Finder.TraverseStmt(Args[I]))
11188 return true;
11189 }
11190 }
11191
11192 return false;
11193}
11194
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011195void
11196Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11197 ArrayRef<ParsedType> DynamicExceptions,
11198 ArrayRef<SourceRange> DynamicExceptionRanges,
11199 Expr *NoexceptExpr,
11200 llvm::SmallVectorImpl<QualType> &Exceptions,
11201 FunctionProtoType::ExtProtoInfo &EPI) {
11202 Exceptions.clear();
11203 EPI.ExceptionSpecType = EST;
11204 if (EST == EST_Dynamic) {
11205 Exceptions.reserve(DynamicExceptions.size());
11206 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11207 // FIXME: Preserve type source info.
11208 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11209
11210 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11211 collectUnexpandedParameterPacks(ET, Unexpanded);
11212 if (!Unexpanded.empty()) {
11213 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11214 UPPC_ExceptionType,
11215 Unexpanded);
11216 continue;
11217 }
11218
11219 // Check that the type is valid for an exception spec, and
11220 // drop it if not.
11221 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11222 Exceptions.push_back(ET);
11223 }
11224 EPI.NumExceptions = Exceptions.size();
11225 EPI.Exceptions = Exceptions.data();
11226 return;
11227 }
11228
11229 if (EST == EST_ComputedNoexcept) {
11230 // If an error occurred, there's no expression here.
11231 if (NoexceptExpr) {
11232 assert((NoexceptExpr->isTypeDependent() ||
11233 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11234 Context.BoolTy) &&
11235 "Parser should have made sure that the expression is boolean");
11236 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11237 EPI.ExceptionSpecType = EST_BasicNoexcept;
11238 return;
11239 }
11240
11241 if (!NoexceptExpr->isValueDependent())
11242 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011243 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011244 /*AllowFold*/ false).take();
11245 EPI.NoexceptExpr = NoexceptExpr;
11246 }
11247 return;
11248 }
11249}
11250
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011251/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11252Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11253 // Implicitly declared functions (e.g. copy constructors) are
11254 // __host__ __device__
11255 if (D->isImplicit())
11256 return CFT_HostDevice;
11257
11258 if (D->hasAttr<CUDAGlobalAttr>())
11259 return CFT_Global;
11260
11261 if (D->hasAttr<CUDADeviceAttr>()) {
11262 if (D->hasAttr<CUDAHostAttr>())
11263 return CFT_HostDevice;
11264 else
11265 return CFT_Device;
11266 }
11267
11268 return CFT_Host;
11269}
11270
11271bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11272 CUDAFunctionTarget CalleeTarget) {
11273 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11274 // Callable from the device only."
11275 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11276 return true;
11277
11278 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11279 // Callable from the host only."
11280 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11281 // Callable from the host only."
11282 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11283 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11284 return true;
11285
11286 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11287 return true;
11288
11289 return false;
11290}