blob: 318342ec7615fae053b3861cc8ff1cc7cc739b6c [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) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001423 if (D->isInvalidDecl())
1424 return;
1425
Chris Lattner5f9e2722011-07-23 10:55:15 +00001426 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001427
Richard Smitha4b39652012-08-06 03:25:17 +00001428 // Do we know which functions this declaration might be overriding?
1429 bool OverridesAreKnown = !MD ||
1430 (!MD->getParent()->hasAnyDependentBases() &&
1431 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001432
Richard Smitha4b39652012-08-06 03:25:17 +00001433 if (!MD || !MD->isVirtual()) {
1434 if (OverridesAreKnown) {
1435 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1436 Diag(OA->getLocation(),
1437 diag::override_keyword_only_allowed_on_virtual_member_functions)
1438 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1439 D->dropAttr<OverrideAttr>();
1440 }
1441 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1442 Diag(FA->getLocation(),
1443 diag::override_keyword_only_allowed_on_virtual_member_functions)
1444 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1445 D->dropAttr<FinalAttr>();
1446 }
1447 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001448 return;
1449 }
Richard Smitha4b39652012-08-06 03:25:17 +00001450
1451 if (!OverridesAreKnown)
1452 return;
1453
1454 // C++11 [class.virtual]p5:
1455 // If a virtual function is marked with the virt-specifier override and
1456 // does not override a member function of a base class, the program is
1457 // ill-formed.
1458 bool HasOverriddenMethods =
1459 MD->begin_overridden_methods() != MD->end_overridden_methods();
1460 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1461 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1462 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001463}
1464
Richard Smitha4b39652012-08-06 03:25:17 +00001465/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001466/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001467/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001468bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1469 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001470 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001471 return false;
1472
1473 Diag(New->getLocation(), diag::err_final_function_overridden)
1474 << New->getDeclName();
1475 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1476 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001477}
1478
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001479static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001480 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1481 // FIXME: Destruction of ObjC lifetime types has side-effects.
1482 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1483 return !RD->isCompleteDefinition() ||
1484 !RD->hasTrivialDefaultConstructor() ||
1485 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001486 return false;
1487}
1488
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001489/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1490/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001491/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001492/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1493/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001494Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001495Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001496 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001497 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001498 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001499 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001500 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1501 DeclarationName Name = NameInfo.getName();
1502 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001503
1504 // For anonymous bitfields, the location should point to the type.
1505 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001506 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001507
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001508 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001509
John McCall4bde1e12010-06-04 08:34:12 +00001510 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001511 assert(!DS.isFriendSpecified());
1512
Richard Smith1ab0d902011-06-25 02:28:38 +00001513 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001514
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001515 // C++ 9.2p6: A member shall not be declared to have automatic storage
1516 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001517 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1518 // data members and cannot be applied to names declared const or static,
1519 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001520 switch (DS.getStorageClassSpec()) {
1521 case DeclSpec::SCS_unspecified:
1522 case DeclSpec::SCS_typedef:
1523 case DeclSpec::SCS_static:
1524 // FALL THROUGH.
1525 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001526 case DeclSpec::SCS_mutable:
1527 if (isFunc) {
1528 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001529 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001530 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001531 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001532
Sebastian Redla11f42f2008-11-17 23:24:37 +00001533 // FIXME: It would be nicer if the keyword was ignored only for this
1534 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001535 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001536 }
1537 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001538 default:
1539 if (DS.getStorageClassSpecLoc().isValid())
1540 Diag(DS.getStorageClassSpecLoc(),
1541 diag::err_storageclass_invalid_for_member);
1542 else
1543 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1544 D.getMutableDeclSpec().ClearStorageClassSpecs();
1545 }
1546
Sebastian Redl669d5d72008-11-14 23:42:31 +00001547 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1548 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001549 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001550
1551 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001552 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001553 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001554
1555 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001556 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001557 Diag(Loc, diag::err_bad_variable_name)
1558 << Name;
1559 return 0;
1560 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001561
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001562 IdentifierInfo *II = Name.getAsIdentifierInfo();
1563
Douglas Gregorf2503652011-09-21 14:40:46 +00001564 // Member field could not be with "template" keyword.
1565 // So TemplateParameterLists should be empty in this case.
1566 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001567 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001568 if (TemplateParams->size()) {
1569 // There is no such thing as a member field template.
1570 Diag(D.getIdentifierLoc(), diag::err_template_member)
1571 << II
1572 << SourceRange(TemplateParams->getTemplateLoc(),
1573 TemplateParams->getRAngleLoc());
1574 } else {
1575 // There is an extraneous 'template<>' for this member.
1576 Diag(TemplateParams->getTemplateLoc(),
1577 diag::err_template_member_noparams)
1578 << II
1579 << SourceRange(TemplateParams->getTemplateLoc(),
1580 TemplateParams->getRAngleLoc());
1581 }
1582 return 0;
1583 }
1584
Douglas Gregor922fff22010-10-13 22:19:53 +00001585 if (SS.isSet() && !SS.isInvalid()) {
1586 // The user provided a superfluous scope specifier inside a class
1587 // definition:
1588 //
1589 // class X {
1590 // int X::member;
1591 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001592 if (DeclContext *DC = computeDeclContext(SS, false))
1593 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001594 else
1595 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1596 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001597
Douglas Gregor922fff22010-10-13 22:19:53 +00001598 SS.clear();
1599 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001600
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001601 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001602 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001603 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001604 } else {
Richard Smithca523302012-06-10 03:12:00 +00001605 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001606
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001607 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001608 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001609 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001610 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001611
1612 // Non-instance-fields can't have a bitfield.
1613 if (BitWidth) {
1614 if (Member->isInvalidDecl()) {
1615 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001616 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001617 // C++ 9.6p3: A bit-field shall not be a static member.
1618 // "static member 'A' cannot be a bit-field"
1619 Diag(Loc, diag::err_static_not_bitfield)
1620 << Name << BitWidth->getSourceRange();
1621 } else if (isa<TypedefDecl>(Member)) {
1622 // "typedef member 'x' cannot be a bit-field"
1623 Diag(Loc, diag::err_typedef_not_bitfield)
1624 << Name << BitWidth->getSourceRange();
1625 } else {
1626 // A function typedef ("typedef int f(); f a;").
1627 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1628 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001629 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001630 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001631 }
Mike Stump1eb44332009-09-09 15:08:12 +00001632
Chris Lattner8b963ef2009-03-05 23:01:03 +00001633 BitWidth = 0;
1634 Member->setInvalidDecl();
1635 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001636
1637 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001638
Douglas Gregor37b372b2009-08-20 22:52:58 +00001639 // If we have declared a member function template, set the access of the
1640 // templated declaration as well.
1641 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1642 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001643 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001644
Richard Smitha4b39652012-08-06 03:25:17 +00001645 if (VS.isOverrideSpecified())
1646 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1647 if (VS.isFinalSpecified())
1648 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001649
Douglas Gregorf5251602011-03-08 17:10:18 +00001650 if (VS.getLastLocation().isValid()) {
1651 // Update the end location of a method that has a virt-specifiers.
1652 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1653 MD->setRangeEnd(VS.getLastLocation());
1654 }
Richard Smitha4b39652012-08-06 03:25:17 +00001655
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001656 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001657
Douglas Gregor10bd3682008-11-17 22:58:34 +00001658 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001659
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001660 if (isInstField) {
1661 FieldDecl *FD = cast<FieldDecl>(Member);
1662 FieldCollector->Add(FD);
1663
1664 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1665 FD->getLocation())
1666 != DiagnosticsEngine::Ignored) {
1667 // Remember all explicit private FieldDecls that have a name, no side
1668 // effects and are not part of a dependent type declaration.
1669 if (!FD->isImplicit() && FD->getDeclName() &&
1670 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001671 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001672 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001673 !InitializationHasSideEffects(*FD))
1674 UnusedPrivateFields.insert(FD);
1675 }
1676 }
1677
John McCalld226f652010-08-21 09:40:31 +00001678 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001679}
1680
Richard Smith7a614d82011-06-11 17:19:42 +00001681/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001682/// in-class initializer for a non-static C++ class member, and after
1683/// instantiating an in-class initializer in a class template. Such actions
1684/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001685void
Richard Smithca523302012-06-10 03:12:00 +00001686Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001687 Expr *InitExpr) {
1688 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001689 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1690 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001691
1692 if (!InitExpr) {
1693 FD->setInvalidDecl();
1694 FD->removeInClassInitializer();
1695 return;
1696 }
1697
Peter Collingbournefef21892011-10-23 18:59:44 +00001698 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1699 FD->setInvalidDecl();
1700 FD->removeInClassInitializer();
1701 return;
1702 }
1703
Richard Smith7a614d82011-06-11 17:19:42 +00001704 ExprResult Init = InitExpr;
1705 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001706 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001707 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001708 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1709 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001710 Expr **Inits = &InitExpr;
1711 unsigned NumInits = 1;
1712 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001713 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001714 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001715 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001716 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1717 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001718 if (Init.isInvalid()) {
1719 FD->setInvalidDecl();
1720 return;
1721 }
1722
Richard Smithca523302012-06-10 03:12:00 +00001723 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001724 }
1725
1726 // C++0x [class.base.init]p7:
1727 // The initialization of each base and member constitutes a
1728 // full-expression.
1729 Init = MaybeCreateExprWithCleanups(Init);
1730 if (Init.isInvalid()) {
1731 FD->setInvalidDecl();
1732 return;
1733 }
1734
1735 InitExpr = Init.release();
1736
1737 FD->setInClassInitializer(InitExpr);
1738}
1739
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001740/// \brief Find the direct and/or virtual base specifiers that
1741/// correspond to the given base type, for use in base initialization
1742/// within a constructor.
1743static bool FindBaseInitializer(Sema &SemaRef,
1744 CXXRecordDecl *ClassDecl,
1745 QualType BaseType,
1746 const CXXBaseSpecifier *&DirectBaseSpec,
1747 const CXXBaseSpecifier *&VirtualBaseSpec) {
1748 // First, check for a direct base class.
1749 DirectBaseSpec = 0;
1750 for (CXXRecordDecl::base_class_const_iterator Base
1751 = ClassDecl->bases_begin();
1752 Base != ClassDecl->bases_end(); ++Base) {
1753 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1754 // We found a direct base of this type. That's what we're
1755 // initializing.
1756 DirectBaseSpec = &*Base;
1757 break;
1758 }
1759 }
1760
1761 // Check for a virtual base class.
1762 // FIXME: We might be able to short-circuit this if we know in advance that
1763 // there are no virtual bases.
1764 VirtualBaseSpec = 0;
1765 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1766 // We haven't found a base yet; search the class hierarchy for a
1767 // virtual base class.
1768 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1769 /*DetectVirtual=*/false);
1770 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1771 BaseType, Paths)) {
1772 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1773 Path != Paths.end(); ++Path) {
1774 if (Path->back().Base->isVirtual()) {
1775 VirtualBaseSpec = Path->back().Base;
1776 break;
1777 }
1778 }
1779 }
1780 }
1781
1782 return DirectBaseSpec || VirtualBaseSpec;
1783}
1784
Sebastian Redl6df65482011-09-24 17:48:25 +00001785/// \brief Handle a C++ member initializer using braced-init-list syntax.
1786MemInitResult
1787Sema::ActOnMemInitializer(Decl *ConstructorD,
1788 Scope *S,
1789 CXXScopeSpec &SS,
1790 IdentifierInfo *MemberOrBase,
1791 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001792 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001793 SourceLocation IdLoc,
1794 Expr *InitList,
1795 SourceLocation EllipsisLoc) {
1796 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001797 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00001798 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001799}
1800
1801/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00001802MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001803Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001804 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001805 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001806 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001807 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001808 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001809 SourceLocation IdLoc,
1810 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001811 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001812 SourceLocation RParenLoc,
1813 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00001814 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
1815 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001816 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001817 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001818 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00001819}
1820
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001821namespace {
1822
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00001823// Callback to only accept typo corrections that can be a valid C++ member
1824// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001825class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
1826 public:
1827 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
1828 : ClassDecl(ClassDecl) {}
1829
1830 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
1831 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
1832 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
1833 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
1834 else
1835 return isa<TypeDecl>(ND);
1836 }
1837 return false;
1838 }
1839
1840 private:
1841 CXXRecordDecl *ClassDecl;
1842};
1843
1844}
1845
Sebastian Redl6df65482011-09-24 17:48:25 +00001846/// \brief Handle a C++ member initializer.
1847MemInitResult
1848Sema::BuildMemInitializer(Decl *ConstructorD,
1849 Scope *S,
1850 CXXScopeSpec &SS,
1851 IdentifierInfo *MemberOrBase,
1852 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00001853 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00001854 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001855 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00001856 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001857 if (!ConstructorD)
1858 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001859
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001860 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001861
1862 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001863 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001864 if (!Constructor) {
1865 // The user wrote a constructor initializer on a function that is
1866 // not a C++ constructor. Ignore the error for now, because we may
1867 // have more member initializers coming; we'll diagnose it just
1868 // once in ActOnMemInitializers.
1869 return true;
1870 }
1871
1872 CXXRecordDecl *ClassDecl = Constructor->getParent();
1873
1874 // C++ [class.base.init]p2:
1875 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001876 // constructor's class and, if not found in that scope, are looked
1877 // up in the scope containing the constructor's definition.
1878 // [Note: if the constructor's class contains a member with the
1879 // same name as a direct or virtual base class of the class, a
1880 // mem-initializer-id naming the member or base class and composed
1881 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001882 // mem-initializer-id for the hidden base class may be specified
1883 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001884 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001885 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00001886 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001887 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001888 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00001889 ValueDecl *Member;
1890 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
1891 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001892 if (EllipsisLoc.isValid())
1893 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001894 << MemberOrBase
1895 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00001896
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001897 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001898 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001899 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001900 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001901 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001902 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001903 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001904
1905 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001906 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00001907 } else if (DS.getTypeSpecType() == TST_decltype) {
1908 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00001909 } else {
1910 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1911 LookupParsedName(R, S, &SS);
1912
1913 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1914 if (!TyD) {
1915 if (R.isAmbiguous()) return true;
1916
John McCallfd225442010-04-09 19:01:14 +00001917 // We don't want access-control diagnostics here.
1918 R.suppressDiagnostics();
1919
Douglas Gregor7a886e12010-01-19 06:46:48 +00001920 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1921 bool NotUnknownSpecialization = false;
1922 DeclContext *DC = computeDeclContext(SS, false);
1923 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1924 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1925
1926 if (!NotUnknownSpecialization) {
1927 // When the scope specifier can refer to a member of an unknown
1928 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001929 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1930 SS.getWithLocInContext(Context),
1931 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001932 if (BaseType.isNull())
1933 return true;
1934
Douglas Gregor7a886e12010-01-19 06:46:48 +00001935 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001936 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001937 }
1938 }
1939
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001940 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001941 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001942 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001943 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001944 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001945 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001946 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
1947 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001948 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00001949 // We have found a non-static data member with a similar
1950 // name to what was typed; complain and initialize that
1951 // member.
1952 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1953 << MemberOrBase << true << CorrectedQuotedStr
1954 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1955 Diag(Member->getLocation(), diag::note_previous_decl)
1956 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001957
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001958 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001959 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001960 const CXXBaseSpecifier *DirectBaseSpec;
1961 const CXXBaseSpecifier *VirtualBaseSpec;
1962 if (FindBaseInitializer(*this, ClassDecl,
1963 Context.getTypeDeclType(Type),
1964 DirectBaseSpec, VirtualBaseSpec)) {
1965 // We have found a direct or virtual base class with a
1966 // similar name to what was typed; complain and initialize
1967 // that base class.
1968 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001969 << MemberOrBase << false << CorrectedQuotedStr
1970 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00001971
1972 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1973 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00001974 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00001975 diag::note_base_class_specified_here)
1976 << BaseSpec->getType()
1977 << BaseSpec->getSourceRange();
1978
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001979 TyD = Type;
1980 }
1981 }
1982 }
1983
Douglas Gregor7a886e12010-01-19 06:46:48 +00001984 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001985 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00001986 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001987 return true;
1988 }
John McCall2b194412009-12-21 10:41:20 +00001989 }
1990
Douglas Gregor7a886e12010-01-19 06:46:48 +00001991 if (BaseType.isNull()) {
1992 BaseType = Context.getTypeDeclType(TyD);
1993 if (SS.isSet()) {
1994 NestedNameSpecifier *Qualifier =
1995 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001996
Douglas Gregor7a886e12010-01-19 06:46:48 +00001997 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001998 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001999 }
John McCall2b194412009-12-21 10:41:20 +00002000 }
2001 }
Mike Stump1eb44332009-09-09 15:08:12 +00002002
John McCalla93c9342009-12-07 02:54:59 +00002003 if (!TInfo)
2004 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002005
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002006 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002007}
2008
Chandler Carruth81c64772011-09-03 01:14:15 +00002009/// Checks a member initializer expression for cases where reference (or
2010/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002011static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2012 Expr *Init,
2013 SourceLocation IdLoc) {
2014 QualType MemberTy = Member->getType();
2015
2016 // We only handle pointers and references currently.
2017 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2018 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2019 return;
2020
2021 const bool IsPointer = MemberTy->isPointerType();
2022 if (IsPointer) {
2023 if (const UnaryOperator *Op
2024 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2025 // The only case we're worried about with pointers requires taking the
2026 // address.
2027 if (Op->getOpcode() != UO_AddrOf)
2028 return;
2029
2030 Init = Op->getSubExpr();
2031 } else {
2032 // We only handle address-of expression initializers for pointers.
2033 return;
2034 }
2035 }
2036
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002037 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2038 // Taking the address of a temporary will be diagnosed as a hard error.
2039 if (IsPointer)
2040 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002041
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002042 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2043 << Member << Init->getSourceRange();
2044 } else if (const DeclRefExpr *DRE
2045 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2046 // We only warn when referring to a non-reference parameter declaration.
2047 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2048 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002049 return;
2050
2051 S.Diag(Init->getExprLoc(),
2052 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2053 : diag::warn_bind_ref_member_to_parameter)
2054 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002055 } else {
2056 // Other initializers are fine.
2057 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002058 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002059
2060 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2061 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002062}
2063
Richard Trieude5e75c2012-06-14 23:11:34 +00002064namespace {
2065 class UninitializedFieldVisitor
2066 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2067 Sema &S;
2068 ValueDecl *VD;
2069 public:
2070 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
2071 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
2072 S(S), VD(VD) {
Anders Carlsson175ffbf2010-10-06 02:43:25 +00002073 }
2074
Richard Trieude5e75c2012-06-14 23:11:34 +00002075 void HandleExpr(Expr *E) {
2076 if (!E) return;
2077
2078 // Expressions like x(x) sometimes lack the surrounding expressions
2079 // but need to be checked anyways.
2080 HandleValue(E);
2081 Visit(E);
2082 }
2083
2084 void HandleValue(Expr *E) {
2085 E = E->IgnoreParens();
2086
Richard Trieue0991252012-06-14 23:18:09 +00002087 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
Richard Trieude5e75c2012-06-14 23:11:34 +00002088 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
2089 return;
Richard Trieue0991252012-06-14 23:18:09 +00002090 Expr *Base = E;
Richard Trieude5e75c2012-06-14 23:11:34 +00002091 while (isa<MemberExpr>(Base)) {
2092 ME = dyn_cast<MemberExpr>(Base);
2093 if (VarDecl *VarD = dyn_cast<VarDecl>(ME->getMemberDecl()))
2094 if (VarD->hasGlobalStorage())
2095 return;
2096 Base = ME->getBase();
2097 }
2098
2099 if (VD == ME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg5965b7c2012-08-20 08:52:22 +00002100 unsigned diag = VD->getType()->isReferenceType()
2101 ? diag::warn_reference_field_is_uninit
2102 : diag::warn_field_is_uninit;
2103 S.Diag(ME->getExprLoc(), diag);
Richard Trieude5e75c2012-06-14 23:11:34 +00002104 return;
2105 }
John McCallb4190042009-11-04 23:02:40 +00002106 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002107
2108 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2109 HandleValue(CO->getTrueExpr());
2110 HandleValue(CO->getFalseExpr());
2111 return;
2112 }
2113
2114 if (BinaryConditionalOperator *BCO =
2115 dyn_cast<BinaryConditionalOperator>(E)) {
2116 HandleValue(BCO->getCommon());
2117 HandleValue(BCO->getFalseExpr());
2118 return;
2119 }
2120
2121 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2122 switch (BO->getOpcode()) {
2123 default:
2124 return;
2125 case(BO_PtrMemD):
2126 case(BO_PtrMemI):
2127 HandleValue(BO->getLHS());
2128 return;
2129 case(BO_Comma):
2130 HandleValue(BO->getRHS());
2131 return;
2132 }
2133 }
John McCallb4190042009-11-04 23:02:40 +00002134 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002135
2136 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
2137 if (E->getCastKind() == CK_LValueToRValue)
2138 HandleValue(E->getSubExpr());
2139
2140 Inherited::VisitImplicitCastExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002141 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002142
2143 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2144 Expr *Callee = E->getCallee();
2145 if (isa<MemberExpr>(Callee))
2146 HandleValue(Callee);
2147
2148 Inherited::VisitCXXMemberCallExpr(E);
2149 }
2150 };
2151 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
2152 ValueDecl *VD) {
2153 UninitializedFieldVisitor(S, VD).HandleExpr(E);
John McCallb4190042009-11-04 23:02:40 +00002154 }
Richard Trieude5e75c2012-06-14 23:11:34 +00002155} // namespace
John McCallb4190042009-11-04 23:02:40 +00002156
John McCallf312b1e2010-08-26 23:41:50 +00002157MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002158Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002159 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002160 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2161 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2162 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002163 "Member must be a FieldDecl or IndirectFieldDecl");
2164
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002165 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002166 return true;
2167
Douglas Gregor464b2f02010-11-05 22:21:31 +00002168 if (Member->isInvalidDecl())
2169 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002170
John McCallb4190042009-11-04 23:02:40 +00002171 // Diagnose value-uses of fields to initialize themselves, e.g.
2172 // foo(foo)
2173 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002174 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002175 Expr **Args;
2176 unsigned NumArgs;
2177 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2178 Args = ParenList->getExprs();
2179 NumArgs = ParenList->getNumExprs();
2180 } else {
2181 InitListExpr *InitList = cast<InitListExpr>(Init);
2182 Args = InitList->getInits();
2183 NumArgs = InitList->getNumInits();
2184 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002185
Richard Trieude5e75c2012-06-14 23:11:34 +00002186 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2187 != DiagnosticsEngine::Ignored)
2188 for (unsigned i = 0; i < NumArgs; ++i)
2189 // FIXME: Warn about the case when other fields are used before being
John McCallb4190042009-11-04 23:02:40 +00002190 // uninitialized. For example, let this field be the i'th field. When
2191 // initializing the i'th field, throw a warning if any of the >= i'th
2192 // fields are used, as they are not yet initialized.
2193 // Right now we are only handling the case where the i'th field uses
2194 // itself in its initializer.
Richard Trieude5e75c2012-06-14 23:11:34 +00002195 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002196
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002197 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002198
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002199 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002200 // Can't check initialization for a member of dependent type or when
2201 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002202 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002203 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002204 bool InitList = false;
2205 if (isa<InitListExpr>(Init)) {
2206 InitList = true;
2207 Args = &Init;
2208 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002209
2210 if (isStdInitializerList(Member->getType(), 0)) {
2211 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2212 << /*at end of ctor*/1 << InitRange;
2213 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002214 }
2215
Chandler Carruth894aed92010-12-06 09:23:57 +00002216 // Initialize the member.
2217 InitializedEntity MemberEntity =
2218 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2219 : InitializedEntity::InitializeMember(IndirectMember, 0);
2220 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002221 InitList ? InitializationKind::CreateDirectList(IdLoc)
2222 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2223 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002224
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002225 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2226 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002227 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002228 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002229 if (MemberInit.isInvalid())
2230 return true;
2231
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002232 CheckImplicitConversions(MemberInit.get(),
2233 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002234
2235 // C++0x [class.base.init]p7:
2236 // The initialization of each base and member constitutes a
2237 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002238 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002239 if (MemberInit.isInvalid())
2240 return true;
2241
2242 // If we are in a dependent context, template instantiation will
2243 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002244 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002245 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2246 // of the information that we have about the member
2247 // initializer. However, deconstructing the ASTs is a dicey process,
2248 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002249 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002250 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002251 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002252 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002253 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2254 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002255 }
2256
Chandler Carruth894aed92010-12-06 09:23:57 +00002257 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002258 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2259 InitRange.getBegin(), Init,
2260 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002261 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002262 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2263 InitRange.getBegin(), Init,
2264 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002265 }
Eli Friedman59c04372009-07-29 19:44:27 +00002266}
2267
John McCallf312b1e2010-08-26 23:41:50 +00002268MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002269Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002270 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002271 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002272 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002273 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002274 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002275 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002276
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002277 bool InitList = true;
2278 Expr **Args = &Init;
2279 unsigned NumArgs = 1;
2280 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2281 InitList = false;
2282 Args = ParenList->getExprs();
2283 NumArgs = ParenList->getNumExprs();
2284 }
2285
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002286 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002287 // Initialize the object.
2288 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2289 QualType(ClassDecl->getTypeForDecl(), 0));
2290 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002291 InitList ? InitializationKind::CreateDirectList(NameLoc)
2292 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2293 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002294 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2295 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002296 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002297 0);
Sean Hunt41717662011-02-26 19:13:13 +00002298 if (DelegationInit.isInvalid())
2299 return true;
2300
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002301 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2302 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002303
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002304 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002305
2306 // C++0x [class.base.init]p7:
2307 // The initialization of each base and member constitutes a
2308 // full-expression.
2309 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2310 if (DelegationInit.isInvalid())
2311 return true;
2312
Eli Friedmand21016f2012-05-19 23:35:23 +00002313 // If we are in a dependent context, template instantiation will
2314 // perform this type-checking again. Just save the arguments that we
2315 // received in a ParenListExpr.
2316 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2317 // of the information that we have about the base
2318 // initializer. However, deconstructing the ASTs is a dicey process,
2319 // and this approach is far more likely to get the corner cases right.
2320 if (CurContext->isDependentContext())
2321 DelegationInit = Owned(Init);
2322
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002323 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002324 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002325 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002326}
2327
2328MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002329Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002330 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002331 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002332 SourceLocation BaseLoc
2333 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002334
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002335 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2336 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2337 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2338
2339 // C++ [class.base.init]p2:
2340 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002341 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002342 // of that class, the mem-initializer is ill-formed. A
2343 // mem-initializer-list can initialize a base class using any
2344 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002345 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002346
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002347 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002348 if (EllipsisLoc.isValid()) {
2349 // This is a pack expansion.
2350 if (!BaseType->containsUnexpandedParameterPack()) {
2351 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002352 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002353
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002354 EllipsisLoc = SourceLocation();
2355 }
2356 } else {
2357 // Check for any unexpanded parameter packs.
2358 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2359 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002360
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002361 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002362 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002363 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002364
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002365 // Check for direct and virtual base classes.
2366 const CXXBaseSpecifier *DirectBaseSpec = 0;
2367 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2368 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002369 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2370 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002371 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002372
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002373 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2374 VirtualBaseSpec);
2375
2376 // C++ [base.class.init]p2:
2377 // Unless the mem-initializer-id names a nonstatic data member of the
2378 // constructor's class or a direct or virtual base of that class, the
2379 // mem-initializer is ill-formed.
2380 if (!DirectBaseSpec && !VirtualBaseSpec) {
2381 // If the class has any dependent bases, then it's possible that
2382 // one of those types will resolve to the same type as
2383 // BaseType. Therefore, just treat this as a dependent base
2384 // class initialization. FIXME: Should we try to check the
2385 // initialization anyway? It seems odd.
2386 if (ClassDecl->hasAnyDependentBases())
2387 Dependent = true;
2388 else
2389 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2390 << BaseType << Context.getTypeDeclType(ClassDecl)
2391 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2392 }
2393 }
2394
2395 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002396 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002397
Sebastian Redl6df65482011-09-24 17:48:25 +00002398 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2399 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002400 InitRange.getBegin(), Init,
2401 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002402 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002403
2404 // C++ [base.class.init]p2:
2405 // If a mem-initializer-id is ambiguous because it designates both
2406 // a direct non-virtual base class and an inherited virtual base
2407 // class, the mem-initializer is ill-formed.
2408 if (DirectBaseSpec && VirtualBaseSpec)
2409 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002410 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002411
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002412 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002413 if (!BaseSpec)
2414 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2415
2416 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002417 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002418 Expr **Args = &Init;
2419 unsigned NumArgs = 1;
2420 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002421 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002422 Args = ParenList->getExprs();
2423 NumArgs = ParenList->getNumExprs();
2424 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002425
2426 InitializedEntity BaseEntity =
2427 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2428 InitializationKind Kind =
2429 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2430 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2431 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002432 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2433 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002434 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002435 if (BaseInit.isInvalid())
2436 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002437
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002438 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002439
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002440 // C++0x [class.base.init]p7:
2441 // The initialization of each base and member constitutes a
2442 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002443 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002444 if (BaseInit.isInvalid())
2445 return true;
2446
2447 // If we are in a dependent context, template instantiation will
2448 // perform this type-checking again. Just save the arguments that we
2449 // received in a ParenListExpr.
2450 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2451 // of the information that we have about the base
2452 // initializer. However, deconstructing the ASTs is a dicey process,
2453 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002454 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002455 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002456
Sean Huntcbb67482011-01-08 20:30:50 +00002457 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002458 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002459 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002460 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002461 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002462}
2463
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002464// Create a static_cast\<T&&>(expr).
2465static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2466 QualType ExprType = E->getType();
2467 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2468 SourceLocation ExprLoc = E->getLocStart();
2469 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2470 TargetType, ExprLoc);
2471
2472 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2473 SourceRange(ExprLoc, ExprLoc),
2474 E->getSourceRange()).take();
2475}
2476
Anders Carlssone5ef7402010-04-23 03:10:23 +00002477/// ImplicitInitializerKind - How an implicit base or member initializer should
2478/// initialize its base or member.
2479enum ImplicitInitializerKind {
2480 IIK_Default,
2481 IIK_Copy,
2482 IIK_Move
2483};
2484
Anders Carlssondefefd22010-04-23 02:00:02 +00002485static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002486BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002487 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002488 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002489 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002490 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002491 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002492 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2493 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002494
John McCall60d7b3a2010-08-24 06:29:42 +00002495 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002496
2497 switch (ImplicitInitKind) {
2498 case IIK_Default: {
2499 InitializationKind InitKind
2500 = InitializationKind::CreateDefault(Constructor->getLocation());
2501 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002502 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002503 break;
2504 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002505
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002506 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002507 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002508 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002509 ParmVarDecl *Param = Constructor->getParamDecl(0);
2510 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002511
Anders Carlssone5ef7402010-04-23 03:10:23 +00002512 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002513 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002514 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002515 Constructor->getLocation(), ParamType,
2516 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002517
Eli Friedman5f2987c2012-02-02 03:46:19 +00002518 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2519
Anders Carlssonc7957502010-04-24 22:02:54 +00002520 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002521 QualType ArgTy =
2522 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2523 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002524
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002525 if (Moving) {
2526 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2527 }
2528
John McCallf871d0c2010-08-07 06:22:56 +00002529 CXXCastPath BasePath;
2530 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002531 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2532 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002533 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002534 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002535
Anders Carlssone5ef7402010-04-23 03:10:23 +00002536 InitializationKind InitKind
2537 = InitializationKind::CreateDirect(Constructor->getLocation(),
2538 SourceLocation(), SourceLocation());
2539 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2540 &CopyCtorArg, 1);
2541 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002542 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002543 break;
2544 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002545 }
John McCall9ae2f072010-08-23 23:25:46 +00002546
Douglas Gregor53c374f2010-12-07 00:41:46 +00002547 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002548 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002549 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002550
Anders Carlssondefefd22010-04-23 02:00:02 +00002551 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002552 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002553 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2554 SourceLocation()),
2555 BaseSpec->isVirtual(),
2556 SourceLocation(),
2557 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002558 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002559 SourceLocation());
2560
Anders Carlssondefefd22010-04-23 02:00:02 +00002561 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002562}
2563
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002564static bool RefersToRValueRef(Expr *MemRef) {
2565 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2566 return Referenced->getType()->isRValueReferenceType();
2567}
2568
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002569static bool
2570BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002571 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002572 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002573 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002574 if (Field->isInvalidDecl())
2575 return true;
2576
Chandler Carruthf186b542010-06-29 23:50:44 +00002577 SourceLocation Loc = Constructor->getLocation();
2578
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002579 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2580 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002581 ParmVarDecl *Param = Constructor->getParamDecl(0);
2582 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002583
2584 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002585 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2586 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002587
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002588 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002589 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002590 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002591 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002592
Eli Friedman5f2987c2012-02-02 03:46:19 +00002593 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2594
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002595 if (Moving) {
2596 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2597 }
2598
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002599 // Build a reference to this field within the parameter.
2600 CXXScopeSpec SS;
2601 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2602 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002603 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2604 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002605 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002606 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002607 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002608 ParamType, Loc,
2609 /*IsArrow=*/false,
2610 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002611 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002612 /*FirstQualifierInScope=*/0,
2613 MemberLookup,
2614 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002615 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002616 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002617
2618 // C++11 [class.copy]p15:
2619 // - if a member m has rvalue reference type T&&, it is direct-initialized
2620 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002621 if (RefersToRValueRef(CtorArg.get())) {
2622 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002623 }
2624
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002625 // When the field we are copying is an array, create index variables for
2626 // each dimension of the array. We use these index variables to subscript
2627 // the source array, and other clients (e.g., CodeGen) will perform the
2628 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002629 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002630 QualType BaseType = Field->getType();
2631 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002632 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002633 while (const ConstantArrayType *Array
2634 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002635 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002636 // Create the iteration variable for this array index.
2637 IdentifierInfo *IterationVarName = 0;
2638 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002639 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002640 llvm::raw_svector_ostream OS(Str);
2641 OS << "__i" << IndexVariables.size();
2642 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2643 }
2644 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002645 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002646 IterationVarName, SizeType,
2647 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002648 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002649 IndexVariables.push_back(IterationVar);
2650
2651 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002652 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002653 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002654 assert(!IterationVarRef.isInvalid() &&
2655 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002656 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2657 assert(!IterationVarRef.isInvalid() &&
2658 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002659
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002660 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002661 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002662 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002663 Loc);
2664 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002665 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002666
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002667 BaseType = Array->getElementType();
2668 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002669
2670 // The array subscript expression is an lvalue, which is wrong for moving.
2671 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002672 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002673
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002674 // Construct the entity that we will be initializing. For an array, this
2675 // will be first element in the array, which may require several levels
2676 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002677 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002678 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002679 if (Indirect)
2680 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2681 else
2682 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002683 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2684 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2685 0,
2686 Entities.back()));
2687
2688 // Direct-initialize to use the copy constructor.
2689 InitializationKind InitKind =
2690 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2691
Sebastian Redl74e611a2011-09-04 18:14:28 +00002692 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002693 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002694 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002695
John McCall60d7b3a2010-08-24 06:29:42 +00002696 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002697 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002698 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002699 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002700 if (MemberInit.isInvalid())
2701 return true;
2702
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002703 if (Indirect) {
2704 assert(IndexVariables.size() == 0 &&
2705 "Indirect field improperly initialized");
2706 CXXMemberInit
2707 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2708 Loc, Loc,
2709 MemberInit.takeAs<Expr>(),
2710 Loc);
2711 } else
2712 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2713 Loc, MemberInit.takeAs<Expr>(),
2714 Loc,
2715 IndexVariables.data(),
2716 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002717 return false;
2718 }
2719
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002720 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2721
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002722 QualType FieldBaseElementType =
2723 SemaRef.Context.getBaseElementType(Field->getType());
2724
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002725 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002726 InitializedEntity InitEntity
2727 = Indirect? InitializedEntity::InitializeMember(Indirect)
2728 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002729 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002730 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002731
2732 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002733 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002734 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002735
Douglas Gregor53c374f2010-12-07 00:41:46 +00002736 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002737 if (MemberInit.isInvalid())
2738 return true;
2739
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002740 if (Indirect)
2741 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2742 Indirect, Loc,
2743 Loc,
2744 MemberInit.get(),
2745 Loc);
2746 else
2747 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2748 Field, Loc, Loc,
2749 MemberInit.get(),
2750 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002751 return false;
2752 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002753
Sean Hunt1f2f3842011-05-17 00:19:05 +00002754 if (!Field->getParent()->isUnion()) {
2755 if (FieldBaseElementType->isReferenceType()) {
2756 SemaRef.Diag(Constructor->getLocation(),
2757 diag::err_uninitialized_member_in_ctor)
2758 << (int)Constructor->isImplicit()
2759 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2760 << 0 << Field->getDeclName();
2761 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2762 return true;
2763 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002764
Sean Hunt1f2f3842011-05-17 00:19:05 +00002765 if (FieldBaseElementType.isConstQualified()) {
2766 SemaRef.Diag(Constructor->getLocation(),
2767 diag::err_uninitialized_member_in_ctor)
2768 << (int)Constructor->isImplicit()
2769 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2770 << 1 << Field->getDeclName();
2771 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2772 return true;
2773 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002774 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002775
David Blaikie4e4d0842012-03-11 07:00:24 +00002776 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002777 FieldBaseElementType->isObjCRetainableType() &&
2778 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2779 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002780 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002781 // Default-initialize Objective-C pointers to NULL.
2782 CXXMemberInit
2783 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2784 Loc, Loc,
2785 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2786 Loc);
2787 return false;
2788 }
2789
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002790 // Nothing to initialize.
2791 CXXMemberInit = 0;
2792 return false;
2793}
John McCallf1860e52010-05-20 23:23:51 +00002794
2795namespace {
2796struct BaseAndFieldInfo {
2797 Sema &S;
2798 CXXConstructorDecl *Ctor;
2799 bool AnyErrorsInInits;
2800 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002801 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002802 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002803
2804 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2805 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002806 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2807 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002808 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002809 else if (Generated && Ctor->isMoveConstructor())
2810 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002811 else
2812 IIK = IIK_Default;
2813 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002814
2815 bool isImplicitCopyOrMove() const {
2816 switch (IIK) {
2817 case IIK_Copy:
2818 case IIK_Move:
2819 return true;
2820
2821 case IIK_Default:
2822 return false;
2823 }
David Blaikie30263482012-01-20 21:50:17 +00002824
2825 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002826 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002827
2828 bool addFieldInitializer(CXXCtorInitializer *Init) {
2829 AllToInit.push_back(Init);
2830
2831 // Check whether this initializer makes the field "used".
2832 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2833 S.UnusedPrivateFields.remove(Init->getAnyMember());
2834
2835 return false;
2836 }
John McCallf1860e52010-05-20 23:23:51 +00002837};
2838}
2839
Richard Smitha4950662011-09-19 13:34:43 +00002840/// \brief Determine whether the given indirect field declaration is somewhere
2841/// within an anonymous union.
2842static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2843 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2844 CEnd = F->chain_end();
2845 C != CEnd; ++C)
2846 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2847 if (Record->isUnion())
2848 return true;
2849
2850 return false;
2851}
2852
Douglas Gregorddb21472011-11-02 23:04:16 +00002853/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2854/// array type.
2855static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2856 if (T->isIncompleteArrayType())
2857 return true;
2858
2859 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2860 if (!ArrayT->getSize())
2861 return true;
2862
2863 T = ArrayT->getElementType();
2864 }
2865
2866 return false;
2867}
2868
Richard Smith7a614d82011-06-11 17:19:42 +00002869static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002870 FieldDecl *Field,
2871 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002872
Chandler Carruthe861c602010-06-30 02:59:29 +00002873 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00002874 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
2875 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002876
Richard Smith0b8220a2012-08-07 21:30:42 +00002877 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00002878 // has a brace-or-equal-initializer, the entity is initialized as specified
2879 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00002880 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002881 CXXCtorInitializer *Init;
2882 if (Indirect)
2883 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2884 SourceLocation(),
2885 SourceLocation(), 0,
2886 SourceLocation());
2887 else
2888 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2889 SourceLocation(),
2890 SourceLocation(), 0,
2891 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00002892 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00002893 }
2894
Richard Smithc115f632011-09-18 11:14:50 +00002895 // Don't build an implicit initializer for union members if none was
2896 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00002897 if (Field->getParent()->isUnion() ||
2898 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00002899 return false;
2900
Douglas Gregorddb21472011-11-02 23:04:16 +00002901 // Don't initialize incomplete or zero-length arrays.
2902 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
2903 return false;
2904
John McCallf1860e52010-05-20 23:23:51 +00002905 // Don't try to build an implicit initializer if there were semantic
2906 // errors in any of the initializers (and therefore we might be
2907 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00002908 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00002909 return false;
2910
Sean Huntcbb67482011-01-08 20:30:50 +00002911 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002912 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
2913 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00002914 return true;
John McCallf1860e52010-05-20 23:23:51 +00002915
Richard Smith0b8220a2012-08-07 21:30:42 +00002916 if (!Init)
2917 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00002918
Richard Smith0b8220a2012-08-07 21:30:42 +00002919 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002920}
Sean Hunt059ce0d2011-05-01 07:04:31 +00002921
2922bool
2923Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2924 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00002925 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00002926 Constructor->setNumCtorInitializers(1);
2927 CXXCtorInitializer **initializer =
2928 new (Context) CXXCtorInitializer*[1];
2929 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2930 Constructor->setCtorInitializers(initializer);
2931
Sean Huntb76af9c2011-05-03 23:05:34 +00002932 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002933 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00002934 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2935 }
2936
Sean Huntc1598702011-05-05 00:05:47 +00002937 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00002938
Sean Hunt059ce0d2011-05-01 07:04:31 +00002939 return false;
2940}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002941
John McCallb77115d2011-06-17 00:18:42 +00002942bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2943 CXXCtorInitializer **Initializers,
2944 unsigned NumInitializers,
2945 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00002946 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002947 // Just store the initializers as written, they will be checked during
2948 // instantiation.
2949 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002950 Constructor->setNumCtorInitializers(NumInitializers);
2951 CXXCtorInitializer **baseOrMemberInitializers =
2952 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002953 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002954 NumInitializers * sizeof(CXXCtorInitializer*));
2955 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002956 }
2957
2958 return false;
2959 }
2960
John McCallf1860e52010-05-20 23:23:51 +00002961 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002962
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002963 // We need to build the initializer AST according to order of construction
2964 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002965 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002966 if (!ClassDecl)
2967 return true;
2968
Eli Friedman80c30da2009-11-09 19:20:36 +00002969 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002970
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002971 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002972 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002973
2974 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002975 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002976 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002977 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002978 }
2979
Anders Carlsson711f34a2010-04-21 19:52:01 +00002980 // Keep track of the direct virtual bases.
2981 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2982 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2983 E = ClassDecl->bases_end(); I != E; ++I) {
2984 if (I->isVirtual())
2985 DirectVBases.insert(I);
2986 }
2987
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002988 // Push virtual bases before others.
2989 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2990 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2991
Sean Huntcbb67482011-01-08 20:30:50 +00002992 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002993 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2994 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002995 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002996 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002997 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002998 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002999 VBase, IsInheritedVirtualBase,
3000 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003001 HadError = true;
3002 continue;
3003 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003004
John McCallf1860e52010-05-20 23:23:51 +00003005 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003006 }
3007 }
Mike Stump1eb44332009-09-09 15:08:12 +00003008
John McCallf1860e52010-05-20 23:23:51 +00003009 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003010 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3011 E = ClassDecl->bases_end(); Base != E; ++Base) {
3012 // Virtuals are in the virtual base list and already constructed.
3013 if (Base->isVirtual())
3014 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003015
Sean Huntcbb67482011-01-08 20:30:50 +00003016 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003017 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3018 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003019 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003020 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003021 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003022 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003023 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003024 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003025 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003026 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003027
John McCallf1860e52010-05-20 23:23:51 +00003028 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003029 }
3030 }
Mike Stump1eb44332009-09-09 15:08:12 +00003031
John McCallf1860e52010-05-20 23:23:51 +00003032 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003033 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3034 MemEnd = ClassDecl->decls_end();
3035 Mem != MemEnd; ++Mem) {
3036 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003037 // C++ [class.bit]p2:
3038 // A declaration for a bit-field that omits the identifier declares an
3039 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3040 // initialized.
3041 if (F->isUnnamedBitfield())
3042 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003043
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003044 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003045 // handle anonymous struct/union fields based on their individual
3046 // indirect fields.
3047 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3048 continue;
3049
3050 if (CollectFieldInitializer(*this, Info, F))
3051 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003052 continue;
3053 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003054
3055 // Beyond this point, we only consider default initialization.
3056 if (Info.IIK != IIK_Default)
3057 continue;
3058
3059 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3060 if (F->getType()->isIncompleteArrayType()) {
3061 assert(ClassDecl->hasFlexibleArrayMember() &&
3062 "Incomplete array type is not valid");
3063 continue;
3064 }
3065
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003066 // Initialize each field of an anonymous struct individually.
3067 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3068 HadError = true;
3069
3070 continue;
3071 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003072 }
Mike Stump1eb44332009-09-09 15:08:12 +00003073
John McCallf1860e52010-05-20 23:23:51 +00003074 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003075 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003076 Constructor->setNumCtorInitializers(NumInitializers);
3077 CXXCtorInitializer **baseOrMemberInitializers =
3078 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003079 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003080 NumInitializers * sizeof(CXXCtorInitializer*));
3081 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003082
John McCallef027fe2010-03-16 21:39:52 +00003083 // Constructors implicitly reference the base and member
3084 // destructors.
3085 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3086 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003087 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003088
3089 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003090}
3091
Eli Friedman6347f422009-07-21 19:28:10 +00003092static void *GetKeyForTopLevelField(FieldDecl *Field) {
3093 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003094 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003095 if (RT->getDecl()->isAnonymousStructOrUnion())
3096 return static_cast<void *>(RT->getDecl());
3097 }
3098 return static_cast<void *>(Field);
3099}
3100
Anders Carlssonea356fb2010-04-02 05:42:15 +00003101static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003102 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003103}
3104
Anders Carlssonea356fb2010-04-02 05:42:15 +00003105static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003106 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003107 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003108 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003109
Eli Friedman6347f422009-07-21 19:28:10 +00003110 // For fields injected into the class via declaration of an anonymous union,
3111 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003112 FieldDecl *Field = Member->getAnyMember();
3113
John McCall3c3ccdb2010-04-10 09:28:51 +00003114 // If the field is a member of an anonymous struct or union, our key
3115 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003116 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003117 if (RD->isAnonymousStructOrUnion()) {
3118 while (true) {
3119 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3120 if (Parent->isAnonymousStructOrUnion())
3121 RD = Parent;
3122 else
3123 break;
3124 }
3125
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003126 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003127 }
Mike Stump1eb44332009-09-09 15:08:12 +00003128
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003129 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003130}
3131
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003132static void
3133DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003134 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003135 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003136 unsigned NumInits) {
3137 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003138 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003139
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003140 // Don't check initializers order unless the warning is enabled at the
3141 // location of at least one initializer.
3142 bool ShouldCheckOrder = false;
3143 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003144 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003145 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3146 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003147 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003148 ShouldCheckOrder = true;
3149 break;
3150 }
3151 }
3152 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003153 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003154
John McCalld6ca8da2010-04-10 07:37:23 +00003155 // Build the list of bases and members in the order that they'll
3156 // actually be initialized. The explicit initializers should be in
3157 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003158 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003159
Anders Carlsson071d6102010-04-02 03:38:04 +00003160 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3161
John McCalld6ca8da2010-04-10 07:37:23 +00003162 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003163 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003164 ClassDecl->vbases_begin(),
3165 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003166 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003167
John McCalld6ca8da2010-04-10 07:37:23 +00003168 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003169 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003170 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003171 if (Base->isVirtual())
3172 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003173 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003174 }
Mike Stump1eb44332009-09-09 15:08:12 +00003175
John McCalld6ca8da2010-04-10 07:37:23 +00003176 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003177 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003178 E = ClassDecl->field_end(); Field != E; ++Field) {
3179 if (Field->isUnnamedBitfield())
3180 continue;
3181
David Blaikie581deb32012-06-06 20:45:41 +00003182 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003183 }
3184
John McCalld6ca8da2010-04-10 07:37:23 +00003185 unsigned NumIdealInits = IdealInitKeys.size();
3186 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003187
Sean Huntcbb67482011-01-08 20:30:50 +00003188 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003189 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003190 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003191 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003192
3193 // Scan forward to try to find this initializer in the idealized
3194 // initializers list.
3195 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3196 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003197 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003198
3199 // If we didn't find this initializer, it must be because we
3200 // scanned past it on a previous iteration. That can only
3201 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003202 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003203 Sema::SemaDiagnosticBuilder D =
3204 SemaRef.Diag(PrevInit->getSourceLocation(),
3205 diag::warn_initializer_out_of_order);
3206
Francois Pichet00eb3f92010-12-04 09:14:42 +00003207 if (PrevInit->isAnyMemberInitializer())
3208 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003209 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003210 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003211
Francois Pichet00eb3f92010-12-04 09:14:42 +00003212 if (Init->isAnyMemberInitializer())
3213 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003214 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003215 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003216
3217 // Move back to the initializer's location in the ideal list.
3218 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3219 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003220 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003221
3222 assert(IdealIndex != NumIdealInits &&
3223 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003224 }
John McCalld6ca8da2010-04-10 07:37:23 +00003225
3226 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003227 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003228}
3229
John McCall3c3ccdb2010-04-10 09:28:51 +00003230namespace {
3231bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003232 CXXCtorInitializer *Init,
3233 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003234 if (!PrevInit) {
3235 PrevInit = Init;
3236 return false;
3237 }
3238
3239 if (FieldDecl *Field = Init->getMember())
3240 S.Diag(Init->getSourceLocation(),
3241 diag::err_multiple_mem_initialization)
3242 << Field->getDeclName()
3243 << Init->getSourceRange();
3244 else {
John McCallf4c73712011-01-19 06:33:43 +00003245 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003246 assert(BaseClass && "neither field nor base");
3247 S.Diag(Init->getSourceLocation(),
3248 diag::err_multiple_base_initialization)
3249 << QualType(BaseClass, 0)
3250 << Init->getSourceRange();
3251 }
3252 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3253 << 0 << PrevInit->getSourceRange();
3254
3255 return true;
3256}
3257
Sean Huntcbb67482011-01-08 20:30:50 +00003258typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003259typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3260
3261bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003262 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003263 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003264 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003265 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003266 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003267
3268 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003269 if (Parent->isUnion()) {
3270 UnionEntry &En = Unions[Parent];
3271 if (En.first && En.first != Child) {
3272 S.Diag(Init->getSourceLocation(),
3273 diag::err_multiple_mem_union_initialization)
3274 << Field->getDeclName()
3275 << Init->getSourceRange();
3276 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3277 << 0 << En.second->getSourceRange();
3278 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003279 }
3280 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003281 En.first = Child;
3282 En.second = Init;
3283 }
David Blaikie6fe29652011-11-17 06:01:57 +00003284 if (!Parent->isAnonymousStructOrUnion())
3285 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003286 }
3287
3288 Child = Parent;
3289 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003290 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003291
3292 return false;
3293}
3294}
3295
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003296/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003297void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003298 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003299 CXXCtorInitializer **meminits,
3300 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003301 bool AnyErrors) {
3302 if (!ConstructorDecl)
3303 return;
3304
3305 AdjustDeclIfTemplate(ConstructorDecl);
3306
3307 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003308 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003309
3310 if (!Constructor) {
3311 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3312 return;
3313 }
3314
Sean Huntcbb67482011-01-08 20:30:50 +00003315 CXXCtorInitializer **MemInits =
3316 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003317
3318 // Mapping for the duplicate initializers check.
3319 // For member initializers, this is keyed with a FieldDecl*.
3320 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003321 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003322
3323 // Mapping for the inconsistent anonymous-union initializers check.
3324 RedundantUnionMap MemberUnions;
3325
Anders Carlssonea356fb2010-04-02 05:42:15 +00003326 bool HadError = false;
3327 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003328 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003329
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003330 // Set the source order index.
3331 Init->setSourceOrder(i);
3332
Francois Pichet00eb3f92010-12-04 09:14:42 +00003333 if (Init->isAnyMemberInitializer()) {
3334 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003335 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3336 CheckRedundantUnionInit(*this, Init, MemberUnions))
3337 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003338 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003339 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3340 if (CheckRedundantInit(*this, Init, Members[Key]))
3341 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003342 } else {
3343 assert(Init->isDelegatingInitializer());
3344 // This must be the only initializer
3345 if (i != 0 || NumMemInits > 1) {
3346 Diag(MemInits[0]->getSourceLocation(),
3347 diag::err_delegating_initializer_alone)
3348 << MemInits[0]->getSourceRange();
3349 HadError = true;
Sean Hunt059ce0d2011-05-01 07:04:31 +00003350 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003351 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003352 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003353 // Return immediately as the initializer is set.
3354 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003355 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003356 }
3357
Anders Carlssonea356fb2010-04-02 05:42:15 +00003358 if (HadError)
3359 return;
3360
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003361 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003362
Sean Huntcbb67482011-01-08 20:30:50 +00003363 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003364}
3365
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003366void
John McCallef027fe2010-03-16 21:39:52 +00003367Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3368 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003369 // Ignore dependent contexts. Also ignore unions, since their members never
3370 // have destructors implicitly called.
3371 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003372 return;
John McCall58e6f342010-03-16 05:22:47 +00003373
3374 // FIXME: all the access-control diagnostics are positioned on the
3375 // field/base declaration. That's probably good; that said, the
3376 // user might reasonably want to know why the destructor is being
3377 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003378
Anders Carlsson9f853df2009-11-17 04:44:12 +00003379 // Non-static data members.
3380 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3381 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003382 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003383 if (Field->isInvalidDecl())
3384 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003385
3386 // Don't destroy incomplete or zero-length arrays.
3387 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3388 continue;
3389
Anders Carlsson9f853df2009-11-17 04:44:12 +00003390 QualType FieldType = Context.getBaseElementType(Field->getType());
3391
3392 const RecordType* RT = FieldType->getAs<RecordType>();
3393 if (!RT)
3394 continue;
3395
3396 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003397 if (FieldClassDecl->isInvalidDecl())
3398 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003399 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003400 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003401 // The destructor for an implicit anonymous union member is never invoked.
3402 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3403 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003404
Douglas Gregordb89f282010-07-01 22:47:18 +00003405 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003406 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003407 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003408 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003409 << Field->getDeclName()
3410 << FieldType);
3411
Eli Friedman5f2987c2012-02-02 03:46:19 +00003412 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003413 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003414 }
3415
John McCall58e6f342010-03-16 05:22:47 +00003416 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3417
Anders Carlsson9f853df2009-11-17 04:44:12 +00003418 // Bases.
3419 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3420 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003421 // Bases are always records in a well-formed non-dependent class.
3422 const RecordType *RT = Base->getType()->getAs<RecordType>();
3423
3424 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003425 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003426 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003427
John McCall58e6f342010-03-16 05:22:47 +00003428 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003429 // If our base class is invalid, we probably can't get its dtor anyway.
3430 if (BaseClassDecl->isInvalidDecl())
3431 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003432 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003433 continue;
John McCall58e6f342010-03-16 05:22:47 +00003434
Douglas Gregordb89f282010-07-01 22:47:18 +00003435 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003436 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003437
3438 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003439 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003440 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003441 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003442 << Base->getSourceRange(),
3443 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003444
Eli Friedman5f2987c2012-02-02 03:46:19 +00003445 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003446 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003447 }
3448
3449 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003450 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3451 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003452
3453 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003454 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003455
3456 // Ignore direct virtual bases.
3457 if (DirectVirtualBases.count(RT))
3458 continue;
3459
John McCall58e6f342010-03-16 05:22:47 +00003460 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003461 // If our base class is invalid, we probably can't get its dtor anyway.
3462 if (BaseClassDecl->isInvalidDecl())
3463 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003464 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003465 continue;
John McCall58e6f342010-03-16 05:22:47 +00003466
Douglas Gregordb89f282010-07-01 22:47:18 +00003467 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003468 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003469 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003470 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003471 << VBase->getType(),
3472 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003473
Eli Friedman5f2987c2012-02-02 03:46:19 +00003474 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003475 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003476 }
3477}
3478
John McCalld226f652010-08-21 09:40:31 +00003479void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003480 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003481 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003482
Mike Stump1eb44332009-09-09 15:08:12 +00003483 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003484 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003485 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003486}
3487
Mike Stump1eb44332009-09-09 15:08:12 +00003488bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003489 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003490 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3491 unsigned DiagID;
3492 AbstractDiagSelID SelID;
3493
3494 public:
3495 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3496 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3497
3498 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003499 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003500 if (SelID == -1)
3501 S.Diag(Loc, DiagID) << T;
3502 else
3503 S.Diag(Loc, DiagID) << SelID << T;
3504 }
3505 } Diagnoser(DiagID, SelID);
3506
3507 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003508}
3509
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003510bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003511 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003512 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003513 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003514
Anders Carlsson11f21a02009-03-23 19:10:31 +00003515 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003516 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003517
Ted Kremenek6217b802009-07-29 21:53:49 +00003518 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003519 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003520 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003521 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003522
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003523 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003524 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003525 }
Mike Stump1eb44332009-09-09 15:08:12 +00003526
Ted Kremenek6217b802009-07-29 21:53:49 +00003527 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003528 if (!RT)
3529 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003530
John McCall86ff3082010-02-04 22:26:26 +00003531 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003532
John McCall94c3b562010-08-18 09:41:07 +00003533 // We can't answer whether something is abstract until it has a
3534 // definition. If it's currently being defined, we'll walk back
3535 // over all the declarations when we have a full definition.
3536 const CXXRecordDecl *Def = RD->getDefinition();
3537 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003538 return false;
3539
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003540 if (!RD->isAbstract())
3541 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003542
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003543 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003544 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003545
John McCall94c3b562010-08-18 09:41:07 +00003546 return true;
3547}
3548
3549void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3550 // Check if we've already emitted the list of pure virtual functions
3551 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003552 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003553 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003554
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003555 CXXFinalOverriderMap FinalOverriders;
3556 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003557
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003558 // Keep a set of seen pure methods so we won't diagnose the same method
3559 // more than once.
3560 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3561
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003562 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3563 MEnd = FinalOverriders.end();
3564 M != MEnd;
3565 ++M) {
3566 for (OverridingMethods::iterator SO = M->second.begin(),
3567 SOEnd = M->second.end();
3568 SO != SOEnd; ++SO) {
3569 // C++ [class.abstract]p4:
3570 // A class is abstract if it contains or inherits at least one
3571 // pure virtual function for which the final overrider is pure
3572 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003573
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003574 //
3575 if (SO->second.size() != 1)
3576 continue;
3577
3578 if (!SO->second.front().Method->isPure())
3579 continue;
3580
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003581 if (!SeenPureMethods.insert(SO->second.front().Method))
3582 continue;
3583
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003584 Diag(SO->second.front().Method->getLocation(),
3585 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003586 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003587 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003588 }
3589
3590 if (!PureVirtualClassDiagSet)
3591 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3592 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003593}
3594
Anders Carlsson8211eff2009-03-24 01:19:16 +00003595namespace {
John McCall94c3b562010-08-18 09:41:07 +00003596struct AbstractUsageInfo {
3597 Sema &S;
3598 CXXRecordDecl *Record;
3599 CanQualType AbstractType;
3600 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003601
John McCall94c3b562010-08-18 09:41:07 +00003602 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3603 : S(S), Record(Record),
3604 AbstractType(S.Context.getCanonicalType(
3605 S.Context.getTypeDeclType(Record))),
3606 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003607
John McCall94c3b562010-08-18 09:41:07 +00003608 void DiagnoseAbstractType() {
3609 if (Invalid) return;
3610 S.DiagnoseAbstractType(Record);
3611 Invalid = true;
3612 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003613
John McCall94c3b562010-08-18 09:41:07 +00003614 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3615};
3616
3617struct CheckAbstractUsage {
3618 AbstractUsageInfo &Info;
3619 const NamedDecl *Ctx;
3620
3621 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3622 : Info(Info), Ctx(Ctx) {}
3623
3624 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3625 switch (TL.getTypeLocClass()) {
3626#define ABSTRACT_TYPELOC(CLASS, PARENT)
3627#define TYPELOC(CLASS, PARENT) \
3628 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3629#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003630 }
John McCall94c3b562010-08-18 09:41:07 +00003631 }
Mike Stump1eb44332009-09-09 15:08:12 +00003632
John McCall94c3b562010-08-18 09:41:07 +00003633 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3634 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3635 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003636 if (!TL.getArg(I))
3637 continue;
3638
John McCall94c3b562010-08-18 09:41:07 +00003639 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3640 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003641 }
John McCall94c3b562010-08-18 09:41:07 +00003642 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003643
John McCall94c3b562010-08-18 09:41:07 +00003644 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3645 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3646 }
Mike Stump1eb44332009-09-09 15:08:12 +00003647
John McCall94c3b562010-08-18 09:41:07 +00003648 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3649 // Visit the type parameters from a permissive context.
3650 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3651 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3652 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3653 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3654 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3655 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003656 }
John McCall94c3b562010-08-18 09:41:07 +00003657 }
Mike Stump1eb44332009-09-09 15:08:12 +00003658
John McCall94c3b562010-08-18 09:41:07 +00003659 // Visit pointee types from a permissive context.
3660#define CheckPolymorphic(Type) \
3661 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3662 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3663 }
3664 CheckPolymorphic(PointerTypeLoc)
3665 CheckPolymorphic(ReferenceTypeLoc)
3666 CheckPolymorphic(MemberPointerTypeLoc)
3667 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003668 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003669
John McCall94c3b562010-08-18 09:41:07 +00003670 /// Handle all the types we haven't given a more specific
3671 /// implementation for above.
3672 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3673 // Every other kind of type that we haven't called out already
3674 // that has an inner type is either (1) sugar or (2) contains that
3675 // inner type in some way as a subobject.
3676 if (TypeLoc Next = TL.getNextTypeLoc())
3677 return Visit(Next, Sel);
3678
3679 // If there's no inner type and we're in a permissive context,
3680 // don't diagnose.
3681 if (Sel == Sema::AbstractNone) return;
3682
3683 // Check whether the type matches the abstract type.
3684 QualType T = TL.getType();
3685 if (T->isArrayType()) {
3686 Sel = Sema::AbstractArrayType;
3687 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003688 }
John McCall94c3b562010-08-18 09:41:07 +00003689 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3690 if (CT != Info.AbstractType) return;
3691
3692 // It matched; do some magic.
3693 if (Sel == Sema::AbstractArrayType) {
3694 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3695 << T << TL.getSourceRange();
3696 } else {
3697 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3698 << Sel << T << TL.getSourceRange();
3699 }
3700 Info.DiagnoseAbstractType();
3701 }
3702};
3703
3704void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3705 Sema::AbstractDiagSelID Sel) {
3706 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3707}
3708
3709}
3710
3711/// Check for invalid uses of an abstract type in a method declaration.
3712static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3713 CXXMethodDecl *MD) {
3714 // No need to do the check on definitions, which require that
3715 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003716 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003717 return;
3718
3719 // For safety's sake, just ignore it if we don't have type source
3720 // information. This should never happen for non-implicit methods,
3721 // but...
3722 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3723 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3724}
3725
3726/// Check for invalid uses of an abstract type within a class definition.
3727static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3728 CXXRecordDecl *RD) {
3729 for (CXXRecordDecl::decl_iterator
3730 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3731 Decl *D = *I;
3732 if (D->isImplicit()) continue;
3733
3734 // Methods and method templates.
3735 if (isa<CXXMethodDecl>(D)) {
3736 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3737 } else if (isa<FunctionTemplateDecl>(D)) {
3738 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3739 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3740
3741 // Fields and static variables.
3742 } else if (isa<FieldDecl>(D)) {
3743 FieldDecl *FD = cast<FieldDecl>(D);
3744 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3745 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3746 } else if (isa<VarDecl>(D)) {
3747 VarDecl *VD = cast<VarDecl>(D);
3748 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3749 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3750
3751 // Nested classes and class templates.
3752 } else if (isa<CXXRecordDecl>(D)) {
3753 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3754 } else if (isa<ClassTemplateDecl>(D)) {
3755 CheckAbstractClassUsage(Info,
3756 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3757 }
3758 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003759}
3760
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003761/// \brief Perform semantic checks on a class definition that has been
3762/// completing, introducing implicitly-declared members, checking for
3763/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003764void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003765 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003766 return;
3767
John McCall94c3b562010-08-18 09:41:07 +00003768 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3769 AbstractUsageInfo Info(*this, Record);
3770 CheckAbstractClassUsage(Info, Record);
3771 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003772
3773 // If this is not an aggregate type and has no user-declared constructor,
3774 // complain about any non-static data members of reference or const scalar
3775 // type, since they will never get initializers.
3776 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003777 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3778 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003779 bool Complained = false;
3780 for (RecordDecl::field_iterator F = Record->field_begin(),
3781 FEnd = Record->field_end();
3782 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003783 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003784 continue;
3785
Douglas Gregor325e5932010-04-15 00:00:53 +00003786 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003787 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003788 if (!Complained) {
3789 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3790 << Record->getTagKind() << Record;
3791 Complained = true;
3792 }
3793
3794 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3795 << F->getType()->isReferenceType()
3796 << F->getDeclName();
3797 }
3798 }
3799 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003800
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003801 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003802 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003803
3804 if (Record->getIdentifier()) {
3805 // C++ [class.mem]p13:
3806 // If T is the name of a class, then each of the following shall have a
3807 // name different from T:
3808 // - every member of every anonymous union that is a member of class T.
3809 //
3810 // C++ [class.mem]p14:
3811 // In addition, if class T has a user-declared constructor (12.1), every
3812 // non-static data member of class T shall have a name different from T.
3813 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003814 R.first != R.second; ++R.first) {
3815 NamedDecl *D = *R.first;
3816 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3817 isa<IndirectFieldDecl>(D)) {
3818 Diag(D->getLocation(), diag::err_member_name_of_class)
3819 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003820 break;
3821 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003822 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003823 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003824
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003825 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003826 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003827 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003828 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003829 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3830 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3831 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003832
3833 // See if a method overloads virtual methods in a base
3834 /// class without overriding any.
3835 if (!Record->isDependentType()) {
3836 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3837 MEnd = Record->method_end();
3838 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003839 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003840 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003841 }
3842 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003843
Richard Smith9f569cc2011-10-01 02:31:28 +00003844 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3845 // function that is not a constructor declares that member function to be
3846 // const. [...] The class of which that function is a member shall be
3847 // a literal type.
3848 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003849 // If the class has virtual bases, any constexpr members will already have
3850 // been diagnosed by the checks performed on the member declaration, so
3851 // suppress this (less useful) diagnostic.
3852 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3853 !Record->isLiteral() && !Record->getNumVBases()) {
3854 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3855 MEnd = Record->method_end();
3856 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003857 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003858 switch (Record->getTemplateSpecializationKind()) {
3859 case TSK_ImplicitInstantiation:
3860 case TSK_ExplicitInstantiationDeclaration:
3861 case TSK_ExplicitInstantiationDefinition:
3862 // If a template instantiates to a non-literal type, but its members
3863 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003864 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003865 continue;
3866
3867 case TSK_Undeclared:
3868 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003869 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003870 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003871 break;
3872 }
3873
3874 // Only produce one error per class.
3875 break;
3876 }
3877 }
3878 }
3879
Sebastian Redlf677ea32011-02-05 19:23:19 +00003880 // Declare inherited constructors. We do this eagerly here because:
3881 // - The standard requires an eager diagnostic for conflicting inherited
3882 // constructors from different classes.
3883 // - The lazy declaration of the other implicit constructors is so as to not
3884 // waste space and performance on classes that are not meant to be
3885 // instantiated (e.g. meta-functions). This doesn't apply to classes that
3886 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00003887 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00003888}
3889
3890void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00003891 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3892 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00003893 MI != ME; ++MI)
3894 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00003895 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00003896}
3897
Richard Smith7756afa2012-06-10 05:43:50 +00003898/// Is the special member function which would be selected to perform the
3899/// specified operation on the specified class type a constexpr constructor?
3900static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3901 Sema::CXXSpecialMember CSM,
3902 bool ConstArg) {
3903 Sema::SpecialMemberOverloadResult *SMOR =
3904 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
3905 false, false, false, false);
3906 if (!SMOR || !SMOR->getMethod())
3907 // A constructor we wouldn't select can't be "involved in initializing"
3908 // anything.
3909 return true;
3910 return SMOR->getMethod()->isConstexpr();
3911}
3912
3913/// Determine whether the specified special member function would be constexpr
3914/// if it were implicitly defined.
3915static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
3916 Sema::CXXSpecialMember CSM,
3917 bool ConstArg) {
3918 if (!S.getLangOpts().CPlusPlus0x)
3919 return false;
3920
3921 // C++11 [dcl.constexpr]p4:
3922 // In the definition of a constexpr constructor [...]
3923 switch (CSM) {
3924 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003925 // Since default constructor lookup is essentially trivial (and cannot
3926 // involve, for instance, template instantiation), we compute whether a
3927 // defaulted default constructor is constexpr directly within CXXRecordDecl.
3928 //
3929 // This is important for performance; we need to know whether the default
3930 // constructor is constexpr to determine whether the type is a literal type.
3931 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
3932
Richard Smith7756afa2012-06-10 05:43:50 +00003933 case Sema::CXXCopyConstructor:
3934 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00003935 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00003936 break;
3937
3938 case Sema::CXXCopyAssignment:
3939 case Sema::CXXMoveAssignment:
3940 case Sema::CXXDestructor:
3941 case Sema::CXXInvalid:
3942 return false;
3943 }
3944
3945 // -- if the class is a non-empty union, or for each non-empty anonymous
3946 // union member of a non-union class, exactly one non-static data member
3947 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00003948 //
3949 // If we squint, this is guaranteed, since exactly one non-static data member
3950 // will be initialized (if the constructor isn't deleted), we just don't know
3951 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00003952 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00003953 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00003954
3955 // -- the class shall not have any virtual base classes;
3956 if (ClassDecl->getNumVBases())
3957 return false;
3958
3959 // -- every constructor involved in initializing [...] base class
3960 // sub-objects shall be a constexpr constructor;
3961 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
3962 BEnd = ClassDecl->bases_end();
3963 B != BEnd; ++B) {
3964 const RecordType *BaseType = B->getType()->getAs<RecordType>();
3965 if (!BaseType) continue;
3966
3967 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
3968 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
3969 return false;
3970 }
3971
3972 // -- every constructor involved in initializing non-static data members
3973 // [...] shall be a constexpr constructor;
3974 // -- every non-static data member and base class sub-object shall be
3975 // initialized
3976 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
3977 FEnd = ClassDecl->field_end();
3978 F != FEnd; ++F) {
3979 if (F->isInvalidDecl())
3980 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00003981 if (const RecordType *RecordTy =
3982 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00003983 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
3984 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
3985 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00003986 }
3987 }
3988
3989 // All OK, it's constexpr!
3990 return true;
3991}
3992
Richard Smithb9d0b762012-07-27 04:22:15 +00003993static Sema::ImplicitExceptionSpecification
3994computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
3995 switch (S.getSpecialMember(MD)) {
3996 case Sema::CXXDefaultConstructor:
3997 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
3998 case Sema::CXXCopyConstructor:
3999 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4000 case Sema::CXXCopyAssignment:
4001 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4002 case Sema::CXXMoveConstructor:
4003 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4004 case Sema::CXXMoveAssignment:
4005 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4006 case Sema::CXXDestructor:
4007 return S.ComputeDefaultedDtorExceptionSpec(MD);
4008 case Sema::CXXInvalid:
4009 break;
4010 }
4011 llvm_unreachable("only special members have implicit exception specs");
4012}
4013
Richard Smithdd25e802012-07-30 23:48:14 +00004014static void
4015updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4016 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4017 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4018 ExceptSpec.getEPI(EPI);
4019 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4020 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4021 FPT->getNumArgs(), EPI));
4022 FD->setType(QualType(NewFPT, 0));
4023}
4024
Richard Smithb9d0b762012-07-27 04:22:15 +00004025void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4026 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4027 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4028 return;
4029
Richard Smithdd25e802012-07-30 23:48:14 +00004030 // Evaluate the exception specification.
4031 ImplicitExceptionSpecification ExceptSpec =
4032 computeImplicitExceptionSpec(*this, Loc, MD);
4033
4034 // Update the type of the special member to use it.
4035 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4036
4037 // A user-provided destructor can be defined outside the class. When that
4038 // happens, be sure to update the exception specification on both
4039 // declarations.
4040 const FunctionProtoType *CanonicalFPT =
4041 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4042 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4043 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4044 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004045}
4046
4047static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4048static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4049
Richard Smith3003e1d2012-05-15 04:39:51 +00004050void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4051 CXXRecordDecl *RD = MD->getParent();
4052 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004053
Richard Smith3003e1d2012-05-15 04:39:51 +00004054 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4055 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004056
4057 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004058 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004059 bool First = MD == MD->getCanonicalDecl();
4060
4061 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004062
4063 // C++11 [dcl.fct.def.default]p1:
4064 // A function that is explicitly defaulted shall
4065 // -- be a special member function (checked elsewhere),
4066 // -- have the same type (except for ref-qualifiers, and except that a
4067 // copy operation can take a non-const reference) as an implicit
4068 // declaration, and
4069 // -- not have default arguments.
4070 unsigned ExpectedParams = 1;
4071 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4072 ExpectedParams = 0;
4073 if (MD->getNumParams() != ExpectedParams) {
4074 // This also checks for default arguments: a copy or move constructor with a
4075 // default argument is classified as a default constructor, and assignment
4076 // operations and destructors can't have default arguments.
4077 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4078 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004079 HadError = true;
4080 }
4081
Richard Smith3003e1d2012-05-15 04:39:51 +00004082 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004083
Richard Smithb9d0b762012-07-27 04:22:15 +00004084 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004085 bool CanHaveConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004086 bool Trivial;
4087 switch (CSM) {
4088 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004089 Trivial = RD->hasTrivialDefaultConstructor();
4090 break;
4091 case CXXCopyConstructor:
Richard Smithb9d0b762012-07-27 04:22:15 +00004092 CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004093 Trivial = RD->hasTrivialCopyConstructor();
4094 break;
4095 case CXXCopyAssignment:
Richard Smithb9d0b762012-07-27 04:22:15 +00004096 CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004097 Trivial = RD->hasTrivialCopyAssignment();
4098 break;
4099 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004100 Trivial = RD->hasTrivialMoveConstructor();
4101 break;
4102 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004103 Trivial = RD->hasTrivialMoveAssignment();
4104 break;
4105 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004106 Trivial = RD->hasTrivialDestructor();
4107 break;
4108 case CXXInvalid:
4109 llvm_unreachable("non-special member explicitly defaulted!");
4110 }
Sean Hunt2b188082011-05-14 05:23:28 +00004111
Richard Smith3003e1d2012-05-15 04:39:51 +00004112 QualType ReturnType = Context.VoidTy;
4113 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4114 // Check for return type matching.
4115 ReturnType = Type->getResultType();
4116 QualType ExpectedReturnType =
4117 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4118 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4119 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4120 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4121 HadError = true;
4122 }
4123
4124 // A defaulted special member cannot have cv-qualifiers.
4125 if (Type->getTypeQuals()) {
4126 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4127 << (CSM == CXXMoveAssignment);
4128 HadError = true;
4129 }
4130 }
4131
4132 // Check for parameter type matching.
4133 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004134 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004135 if (ExpectedParams && ArgType->isReferenceType()) {
4136 // Argument must be reference to possibly-const T.
4137 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004138 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004139
4140 if (ReferentType.isVolatileQualified()) {
4141 Diag(MD->getLocation(),
4142 diag::err_defaulted_special_member_volatile_param) << CSM;
4143 HadError = true;
4144 }
4145
Richard Smith7756afa2012-06-10 05:43:50 +00004146 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004147 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4148 Diag(MD->getLocation(),
4149 diag::err_defaulted_special_member_copy_const_param)
4150 << (CSM == CXXCopyAssignment);
4151 // FIXME: Explain why this special member can't be const.
4152 } else {
4153 Diag(MD->getLocation(),
4154 diag::err_defaulted_special_member_move_const_param)
4155 << (CSM == CXXMoveAssignment);
4156 }
4157 HadError = true;
4158 }
4159
4160 // If a function is explicitly defaulted on its first declaration, it shall
4161 // have the same parameter type as if it had been implicitly declared.
4162 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004163 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004164 Diag(MD->getLocation(),
4165 diag::err_defaulted_special_member_copy_non_const_param)
4166 << (CSM == CXXCopyAssignment);
4167 } else if (ExpectedParams) {
4168 // A copy assignment operator can take its argument by value, but a
4169 // defaulted one cannot.
4170 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004171 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004172 HadError = true;
4173 }
Sean Huntbe631222011-05-17 20:44:43 +00004174
Richard Smithb9d0b762012-07-27 04:22:15 +00004175 // Rebuild the type with the implicit exception specification added, if we
4176 // are going to need it.
4177 const FunctionProtoType *ImplicitType = 0;
4178 if (First || Type->hasExceptionSpec()) {
4179 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4180 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4181 ImplicitType = cast<FunctionProtoType>(
4182 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4183 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004184
Richard Smith61802452011-12-22 02:22:31 +00004185 // C++11 [dcl.fct.def.default]p2:
4186 // An explicitly-defaulted function may be declared constexpr only if it
4187 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004188 // Do not apply this rule to members of class templates, since core issue 1358
4189 // makes such functions always instantiate to constexpr functions. For
4190 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004191 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4192 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004193 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4194 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4195 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004196 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004197 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004198 }
4199 // and may have an explicit exception-specification only if it is compatible
4200 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004201 if (Type->hasExceptionSpec() &&
4202 CheckEquivalentExceptionSpec(
4203 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4204 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4205 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004206
4207 // If a function is explicitly defaulted on its first declaration,
4208 if (First) {
4209 // -- it is implicitly considered to be constexpr if the implicit
4210 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004211 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004212
Richard Smith3003e1d2012-05-15 04:39:51 +00004213 // -- it is implicitly considered to have the same exception-specification
4214 // as if it had been implicitly declared,
4215 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004216
4217 // Such a function is also trivial if the implicitly-declared function
4218 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004219 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004220 }
4221
Richard Smith3003e1d2012-05-15 04:39:51 +00004222 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004223 if (First) {
4224 MD->setDeletedAsWritten();
4225 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004226 // C++11 [dcl.fct.def.default]p4:
4227 // [For a] user-provided explicitly-defaulted function [...] if such a
4228 // function is implicitly defined as deleted, the program is ill-formed.
4229 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4230 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004231 }
4232 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004233
Richard Smith3003e1d2012-05-15 04:39:51 +00004234 if (HadError)
4235 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004236}
4237
Richard Smith7d5088a2012-02-18 02:02:13 +00004238namespace {
4239struct SpecialMemberDeletionInfo {
4240 Sema &S;
4241 CXXMethodDecl *MD;
4242 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004243 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004244
4245 // Properties of the special member, computed for convenience.
4246 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4247 SourceLocation Loc;
4248
4249 bool AllFieldsAreConst;
4250
4251 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004252 Sema::CXXSpecialMember CSM, bool Diagnose)
4253 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004254 IsConstructor(false), IsAssignment(false), IsMove(false),
4255 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4256 AllFieldsAreConst(true) {
4257 switch (CSM) {
4258 case Sema::CXXDefaultConstructor:
4259 case Sema::CXXCopyConstructor:
4260 IsConstructor = true;
4261 break;
4262 case Sema::CXXMoveConstructor:
4263 IsConstructor = true;
4264 IsMove = true;
4265 break;
4266 case Sema::CXXCopyAssignment:
4267 IsAssignment = true;
4268 break;
4269 case Sema::CXXMoveAssignment:
4270 IsAssignment = true;
4271 IsMove = true;
4272 break;
4273 case Sema::CXXDestructor:
4274 break;
4275 case Sema::CXXInvalid:
4276 llvm_unreachable("invalid special member kind");
4277 }
4278
4279 if (MD->getNumParams()) {
4280 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4281 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4282 }
4283 }
4284
4285 bool inUnion() const { return MD->getParent()->isUnion(); }
4286
4287 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004288 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4289 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004290 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004291 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4292 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4293 Quals = 0;
4294 return S.LookupSpecialMember(Class, CSM,
4295 ConstArg || (Quals & Qualifiers::Const),
4296 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004297 MD->getRefQualifier() == RQ_RValue,
4298 TQ & Qualifiers::Const,
4299 TQ & Qualifiers::Volatile);
4300 }
4301
Richard Smith6c4c36c2012-03-30 20:53:28 +00004302 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004303
Richard Smith6c4c36c2012-03-30 20:53:28 +00004304 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004305 bool shouldDeleteForField(FieldDecl *FD);
4306 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004307
Richard Smith517bb842012-07-18 03:51:16 +00004308 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4309 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004310 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4311 Sema::SpecialMemberOverloadResult *SMOR,
4312 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004313
4314 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004315};
4316}
4317
John McCall12d8d802012-04-09 20:53:23 +00004318/// Is the given special member inaccessible when used on the given
4319/// sub-object.
4320bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4321 CXXMethodDecl *target) {
4322 /// If we're operating on a base class, the object type is the
4323 /// type of this special member.
4324 QualType objectTy;
4325 AccessSpecifier access = target->getAccess();;
4326 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4327 objectTy = S.Context.getTypeDeclType(MD->getParent());
4328 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4329
4330 // If we're operating on a field, the object type is the type of the field.
4331 } else {
4332 objectTy = S.Context.getTypeDeclType(target->getParent());
4333 }
4334
4335 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4336}
4337
Richard Smith6c4c36c2012-03-30 20:53:28 +00004338/// Check whether we should delete a special member due to the implicit
4339/// definition containing a call to a special member of a subobject.
4340bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4341 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4342 bool IsDtorCallInCtor) {
4343 CXXMethodDecl *Decl = SMOR->getMethod();
4344 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4345
4346 int DiagKind = -1;
4347
4348 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4349 DiagKind = !Decl ? 0 : 1;
4350 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4351 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004352 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004353 DiagKind = 3;
4354 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4355 !Decl->isTrivial()) {
4356 // A member of a union must have a trivial corresponding special member.
4357 // As a weird special case, a destructor call from a union's constructor
4358 // must be accessible and non-deleted, but need not be trivial. Such a
4359 // destructor is never actually called, but is semantically checked as
4360 // if it were.
4361 DiagKind = 4;
4362 }
4363
4364 if (DiagKind == -1)
4365 return false;
4366
4367 if (Diagnose) {
4368 if (Field) {
4369 S.Diag(Field->getLocation(),
4370 diag::note_deleted_special_member_class_subobject)
4371 << CSM << MD->getParent() << /*IsField*/true
4372 << Field << DiagKind << IsDtorCallInCtor;
4373 } else {
4374 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4375 S.Diag(Base->getLocStart(),
4376 diag::note_deleted_special_member_class_subobject)
4377 << CSM << MD->getParent() << /*IsField*/false
4378 << Base->getType() << DiagKind << IsDtorCallInCtor;
4379 }
4380
4381 if (DiagKind == 1)
4382 S.NoteDeletedFunction(Decl);
4383 // FIXME: Explain inaccessibility if DiagKind == 3.
4384 }
4385
4386 return true;
4387}
4388
Richard Smith9a561d52012-02-26 09:11:52 +00004389/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004390/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004391bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004392 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004393 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004394
4395 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004396 // -- any direct or virtual base class, or non-static data member with no
4397 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004398 // either M has no default constructor or overload resolution as applied
4399 // to M's default constructor results in an ambiguity or in a function
4400 // that is deleted or inaccessible
4401 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4402 // -- a direct or virtual base class B that cannot be copied/moved because
4403 // overload resolution, as applied to B's corresponding special member,
4404 // results in an ambiguity or a function that is deleted or inaccessible
4405 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004406 // C++11 [class.dtor]p5:
4407 // -- any direct or virtual base class [...] has a type with a destructor
4408 // that is deleted or inaccessible
4409 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004410 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004411 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004412 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004413
Richard Smith6c4c36c2012-03-30 20:53:28 +00004414 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4415 // -- any direct or virtual base class or non-static data member has a
4416 // type with a destructor that is deleted or inaccessible
4417 if (IsConstructor) {
4418 Sema::SpecialMemberOverloadResult *SMOR =
4419 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4420 false, false, false, false, false);
4421 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4422 return true;
4423 }
4424
Richard Smith9a561d52012-02-26 09:11:52 +00004425 return false;
4426}
4427
4428/// Check whether we should delete a special member function due to the class
4429/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004430bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004431 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004432 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004433}
4434
4435/// Check whether we should delete a special member function due to the class
4436/// having a particular non-static data member.
4437bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4438 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4439 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4440
4441 if (CSM == Sema::CXXDefaultConstructor) {
4442 // For a default constructor, all references must be initialized in-class
4443 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004444 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4445 if (Diagnose)
4446 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4447 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004448 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004449 }
Richard Smith79363f52012-02-27 06:07:25 +00004450 // C++11 [class.ctor]p5: any non-variant non-static data member of
4451 // const-qualified type (or array thereof) with no
4452 // brace-or-equal-initializer does not have a user-provided default
4453 // constructor.
4454 if (!inUnion() && FieldType.isConstQualified() &&
4455 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004456 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4457 if (Diagnose)
4458 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004459 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004460 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004461 }
4462
4463 if (inUnion() && !FieldType.isConstQualified())
4464 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004465 } else if (CSM == Sema::CXXCopyConstructor) {
4466 // For a copy constructor, data members must not be of rvalue reference
4467 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004468 if (FieldType->isRValueReferenceType()) {
4469 if (Diagnose)
4470 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4471 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004472 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004473 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004474 } else if (IsAssignment) {
4475 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004476 if (FieldType->isReferenceType()) {
4477 if (Diagnose)
4478 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4479 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004480 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004481 }
4482 if (!FieldRecord && FieldType.isConstQualified()) {
4483 // C++11 [class.copy]p23:
4484 // -- a non-static data member of const non-class type (or array thereof)
4485 if (Diagnose)
4486 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004487 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004488 return true;
4489 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004490 }
4491
4492 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004493 // Some additional restrictions exist on the variant members.
4494 if (!inUnion() && FieldRecord->isUnion() &&
4495 FieldRecord->isAnonymousStructOrUnion()) {
4496 bool AllVariantFieldsAreConst = true;
4497
Richard Smithdf8dc862012-03-29 19:00:10 +00004498 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004499 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4500 UE = FieldRecord->field_end();
4501 UI != UE; ++UI) {
4502 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004503
4504 if (!UnionFieldType.isConstQualified())
4505 AllVariantFieldsAreConst = false;
4506
Richard Smith9a561d52012-02-26 09:11:52 +00004507 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4508 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004509 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4510 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004511 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004512 }
4513
4514 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004515 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004516 FieldRecord->field_begin() != FieldRecord->field_end()) {
4517 if (Diagnose)
4518 S.Diag(FieldRecord->getLocation(),
4519 diag::note_deleted_default_ctor_all_const)
4520 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004521 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004522 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004523
Richard Smithdf8dc862012-03-29 19:00:10 +00004524 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004525 // This is technically non-conformant, but sanity demands it.
4526 return false;
4527 }
4528
Richard Smith517bb842012-07-18 03:51:16 +00004529 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4530 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004531 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004532 }
4533
4534 return false;
4535}
4536
4537/// C++11 [class.ctor] p5:
4538/// A defaulted default constructor for a class X is defined as deleted if
4539/// X is a union and all of its variant members are of const-qualified type.
4540bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004541 // This is a silly definition, because it gives an empty union a deleted
4542 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004543 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4544 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4545 if (Diagnose)
4546 S.Diag(MD->getParent()->getLocation(),
4547 diag::note_deleted_default_ctor_all_const)
4548 << MD->getParent() << /*not anonymous union*/0;
4549 return true;
4550 }
4551 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004552}
4553
4554/// Determine whether a defaulted special member function should be defined as
4555/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4556/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004557bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4558 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004559 if (MD->isInvalidDecl())
4560 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004561 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004562 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004563 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004564 return false;
4565
Richard Smith7d5088a2012-02-18 02:02:13 +00004566 // C++11 [expr.lambda.prim]p19:
4567 // The closure type associated with a lambda-expression has a
4568 // deleted (8.4.3) default constructor and a deleted copy
4569 // assignment operator.
4570 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004571 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4572 if (Diagnose)
4573 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004574 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004575 }
4576
Richard Smith5bdaac52012-04-02 20:59:25 +00004577 // For an anonymous struct or union, the copy and assignment special members
4578 // will never be used, so skip the check. For an anonymous union declared at
4579 // namespace scope, the constructor and destructor are used.
4580 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4581 RD->isAnonymousStructOrUnion())
4582 return false;
4583
Richard Smith6c4c36c2012-03-30 20:53:28 +00004584 // C++11 [class.copy]p7, p18:
4585 // If the class definition declares a move constructor or move assignment
4586 // operator, an implicitly declared copy constructor or copy assignment
4587 // operator is defined as deleted.
4588 if (MD->isImplicit() &&
4589 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4590 CXXMethodDecl *UserDeclaredMove = 0;
4591
4592 // In Microsoft mode, a user-declared move only causes the deletion of the
4593 // corresponding copy operation, not both copy operations.
4594 if (RD->hasUserDeclaredMoveConstructor() &&
4595 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4596 if (!Diagnose) return true;
4597 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004598 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004599 } else if (RD->hasUserDeclaredMoveAssignment() &&
4600 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4601 if (!Diagnose) return true;
4602 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004603 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004604 }
4605
4606 if (UserDeclaredMove) {
4607 Diag(UserDeclaredMove->getLocation(),
4608 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004609 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004610 << UserDeclaredMove->isMoveAssignmentOperator();
4611 return true;
4612 }
4613 }
Sean Hunte16da072011-10-10 06:18:57 +00004614
Richard Smith5bdaac52012-04-02 20:59:25 +00004615 // Do access control from the special member function
4616 ContextRAII MethodContext(*this, MD);
4617
Richard Smith9a561d52012-02-26 09:11:52 +00004618 // C++11 [class.dtor]p5:
4619 // -- for a virtual destructor, lookup of the non-array deallocation function
4620 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004621 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004622 FunctionDecl *OperatorDelete = 0;
4623 DeclarationName Name =
4624 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4625 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004626 OperatorDelete, false)) {
4627 if (Diagnose)
4628 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004629 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004630 }
Richard Smith9a561d52012-02-26 09:11:52 +00004631 }
4632
Richard Smith6c4c36c2012-03-30 20:53:28 +00004633 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004634
Sean Huntcdee3fe2011-05-11 22:34:38 +00004635 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004636 BE = RD->bases_end(); BI != BE; ++BI)
4637 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004638 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004639 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004640
4641 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004642 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004643 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004644 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004645
4646 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004647 FE = RD->field_end(); FI != FE; ++FI)
4648 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004649 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004650 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004651
Richard Smith7d5088a2012-02-18 02:02:13 +00004652 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004653 return true;
4654
4655 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004656}
4657
4658/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004659namespace {
4660 struct FindHiddenVirtualMethodData {
4661 Sema *S;
4662 CXXMethodDecl *Method;
4663 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004664 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004665 };
4666}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004667
4668/// \brief Member lookup function that determines whether a given C++
4669/// method overloads virtual methods in a base class without overriding any,
4670/// to be used with CXXRecordDecl::lookupInBases().
4671static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4672 CXXBasePath &Path,
4673 void *UserData) {
4674 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4675
4676 FindHiddenVirtualMethodData &Data
4677 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4678
4679 DeclarationName Name = Data.Method->getDeclName();
4680 assert(Name.getNameKind() == DeclarationName::Identifier);
4681
4682 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004683 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004684 for (Path.Decls = BaseRecord->lookup(Name);
4685 Path.Decls.first != Path.Decls.second;
4686 ++Path.Decls.first) {
4687 NamedDecl *D = *Path.Decls.first;
4688 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004689 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004690 foundSameNameMethod = true;
4691 // Interested only in hidden virtual methods.
4692 if (!MD->isVirtual())
4693 continue;
4694 // If the method we are checking overrides a method from its base
4695 // don't warn about the other overloaded methods.
4696 if (!Data.S->IsOverload(Data.Method, MD, false))
4697 return true;
4698 // Collect the overload only if its hidden.
4699 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4700 overloadedMethods.push_back(MD);
4701 }
4702 }
4703
4704 if (foundSameNameMethod)
4705 Data.OverloadedMethods.append(overloadedMethods.begin(),
4706 overloadedMethods.end());
4707 return foundSameNameMethod;
4708}
4709
4710/// \brief See if a method overloads virtual methods in a base class without
4711/// overriding any.
4712void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4713 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004714 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004715 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004716 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004717 return;
4718
4719 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4720 /*bool RecordPaths=*/false,
4721 /*bool DetectVirtual=*/false);
4722 FindHiddenVirtualMethodData Data;
4723 Data.Method = MD;
4724 Data.S = this;
4725
4726 // Keep the base methods that were overriden or introduced in the subclass
4727 // by 'using' in a set. A base method not in this set is hidden.
4728 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4729 res.first != res.second; ++res.first) {
4730 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4731 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4732 E = MD->end_overridden_methods();
4733 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004734 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004735 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4736 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004737 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004738 }
4739
4740 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4741 !Data.OverloadedMethods.empty()) {
4742 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4743 << MD << (Data.OverloadedMethods.size() > 1);
4744
4745 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4746 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4747 Diag(overloadedMD->getLocation(),
4748 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4749 }
4750 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004751}
4752
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004753void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004754 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004755 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004756 SourceLocation RBrac,
4757 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004758 if (!TagDecl)
4759 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004760
Douglas Gregor42af25f2009-05-11 19:58:34 +00004761 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004762
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004763 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4764 if (l->getKind() != AttributeList::AT_Visibility)
4765 continue;
4766 l->setInvalid();
4767 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4768 l->getName();
4769 }
4770
David Blaikie77b6de02011-09-22 02:58:26 +00004771 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004772 // strict aliasing violation!
4773 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004774 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004775
Douglas Gregor23c94db2010-07-02 17:43:08 +00004776 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004777 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004778}
4779
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004780/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4781/// special functions, such as the default constructor, copy
4782/// constructor, or destructor, to the given C++ class (C++
4783/// [special]p1). This routine can only be executed just before the
4784/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004785void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004786 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004787 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004788
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004789 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004790 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004791
David Blaikie4e4d0842012-03-11 07:00:24 +00004792 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004793 ++ASTContext::NumImplicitMoveConstructors;
4794
Douglas Gregora376d102010-07-02 21:50:04 +00004795 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4796 ++ASTContext::NumImplicitCopyAssignmentOperators;
4797
4798 // If we have a dynamic class, then the copy assignment operator may be
4799 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4800 // it shows up in the right place in the vtable and that we diagnose
4801 // problems with the implicit exception specification.
4802 if (ClassDecl->isDynamicClass())
4803 DeclareImplicitCopyAssignment(ClassDecl);
4804 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004805
Richard Smith1c931be2012-04-02 18:40:40 +00004806 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004807 ++ASTContext::NumImplicitMoveAssignmentOperators;
4808
4809 // Likewise for the move assignment operator.
4810 if (ClassDecl->isDynamicClass())
4811 DeclareImplicitMoveAssignment(ClassDecl);
4812 }
4813
Douglas Gregor4923aa22010-07-02 20:37:36 +00004814 if (!ClassDecl->hasUserDeclaredDestructor()) {
4815 ++ASTContext::NumImplicitDestructors;
4816
4817 // If we have a dynamic class, then the destructor may be virtual, so we
4818 // have to declare the destructor immediately. This ensures that, e.g., it
4819 // shows up in the right place in the vtable and that we diagnose problems
4820 // with the implicit exception specification.
4821 if (ClassDecl->isDynamicClass())
4822 DeclareImplicitDestructor(ClassDecl);
4823 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004824}
4825
Francois Pichet8387e2a2011-04-22 22:18:13 +00004826void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4827 if (!D)
4828 return;
4829
4830 int NumParamList = D->getNumTemplateParameterLists();
4831 for (int i = 0; i < NumParamList; i++) {
4832 TemplateParameterList* Params = D->getTemplateParameterList(i);
4833 for (TemplateParameterList::iterator Param = Params->begin(),
4834 ParamEnd = Params->end();
4835 Param != ParamEnd; ++Param) {
4836 NamedDecl *Named = cast<NamedDecl>(*Param);
4837 if (Named->getDeclName()) {
4838 S->AddDecl(Named);
4839 IdResolver.AddDecl(Named);
4840 }
4841 }
4842 }
4843}
4844
John McCalld226f652010-08-21 09:40:31 +00004845void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004846 if (!D)
4847 return;
4848
4849 TemplateParameterList *Params = 0;
4850 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4851 Params = Template->getTemplateParameters();
4852 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4853 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4854 Params = PartialSpec->getTemplateParameters();
4855 else
Douglas Gregor6569d682009-05-27 23:11:45 +00004856 return;
4857
Douglas Gregor6569d682009-05-27 23:11:45 +00004858 for (TemplateParameterList::iterator Param = Params->begin(),
4859 ParamEnd = Params->end();
4860 Param != ParamEnd; ++Param) {
4861 NamedDecl *Named = cast<NamedDecl>(*Param);
4862 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00004863 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00004864 IdResolver.AddDecl(Named);
4865 }
4866 }
4867}
4868
John McCalld226f652010-08-21 09:40:31 +00004869void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004870 if (!RecordD) return;
4871 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00004872 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00004873 PushDeclContext(S, Record);
4874}
4875
John McCalld226f652010-08-21 09:40:31 +00004876void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00004877 if (!RecordD) return;
4878 PopDeclContext();
4879}
4880
Douglas Gregor72b505b2008-12-16 21:30:33 +00004881/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4882/// parsing a top-level (non-nested) C++ class, and we are now
4883/// parsing those parts of the given Method declaration that could
4884/// not be parsed earlier (C++ [class.mem]p2), such as default
4885/// arguments. This action should enter the scope of the given
4886/// Method declaration as if we had just parsed the qualified method
4887/// name. However, it should not bring the parameters into scope;
4888/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00004889void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00004890}
4891
4892/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4893/// C++ method declaration. We're (re-)introducing the given
4894/// function parameter into scope for use in parsing later parts of
4895/// the method declaration. For example, we could see an
4896/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00004897void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004898 if (!ParamD)
4899 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004900
John McCalld226f652010-08-21 09:40:31 +00004901 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00004902
4903 // If this parameter has an unparsed default argument, clear it out
4904 // to make way for the parsed default argument.
4905 if (Param->hasUnparsedDefaultArg())
4906 Param->setDefaultArg(0);
4907
John McCalld226f652010-08-21 09:40:31 +00004908 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004909 if (Param->getDeclName())
4910 IdResolver.AddDecl(Param);
4911}
4912
4913/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4914/// processing the delayed method declaration for Method. The method
4915/// declaration is now considered finished. There may be a separate
4916/// ActOnStartOfFunctionDef action later (not necessarily
4917/// immediately!) for this method, if it was also defined inside the
4918/// class body.
John McCalld226f652010-08-21 09:40:31 +00004919void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004920 if (!MethodD)
4921 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004922
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004923 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00004924
John McCalld226f652010-08-21 09:40:31 +00004925 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004926
4927 // Now that we have our default arguments, check the constructor
4928 // again. It could produce additional diagnostics or affect whether
4929 // the class has implicitly-declared destructors, among other
4930 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00004931 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4932 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00004933
4934 // Check the default arguments, which we may have added.
4935 if (!Method->isInvalidDecl())
4936 CheckCXXDefaultArguments(Method);
4937}
4938
Douglas Gregor42a552f2008-11-05 20:51:48 +00004939/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00004940/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00004941/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00004942/// emit diagnostics and set the invalid bit to true. In any case, the type
4943/// will be updated to reflect a well-formed type for the constructor and
4944/// returned.
4945QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00004946 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00004947 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004948
4949 // C++ [class.ctor]p3:
4950 // A constructor shall not be virtual (10.3) or static (9.4). A
4951 // constructor can be invoked for a const, volatile or const
4952 // volatile object. A constructor shall not be declared const,
4953 // volatile, or const volatile (9.3.2).
4954 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00004955 if (!D.isInvalidType())
4956 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4957 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4958 << SourceRange(D.getIdentifierLoc());
4959 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004960 }
John McCalld931b082010-08-26 03:08:43 +00004961 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00004962 if (!D.isInvalidType())
4963 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4964 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4965 << SourceRange(D.getIdentifierLoc());
4966 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00004967 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00004968 }
Mike Stump1eb44332009-09-09 15:08:12 +00004969
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004970 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00004971 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00004972 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004973 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4974 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004975 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004976 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4977 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00004978 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004979 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4980 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00004981 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00004982 }
Mike Stump1eb44332009-09-09 15:08:12 +00004983
Douglas Gregorc938c162011-01-26 05:01:58 +00004984 // C++0x [class.ctor]p4:
4985 // A constructor shall not be declared with a ref-qualifier.
4986 if (FTI.hasRefQualifier()) {
4987 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4988 << FTI.RefQualifierIsLValueRef
4989 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4990 D.setInvalidType();
4991 }
4992
Douglas Gregor42a552f2008-11-05 20:51:48 +00004993 // Rebuild the function type "R" without any type qualifiers (in
4994 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00004995 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00004996 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00004997 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4998 return R;
4999
5000 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5001 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005002 EPI.RefQualifier = RQ_None;
5003
Chris Lattner65401802009-04-25 08:28:21 +00005004 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005005 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005006}
5007
Douglas Gregor72b505b2008-12-16 21:30:33 +00005008/// CheckConstructor - Checks a fully-formed constructor for
5009/// well-formedness, issuing any diagnostics required. Returns true if
5010/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005011void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005012 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005013 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5014 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005015 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005016
5017 // C++ [class.copy]p3:
5018 // A declaration of a constructor for a class X is ill-formed if
5019 // its first parameter is of type (optionally cv-qualified) X and
5020 // either there are no other parameters or else all other
5021 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005022 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005023 ((Constructor->getNumParams() == 1) ||
5024 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005025 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5026 Constructor->getTemplateSpecializationKind()
5027 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005028 QualType ParamType = Constructor->getParamDecl(0)->getType();
5029 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5030 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005031 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005032 const char *ConstRef
5033 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5034 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005035 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005036 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005037
5038 // FIXME: Rather that making the constructor invalid, we should endeavor
5039 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005040 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005041 }
5042 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005043}
5044
John McCall15442822010-08-04 01:04:25 +00005045/// CheckDestructor - Checks a fully-formed destructor definition for
5046/// well-formedness, issuing any diagnostics required. Returns true
5047/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005048bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005049 CXXRecordDecl *RD = Destructor->getParent();
5050
5051 if (Destructor->isVirtual()) {
5052 SourceLocation Loc;
5053
5054 if (!Destructor->isImplicit())
5055 Loc = Destructor->getLocation();
5056 else
5057 Loc = RD->getLocation();
5058
5059 // If we have a virtual destructor, look up the deallocation function
5060 FunctionDecl *OperatorDelete = 0;
5061 DeclarationName Name =
5062 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005063 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005064 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005065
Eli Friedman5f2987c2012-02-02 03:46:19 +00005066 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005067
5068 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005069 }
Anders Carlsson37909802009-11-30 21:24:50 +00005070
5071 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005072}
5073
Mike Stump1eb44332009-09-09 15:08:12 +00005074static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005075FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5076 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5077 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005078 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005079}
5080
Douglas Gregor42a552f2008-11-05 20:51:48 +00005081/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5082/// the well-formednes of the destructor declarator @p D with type @p
5083/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005084/// emit diagnostics and set the declarator to invalid. Even if this happens,
5085/// will be updated to reflect a well-formed type for the destructor and
5086/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005087QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005088 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005089 // C++ [class.dtor]p1:
5090 // [...] A typedef-name that names a class is a class-name
5091 // (7.1.3); however, a typedef-name that names a class shall not
5092 // be used as the identifier in the declarator for a destructor
5093 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005094 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005095 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005096 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005097 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005098 else if (const TemplateSpecializationType *TST =
5099 DeclaratorType->getAs<TemplateSpecializationType>())
5100 if (TST->isTypeAlias())
5101 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5102 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005103
5104 // C++ [class.dtor]p2:
5105 // A destructor is used to destroy objects of its class type. A
5106 // destructor takes no parameters, and no return type can be
5107 // specified for it (not even void). The address of a destructor
5108 // shall not be taken. A destructor shall not be static. A
5109 // destructor can be invoked for a const, volatile or const
5110 // volatile object. A destructor shall not be declared const,
5111 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005112 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005113 if (!D.isInvalidType())
5114 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5115 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005116 << SourceRange(D.getIdentifierLoc())
5117 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5118
John McCalld931b082010-08-26 03:08:43 +00005119 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005120 }
Chris Lattner65401802009-04-25 08:28:21 +00005121 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005122 // Destructors don't have return types, but the parser will
5123 // happily parse something like:
5124 //
5125 // class X {
5126 // float ~X();
5127 // };
5128 //
5129 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005130 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5131 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5132 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005133 }
Mike Stump1eb44332009-09-09 15:08:12 +00005134
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005135 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005136 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005137 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005138 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5139 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005140 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005141 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5142 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005143 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005144 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5145 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005146 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005147 }
5148
Douglas Gregorc938c162011-01-26 05:01:58 +00005149 // C++0x [class.dtor]p2:
5150 // A destructor shall not be declared with a ref-qualifier.
5151 if (FTI.hasRefQualifier()) {
5152 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5153 << FTI.RefQualifierIsLValueRef
5154 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5155 D.setInvalidType();
5156 }
5157
Douglas Gregor42a552f2008-11-05 20:51:48 +00005158 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005159 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005160 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5161
5162 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005163 FTI.freeArgs();
5164 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005165 }
5166
Mike Stump1eb44332009-09-09 15:08:12 +00005167 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005168 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005169 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005170 D.setInvalidType();
5171 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005172
5173 // Rebuild the function type "R" without any type qualifiers or
5174 // parameters (in case any of the errors above fired) and with
5175 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005176 // types.
John McCalle23cf432010-12-14 08:05:40 +00005177 if (!D.isInvalidType())
5178 return R;
5179
Douglas Gregord92ec472010-07-01 05:10:53 +00005180 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005181 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5182 EPI.Variadic = false;
5183 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005184 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005185 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005186}
5187
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005188/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5189/// well-formednes of the conversion function declarator @p D with
5190/// type @p R. If there are any errors in the declarator, this routine
5191/// will emit diagnostics and return true. Otherwise, it will return
5192/// false. Either way, the type @p R will be updated to reflect a
5193/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005194void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005195 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005196 // C++ [class.conv.fct]p1:
5197 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005198 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005199 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005200 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005201 if (!D.isInvalidType())
5202 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5203 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5204 << SourceRange(D.getIdentifierLoc());
5205 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005206 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005207 }
John McCalla3f81372010-04-13 00:04:31 +00005208
5209 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5210
Chris Lattner6e475012009-04-25 08:35:12 +00005211 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005212 // Conversion functions don't have return types, but the parser will
5213 // happily parse something like:
5214 //
5215 // class X {
5216 // float operator bool();
5217 // };
5218 //
5219 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005220 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5221 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5222 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005223 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005224 }
5225
John McCalla3f81372010-04-13 00:04:31 +00005226 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5227
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005228 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005229 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005230 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5231
5232 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005233 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005234 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005235 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005236 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005237 D.setInvalidType();
5238 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005239
John McCalla3f81372010-04-13 00:04:31 +00005240 // Diagnose "&operator bool()" and other such nonsense. This
5241 // is actually a gcc extension which we don't support.
5242 if (Proto->getResultType() != ConvType) {
5243 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5244 << Proto->getResultType();
5245 D.setInvalidType();
5246 ConvType = Proto->getResultType();
5247 }
5248
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005249 // C++ [class.conv.fct]p4:
5250 // The conversion-type-id shall not represent a function type nor
5251 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005252 if (ConvType->isArrayType()) {
5253 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5254 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005255 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005256 } else if (ConvType->isFunctionType()) {
5257 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5258 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005259 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005260 }
5261
5262 // Rebuild the function type "R" without any parameters (in case any
5263 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005264 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005265 if (D.isInvalidType())
5266 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005267
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005268 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005269 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005270 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005271 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005272 diag::warn_cxx98_compat_explicit_conversion_functions :
5273 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005274 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005275}
5276
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005277/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5278/// the declaration of the given C++ conversion function. This routine
5279/// is responsible for recording the conversion function in the C++
5280/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005281Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005282 assert(Conversion && "Expected to receive a conversion function declaration");
5283
Douglas Gregor9d350972008-12-12 08:25:50 +00005284 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005285
5286 // Make sure we aren't redeclaring the conversion function.
5287 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005288
5289 // C++ [class.conv.fct]p1:
5290 // [...] A conversion function is never used to convert a
5291 // (possibly cv-qualified) object to the (possibly cv-qualified)
5292 // same object type (or a reference to it), to a (possibly
5293 // cv-qualified) base class of that type (or a reference to it),
5294 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005295 // FIXME: Suppress this warning if the conversion function ends up being a
5296 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005297 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005298 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005299 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005300 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005301 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5302 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005303 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005304 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005305 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5306 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005307 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005308 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005309 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005310 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005311 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005312 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005313 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005314 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005315 }
5316
Douglas Gregore80622f2010-09-29 04:25:11 +00005317 if (FunctionTemplateDecl *ConversionTemplate
5318 = Conversion->getDescribedFunctionTemplate())
5319 return ConversionTemplate;
5320
John McCalld226f652010-08-21 09:40:31 +00005321 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005322}
5323
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005324//===----------------------------------------------------------------------===//
5325// Namespace Handling
5326//===----------------------------------------------------------------------===//
5327
John McCallea318642010-08-26 09:15:37 +00005328
5329
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005330/// ActOnStartNamespaceDef - This is called at the start of a namespace
5331/// definition.
John McCalld226f652010-08-21 09:40:31 +00005332Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005333 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005334 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005335 SourceLocation IdentLoc,
5336 IdentifierInfo *II,
5337 SourceLocation LBrace,
5338 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005339 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5340 // For anonymous namespace, take the location of the left brace.
5341 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005342 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005343 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005344 bool IsStd = false;
5345 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005346 Scope *DeclRegionScope = NamespcScope->getParent();
5347
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005348 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005349 if (II) {
5350 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005351 // The identifier in an original-namespace-definition shall not
5352 // have been previously defined in the declarative region in
5353 // which the original-namespace-definition appears. The
5354 // identifier in an original-namespace-definition is the name of
5355 // the namespace. Subsequently in that declarative region, it is
5356 // treated as an original-namespace-name.
5357 //
5358 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005359 // look through using directives, just look for any ordinary names.
5360
5361 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005362 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5363 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005364 NamedDecl *PrevDecl = 0;
5365 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005366 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005367 R.first != R.second; ++R.first) {
5368 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5369 PrevDecl = *R.first;
5370 break;
5371 }
5372 }
5373
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005374 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5375
5376 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005377 // This is an extended namespace definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005378 if (IsInline != PrevNS->isInline()) {
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005379 // inline-ness must match
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005380 if (PrevNS->isInline()) {
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005381 // The user probably just forgot the 'inline', so suggest that it
5382 // be added back.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005383 Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005384 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
5385 } else {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005386 Diag(Loc, diag::err_inline_namespace_mismatch)
5387 << IsInline;
Douglas Gregorb7ec9062011-05-20 15:48:31 +00005388 }
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005389 Diag(PrevNS->getLocation(), diag::note_previous_definition);
5390
5391 IsInline = PrevNS->isInline();
5392 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005393 } else if (PrevDecl) {
5394 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005395 Diag(Loc, diag::err_redefinition_different_kind)
5396 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005397 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005398 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005399 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005400 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005401 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005402 // This is the first "real" definition of the namespace "std", so update
5403 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005404 PrevNS = getStdNamespace();
5405 IsStd = true;
5406 AddToKnown = !IsInline;
5407 } else {
5408 // We've seen this namespace for the first time.
5409 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005410 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005411 } else {
John McCall9aeed322009-10-01 00:25:31 +00005412 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005413
5414 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005415 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005416 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005417 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005418 } else {
5419 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005420 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005421 }
5422
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005423 if (PrevNS && IsInline != PrevNS->isInline()) {
5424 // inline-ness must match
5425 Diag(Loc, diag::err_inline_namespace_mismatch)
5426 << IsInline;
5427 Diag(PrevNS->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005428
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005429 // Recover by ignoring the new namespace's inline status.
5430 IsInline = PrevNS->isInline();
5431 }
5432 }
5433
5434 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5435 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005436 if (IsInvalid)
5437 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005438
5439 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005440
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005441 // FIXME: Should we be merging attributes?
5442 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005443 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005444
5445 if (IsStd)
5446 StdNamespace = Namespc;
5447 if (AddToKnown)
5448 KnownNamespaces[Namespc] = false;
5449
5450 if (II) {
5451 PushOnScopeChains(Namespc, DeclRegionScope);
5452 } else {
5453 // Link the anonymous namespace into its parent.
5454 DeclContext *Parent = CurContext->getRedeclContext();
5455 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5456 TU->setAnonymousNamespace(Namespc);
5457 } else {
5458 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005459 }
John McCall9aeed322009-10-01 00:25:31 +00005460
Douglas Gregora4181472010-03-24 00:46:35 +00005461 CurContext->addDecl(Namespc);
5462
John McCall9aeed322009-10-01 00:25:31 +00005463 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5464 // behaves as if it were replaced by
5465 // namespace unique { /* empty body */ }
5466 // using namespace unique;
5467 // namespace unique { namespace-body }
5468 // where all occurrences of 'unique' in a translation unit are
5469 // replaced by the same identifier and this identifier differs
5470 // from all other identifiers in the entire program.
5471
5472 // We just create the namespace with an empty name and then add an
5473 // implicit using declaration, just like the standard suggests.
5474 //
5475 // CodeGen enforces the "universally unique" aspect by giving all
5476 // declarations semantically contained within an anonymous
5477 // namespace internal linkage.
5478
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005479 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005480 UsingDirectiveDecl* UD
5481 = UsingDirectiveDecl::Create(Context, CurContext,
5482 /* 'using' */ LBrace,
5483 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005484 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005485 /* identifier */ SourceLocation(),
5486 Namespc,
5487 /* Ancestor */ CurContext);
5488 UD->setImplicit();
5489 CurContext->addDecl(UD);
5490 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005491 }
5492
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005493 ActOnDocumentableDecl(Namespc);
5494
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005495 // Although we could have an invalid decl (i.e. the namespace name is a
5496 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005497 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5498 // for the namespace has the declarations that showed up in that particular
5499 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005500 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005501 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005502}
5503
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005504/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5505/// is a namespace alias, returns the namespace it points to.
5506static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5507 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5508 return AD->getNamespace();
5509 return dyn_cast_or_null<NamespaceDecl>(D);
5510}
5511
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005512/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5513/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005514void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005515 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5516 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005517 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005518 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005519 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005520 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005521}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005522
John McCall384aff82010-08-25 07:42:41 +00005523CXXRecordDecl *Sema::getStdBadAlloc() const {
5524 return cast_or_null<CXXRecordDecl>(
5525 StdBadAlloc.get(Context.getExternalSource()));
5526}
5527
5528NamespaceDecl *Sema::getStdNamespace() const {
5529 return cast_or_null<NamespaceDecl>(
5530 StdNamespace.get(Context.getExternalSource()));
5531}
5532
Douglas Gregor66992202010-06-29 17:53:46 +00005533/// \brief Retrieve the special "std" namespace, which may require us to
5534/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005535NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005536 if (!StdNamespace) {
5537 // The "std" namespace has not yet been defined, so build one implicitly.
5538 StdNamespace = NamespaceDecl::Create(Context,
5539 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005540 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005541 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005542 &PP.getIdentifierTable().get("std"),
5543 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005544 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005545 }
5546
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005547 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005548}
5549
Sebastian Redl395e04d2012-01-17 22:49:33 +00005550bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005551 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005552 "Looking for std::initializer_list outside of C++.");
5553
5554 // We're looking for implicit instantiations of
5555 // template <typename E> class std::initializer_list.
5556
5557 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5558 return false;
5559
Sebastian Redl84760e32012-01-17 22:49:58 +00005560 ClassTemplateDecl *Template = 0;
5561 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005562
Sebastian Redl84760e32012-01-17 22:49:58 +00005563 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005564
Sebastian Redl84760e32012-01-17 22:49:58 +00005565 ClassTemplateSpecializationDecl *Specialization =
5566 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5567 if (!Specialization)
5568 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005569
Sebastian Redl84760e32012-01-17 22:49:58 +00005570 Template = Specialization->getSpecializedTemplate();
5571 Arguments = Specialization->getTemplateArgs().data();
5572 } else if (const TemplateSpecializationType *TST =
5573 Ty->getAs<TemplateSpecializationType>()) {
5574 Template = dyn_cast_or_null<ClassTemplateDecl>(
5575 TST->getTemplateName().getAsTemplateDecl());
5576 Arguments = TST->getArgs();
5577 }
5578 if (!Template)
5579 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005580
5581 if (!StdInitializerList) {
5582 // Haven't recognized std::initializer_list yet, maybe this is it.
5583 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5584 if (TemplateClass->getIdentifier() !=
5585 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005586 !getStdNamespace()->InEnclosingNamespaceSetOf(
5587 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005588 return false;
5589 // This is a template called std::initializer_list, but is it the right
5590 // template?
5591 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005592 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005593 return false;
5594 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5595 return false;
5596
5597 // It's the right template.
5598 StdInitializerList = Template;
5599 }
5600
5601 if (Template != StdInitializerList)
5602 return false;
5603
5604 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005605 if (Element)
5606 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005607 return true;
5608}
5609
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005610static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5611 NamespaceDecl *Std = S.getStdNamespace();
5612 if (!Std) {
5613 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5614 return 0;
5615 }
5616
5617 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5618 Loc, Sema::LookupOrdinaryName);
5619 if (!S.LookupQualifiedName(Result, Std)) {
5620 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5621 return 0;
5622 }
5623 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5624 if (!Template) {
5625 Result.suppressDiagnostics();
5626 // We found something weird. Complain about the first thing we found.
5627 NamedDecl *Found = *Result.begin();
5628 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5629 return 0;
5630 }
5631
5632 // We found some template called std::initializer_list. Now verify that it's
5633 // correct.
5634 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005635 if (Params->getMinRequiredArguments() != 1 ||
5636 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005637 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5638 return 0;
5639 }
5640
5641 return Template;
5642}
5643
5644QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5645 if (!StdInitializerList) {
5646 StdInitializerList = LookupStdInitializerList(*this, Loc);
5647 if (!StdInitializerList)
5648 return QualType();
5649 }
5650
5651 TemplateArgumentListInfo Args(Loc, Loc);
5652 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5653 Context.getTrivialTypeSourceInfo(Element,
5654 Loc)));
5655 return Context.getCanonicalType(
5656 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5657}
5658
Sebastian Redl98d36062012-01-17 22:50:14 +00005659bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5660 // C++ [dcl.init.list]p2:
5661 // A constructor is an initializer-list constructor if its first parameter
5662 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5663 // std::initializer_list<E> for some type E, and either there are no other
5664 // parameters or else all other parameters have default arguments.
5665 if (Ctor->getNumParams() < 1 ||
5666 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5667 return false;
5668
5669 QualType ArgType = Ctor->getParamDecl(0)->getType();
5670 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5671 ArgType = RT->getPointeeType().getUnqualifiedType();
5672
5673 return isStdInitializerList(ArgType, 0);
5674}
5675
Douglas Gregor9172aa62011-03-26 22:25:30 +00005676/// \brief Determine whether a using statement is in a context where it will be
5677/// apply in all contexts.
5678static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5679 switch (CurContext->getDeclKind()) {
5680 case Decl::TranslationUnit:
5681 return true;
5682 case Decl::LinkageSpec:
5683 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5684 default:
5685 return false;
5686 }
5687}
5688
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005689namespace {
5690
5691// Callback to only accept typo corrections that are namespaces.
5692class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5693 public:
5694 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5695 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5696 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5697 }
5698 return false;
5699 }
5700};
5701
5702}
5703
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005704static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5705 CXXScopeSpec &SS,
5706 SourceLocation IdentLoc,
5707 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005708 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005709 R.clear();
5710 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005711 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005712 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005713 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5714 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005715 if (DeclContext *DC = S.computeDeclContext(SS, false))
5716 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5717 << Ident << DC << CorrectedQuotedStr << SS.getRange()
5718 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
5719 else
5720 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5721 << Ident << CorrectedQuotedStr
5722 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005723
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005724 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5725 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005726
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005727 R.addDecl(Corrected.getCorrectionDecl());
5728 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005729 }
5730 return false;
5731}
5732
John McCalld226f652010-08-21 09:40:31 +00005733Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005734 SourceLocation UsingLoc,
5735 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005736 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005737 SourceLocation IdentLoc,
5738 IdentifierInfo *NamespcName,
5739 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005740 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5741 assert(NamespcName && "Invalid NamespcName.");
5742 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005743
5744 // This can only happen along a recovery path.
5745 while (S->getFlags() & Scope::TemplateParamScope)
5746 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005747 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005748
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005749 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005750 NestedNameSpecifier *Qualifier = 0;
5751 if (SS.isSet())
5752 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5753
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005754 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005755 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5756 LookupParsedName(R, S, &SS);
5757 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005758 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005759
Douglas Gregor66992202010-06-29 17:53:46 +00005760 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005761 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005762 // Allow "using namespace std;" or "using namespace ::std;" even if
5763 // "std" hasn't been defined yet, for GCC compatibility.
5764 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5765 NamespcName->isStr("std")) {
5766 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005767 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005768 R.resolveKind();
5769 }
5770 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005771 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005772 }
5773
John McCallf36e02d2009-10-09 21:13:30 +00005774 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005775 NamedDecl *Named = R.getFoundDecl();
5776 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5777 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005778 // C++ [namespace.udir]p1:
5779 // A using-directive specifies that the names in the nominated
5780 // namespace can be used in the scope in which the
5781 // using-directive appears after the using-directive. During
5782 // unqualified name lookup (3.4.1), the names appear as if they
5783 // were declared in the nearest enclosing namespace which
5784 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005785 // namespace. [Note: in this context, "contains" means "contains
5786 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005787
5788 // Find enclosing context containing both using-directive and
5789 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005790 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005791 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5792 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5793 CommonAncestor = CommonAncestor->getParent();
5794
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005795 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005796 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005797 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005798
Douglas Gregor9172aa62011-03-26 22:25:30 +00005799 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005800 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005801 Diag(IdentLoc, diag::warn_using_directive_in_header);
5802 }
5803
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005804 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005805 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005806 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005807 }
5808
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005809 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005810 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005811}
5812
5813void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005814 // If the scope has an associated entity and the using directive is at
5815 // namespace or translation unit scope, add the UsingDirectiveDecl into
5816 // its lookup structure so qualified name lookup can find it.
5817 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5818 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005819 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005820 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005821 // Otherwise, it is at block sope. The using-directives will affect lookup
5822 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005823 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005824}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005825
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005826
John McCalld226f652010-08-21 09:40:31 +00005827Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00005828 AccessSpecifier AS,
5829 bool HasUsingKeyword,
5830 SourceLocation UsingLoc,
5831 CXXScopeSpec &SS,
5832 UnqualifiedId &Name,
5833 AttributeList *AttrList,
5834 bool IsTypeName,
5835 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005836 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00005837
Douglas Gregor12c118a2009-11-04 16:30:06 +00005838 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00005839 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005840 case UnqualifiedId::IK_Identifier:
5841 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00005842 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00005843 case UnqualifiedId::IK_ConversionFunctionId:
5844 break;
5845
5846 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00005847 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00005848 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00005849 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005850 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00005851 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
5852 // instead once inheriting constructors work.
5853 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00005854 diag::err_using_decl_constructor)
5855 << SS.getRange();
5856
David Blaikie4e4d0842012-03-11 07:00:24 +00005857 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00005858
John McCalld226f652010-08-21 09:40:31 +00005859 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005860
5861 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005862 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005863 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00005864 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005865
5866 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00005867 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00005868 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00005869 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00005870 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005871
5872 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5873 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00005874 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00005875 return 0;
John McCall604e7f12009-12-08 07:46:18 +00005876
John McCall60fa3cf2009-12-11 02:10:03 +00005877 // Warn about using declarations.
5878 // TODO: store that the declaration was written without 'using' and
5879 // talk about access decls instead of using decls in the
5880 // diagnostics.
5881 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005882 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00005883
5884 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00005885 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00005886 }
5887
Douglas Gregor56c04582010-12-16 00:46:58 +00005888 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5889 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5890 return 0;
5891
John McCall9488ea12009-11-17 05:59:44 +00005892 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00005893 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00005894 /* IsInstantiation */ false,
5895 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00005896 if (UD)
5897 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00005898
John McCalld226f652010-08-21 09:40:31 +00005899 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00005900}
5901
Douglas Gregor09acc982010-07-07 23:08:52 +00005902/// \brief Determine whether a using declaration considers the given
5903/// declarations as "equivalent", e.g., if they are redeclarations of
5904/// the same entity or are both typedefs of the same type.
5905static bool
5906IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5907 bool &SuppressRedeclaration) {
5908 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5909 SuppressRedeclaration = false;
5910 return true;
5911 }
5912
Richard Smith162e1c12011-04-15 14:24:37 +00005913 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5914 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00005915 SuppressRedeclaration = true;
5916 return Context.hasSameType(TD1->getUnderlyingType(),
5917 TD2->getUnderlyingType());
5918 }
5919
5920 return false;
5921}
5922
5923
John McCall9f54ad42009-12-10 09:41:52 +00005924/// Determines whether to create a using shadow decl for a particular
5925/// decl, given the set of decls existing prior to this using lookup.
5926bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5927 const LookupResult &Previous) {
5928 // Diagnose finding a decl which is not from a base class of the
5929 // current class. We do this now because there are cases where this
5930 // function will silently decide not to build a shadow decl, which
5931 // will pre-empt further diagnostics.
5932 //
5933 // We don't need to do this in C++0x because we do the check once on
5934 // the qualifier.
5935 //
5936 // FIXME: diagnose the following if we care enough:
5937 // struct A { int foo; };
5938 // struct B : A { using A::foo; };
5939 // template <class T> struct C : A {};
5940 // template <class T> struct D : C<T> { using B::foo; } // <---
5941 // This is invalid (during instantiation) in C++03 because B::foo
5942 // resolves to the using decl in B, which is not a base class of D<T>.
5943 // We can't diagnose it immediately because C<T> is an unknown
5944 // specialization. The UsingShadowDecl in D<T> then points directly
5945 // to A::foo, which will look well-formed when we instantiate.
5946 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00005947 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00005948 DeclContext *OrigDC = Orig->getDeclContext();
5949
5950 // Handle enums and anonymous structs.
5951 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5952 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5953 while (OrigRec->isAnonymousStructOrUnion())
5954 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5955
5956 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5957 if (OrigDC == CurContext) {
5958 Diag(Using->getLocation(),
5959 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005960 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005961 Diag(Orig->getLocation(), diag::note_using_decl_target);
5962 return true;
5963 }
5964
Douglas Gregordc355712011-02-25 00:36:19 +00005965 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00005966 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00005967 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00005968 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00005969 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00005970 Diag(Orig->getLocation(), diag::note_using_decl_target);
5971 return true;
5972 }
5973 }
5974
5975 if (Previous.empty()) return false;
5976
5977 NamedDecl *Target = Orig;
5978 if (isa<UsingShadowDecl>(Target))
5979 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5980
John McCalld7533ec2009-12-11 02:33:26 +00005981 // If the target happens to be one of the previous declarations, we
5982 // don't have a conflict.
5983 //
5984 // FIXME: but we might be increasing its access, in which case we
5985 // should redeclare it.
5986 NamedDecl *NonTag = 0, *Tag = 0;
5987 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5988 I != E; ++I) {
5989 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00005990 bool Result;
5991 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5992 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00005993
5994 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5995 }
5996
John McCall9f54ad42009-12-10 09:41:52 +00005997 if (Target->isFunctionOrFunctionTemplate()) {
5998 FunctionDecl *FD;
5999 if (isa<FunctionTemplateDecl>(Target))
6000 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6001 else
6002 FD = cast<FunctionDecl>(Target);
6003
6004 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006005 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006006 case Ovl_Overload:
6007 return false;
6008
6009 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006010 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006011 break;
6012
6013 // We found a decl with the exact signature.
6014 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006015 // If we're in a record, we want to hide the target, so we
6016 // return true (without a diagnostic) to tell the caller not to
6017 // build a shadow decl.
6018 if (CurContext->isRecord())
6019 return true;
6020
6021 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006022 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006023 break;
6024 }
6025
6026 Diag(Target->getLocation(), diag::note_using_decl_target);
6027 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6028 return true;
6029 }
6030
6031 // Target is not a function.
6032
John McCall9f54ad42009-12-10 09:41:52 +00006033 if (isa<TagDecl>(Target)) {
6034 // No conflict between a tag and a non-tag.
6035 if (!Tag) return false;
6036
John McCall41ce66f2009-12-10 19:51:03 +00006037 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006038 Diag(Target->getLocation(), diag::note_using_decl_target);
6039 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6040 return true;
6041 }
6042
6043 // No conflict between a tag and a non-tag.
6044 if (!NonTag) return false;
6045
John McCall41ce66f2009-12-10 19:51:03 +00006046 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006047 Diag(Target->getLocation(), diag::note_using_decl_target);
6048 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6049 return true;
6050}
6051
John McCall9488ea12009-11-17 05:59:44 +00006052/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006053UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006054 UsingDecl *UD,
6055 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006056
6057 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006058 NamedDecl *Target = Orig;
6059 if (isa<UsingShadowDecl>(Target)) {
6060 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6061 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006062 }
6063
6064 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006065 = UsingShadowDecl::Create(Context, CurContext,
6066 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006067 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006068
6069 Shadow->setAccess(UD->getAccess());
6070 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6071 Shadow->setInvalidDecl();
6072
John McCall9488ea12009-11-17 05:59:44 +00006073 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006074 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006075 else
John McCall604e7f12009-12-08 07:46:18 +00006076 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006077
John McCall604e7f12009-12-08 07:46:18 +00006078
John McCall9f54ad42009-12-10 09:41:52 +00006079 return Shadow;
6080}
John McCall604e7f12009-12-08 07:46:18 +00006081
John McCall9f54ad42009-12-10 09:41:52 +00006082/// Hides a using shadow declaration. This is required by the current
6083/// using-decl implementation when a resolvable using declaration in a
6084/// class is followed by a declaration which would hide or override
6085/// one or more of the using decl's targets; for example:
6086///
6087/// struct Base { void foo(int); };
6088/// struct Derived : Base {
6089/// using Base::foo;
6090/// void foo(int);
6091/// };
6092///
6093/// The governing language is C++03 [namespace.udecl]p12:
6094///
6095/// When a using-declaration brings names from a base class into a
6096/// derived class scope, member functions in the derived class
6097/// override and/or hide member functions with the same name and
6098/// parameter types in a base class (rather than conflicting).
6099///
6100/// There are two ways to implement this:
6101/// (1) optimistically create shadow decls when they're not hidden
6102/// by existing declarations, or
6103/// (2) don't create any shadow decls (or at least don't make them
6104/// visible) until we've fully parsed/instantiated the class.
6105/// The problem with (1) is that we might have to retroactively remove
6106/// a shadow decl, which requires several O(n) operations because the
6107/// decl structures are (very reasonably) not designed for removal.
6108/// (2) avoids this but is very fiddly and phase-dependent.
6109void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006110 if (Shadow->getDeclName().getNameKind() ==
6111 DeclarationName::CXXConversionFunctionName)
6112 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6113
John McCall9f54ad42009-12-10 09:41:52 +00006114 // Remove it from the DeclContext...
6115 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006116
John McCall9f54ad42009-12-10 09:41:52 +00006117 // ...and the scope, if applicable...
6118 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006119 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006120 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006121 }
6122
John McCall9f54ad42009-12-10 09:41:52 +00006123 // ...and the using decl.
6124 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6125
6126 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006127 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006128}
6129
John McCall7ba107a2009-11-18 02:36:19 +00006130/// Builds a using declaration.
6131///
6132/// \param IsInstantiation - Whether this call arises from an
6133/// instantiation of an unresolved using declaration. We treat
6134/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006135NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6136 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006137 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006138 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006139 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006140 bool IsInstantiation,
6141 bool IsTypeName,
6142 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006143 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006144 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006145 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006146
Anders Carlsson550b14b2009-08-28 05:49:21 +00006147 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006148
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006149 if (SS.isEmpty()) {
6150 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006151 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006152 }
Mike Stump1eb44332009-09-09 15:08:12 +00006153
John McCall9f54ad42009-12-10 09:41:52 +00006154 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006155 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006156 ForRedeclaration);
6157 Previous.setHideTags(false);
6158 if (S) {
6159 LookupName(Previous, S);
6160
6161 // It is really dumb that we have to do this.
6162 LookupResult::Filter F = Previous.makeFilter();
6163 while (F.hasNext()) {
6164 NamedDecl *D = F.next();
6165 if (!isDeclInScope(D, CurContext, S))
6166 F.erase();
6167 }
6168 F.done();
6169 } else {
6170 assert(IsInstantiation && "no scope in non-instantiation");
6171 assert(CurContext->isRecord() && "scope not record in instantiation");
6172 LookupQualifiedName(Previous, CurContext);
6173 }
6174
John McCall9f54ad42009-12-10 09:41:52 +00006175 // Check for invalid redeclarations.
6176 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6177 return 0;
6178
6179 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006180 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6181 return 0;
6182
John McCallaf8e6ed2009-11-12 03:15:40 +00006183 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006184 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006185 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006186 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006187 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006188 // FIXME: not all declaration name kinds are legal here
6189 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6190 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006191 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006192 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006193 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006194 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6195 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006196 }
John McCalled976492009-12-04 22:46:56 +00006197 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006198 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6199 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006200 }
John McCalled976492009-12-04 22:46:56 +00006201 D->setAccess(AS);
6202 CurContext->addDecl(D);
6203
6204 if (!LookupContext) return D;
6205 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006206
John McCall77bb1aa2010-05-01 00:40:08 +00006207 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006208 UD->setInvalidDecl();
6209 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006210 }
6211
Richard Smithc5a89a12012-04-02 01:30:27 +00006212 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006213 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006214 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006215 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006216 return UD;
6217 }
6218
6219 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006220
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006221 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006222
John McCall604e7f12009-12-08 07:46:18 +00006223 // Unlike most lookups, we don't always want to hide tag
6224 // declarations: tag names are visible through the using declaration
6225 // even if hidden by ordinary names, *except* in a dependent context
6226 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006227 if (!IsInstantiation)
6228 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006229
John McCallb9abd8722012-04-07 03:04:20 +00006230 // For the purposes of this lookup, we have a base object type
6231 // equal to that of the current context.
6232 if (CurContext->isRecord()) {
6233 R.setBaseObjectType(
6234 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6235 }
6236
John McCalla24dc2e2009-11-17 02:14:36 +00006237 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006238
John McCallf36e02d2009-10-09 21:13:30 +00006239 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006240 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006241 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006242 UD->setInvalidDecl();
6243 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006244 }
6245
John McCalled976492009-12-04 22:46:56 +00006246 if (R.isAmbiguous()) {
6247 UD->setInvalidDecl();
6248 return UD;
6249 }
Mike Stump1eb44332009-09-09 15:08:12 +00006250
John McCall7ba107a2009-11-18 02:36:19 +00006251 if (IsTypeName) {
6252 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006253 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006254 Diag(IdentLoc, diag::err_using_typename_non_type);
6255 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6256 Diag((*I)->getUnderlyingDecl()->getLocation(),
6257 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006258 UD->setInvalidDecl();
6259 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006260 }
6261 } else {
6262 // If we asked for a non-typename and we got a type, error out,
6263 // but only if this is an instantiation of an unresolved using
6264 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006265 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006266 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6267 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006268 UD->setInvalidDecl();
6269 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006270 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006271 }
6272
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006273 // C++0x N2914 [namespace.udecl]p6:
6274 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006275 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006276 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6277 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006278 UD->setInvalidDecl();
6279 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006280 }
Mike Stump1eb44332009-09-09 15:08:12 +00006281
John McCall9f54ad42009-12-10 09:41:52 +00006282 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6283 if (!CheckUsingShadowDecl(UD, *I, Previous))
6284 BuildUsingShadowDecl(S, UD, *I);
6285 }
John McCall9488ea12009-11-17 05:59:44 +00006286
6287 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006288}
6289
Sebastian Redlf677ea32011-02-05 19:23:19 +00006290/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006291bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6292 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006293
Douglas Gregordc355712011-02-25 00:36:19 +00006294 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006295 assert(SourceType &&
6296 "Using decl naming constructor doesn't have type in scope spec.");
6297 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6298
6299 // Check whether the named type is a direct base class.
6300 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6301 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6302 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6303 BaseIt != BaseE; ++BaseIt) {
6304 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6305 if (CanonicalSourceType == BaseType)
6306 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006307 if (BaseIt->getType()->isDependentType())
6308 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006309 }
6310
6311 if (BaseIt == BaseE) {
6312 // Did not find SourceType in the bases.
6313 Diag(UD->getUsingLocation(),
6314 diag::err_using_decl_constructor_not_in_direct_base)
6315 << UD->getNameInfo().getSourceRange()
6316 << QualType(SourceType, 0) << TargetClass;
6317 return true;
6318 }
6319
Richard Smithc5a89a12012-04-02 01:30:27 +00006320 if (!CurContext->isDependentContext())
6321 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006322
6323 return false;
6324}
6325
John McCall9f54ad42009-12-10 09:41:52 +00006326/// Checks that the given using declaration is not an invalid
6327/// redeclaration. Note that this is checking only for the using decl
6328/// itself, not for any ill-formedness among the UsingShadowDecls.
6329bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6330 bool isTypeName,
6331 const CXXScopeSpec &SS,
6332 SourceLocation NameLoc,
6333 const LookupResult &Prev) {
6334 // C++03 [namespace.udecl]p8:
6335 // C++0x [namespace.udecl]p10:
6336 // A using-declaration is a declaration and can therefore be used
6337 // repeatedly where (and only where) multiple declarations are
6338 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006339 //
John McCall8a726212010-11-29 18:01:58 +00006340 // That's in non-member contexts.
6341 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006342 return false;
6343
6344 NestedNameSpecifier *Qual
6345 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6346
6347 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6348 NamedDecl *D = *I;
6349
6350 bool DTypename;
6351 NestedNameSpecifier *DQual;
6352 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6353 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006354 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006355 } else if (UnresolvedUsingValueDecl *UD
6356 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6357 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006358 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006359 } else if (UnresolvedUsingTypenameDecl *UD
6360 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6361 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006362 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006363 } else continue;
6364
6365 // using decls differ if one says 'typename' and the other doesn't.
6366 // FIXME: non-dependent using decls?
6367 if (isTypeName != DTypename) continue;
6368
6369 // using decls differ if they name different scopes (but note that
6370 // template instantiation can cause this check to trigger when it
6371 // didn't before instantiation).
6372 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6373 Context.getCanonicalNestedNameSpecifier(DQual))
6374 continue;
6375
6376 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006377 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006378 return true;
6379 }
6380
6381 return false;
6382}
6383
John McCall604e7f12009-12-08 07:46:18 +00006384
John McCalled976492009-12-04 22:46:56 +00006385/// Checks that the given nested-name qualifier used in a using decl
6386/// in the current context is appropriately related to the current
6387/// scope. If an error is found, diagnoses it and returns true.
6388bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6389 const CXXScopeSpec &SS,
6390 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006391 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006392
John McCall604e7f12009-12-08 07:46:18 +00006393 if (!CurContext->isRecord()) {
6394 // C++03 [namespace.udecl]p3:
6395 // C++0x [namespace.udecl]p8:
6396 // A using-declaration for a class member shall be a member-declaration.
6397
6398 // If we weren't able to compute a valid scope, it must be a
6399 // dependent class scope.
6400 if (!NamedContext || NamedContext->isRecord()) {
6401 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6402 << SS.getRange();
6403 return true;
6404 }
6405
6406 // Otherwise, everything is known to be fine.
6407 return false;
6408 }
6409
6410 // The current scope is a record.
6411
6412 // If the named context is dependent, we can't decide much.
6413 if (!NamedContext) {
6414 // FIXME: in C++0x, we can diagnose if we can prove that the
6415 // nested-name-specifier does not refer to a base class, which is
6416 // still possible in some cases.
6417
6418 // Otherwise we have to conservatively report that things might be
6419 // okay.
6420 return false;
6421 }
6422
6423 if (!NamedContext->isRecord()) {
6424 // Ideally this would point at the last name in the specifier,
6425 // but we don't have that level of source info.
6426 Diag(SS.getRange().getBegin(),
6427 diag::err_using_decl_nested_name_specifier_is_not_class)
6428 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6429 return true;
6430 }
6431
Douglas Gregor6fb07292010-12-21 07:41:49 +00006432 if (!NamedContext->isDependentContext() &&
6433 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6434 return true;
6435
David Blaikie4e4d0842012-03-11 07:00:24 +00006436 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006437 // C++0x [namespace.udecl]p3:
6438 // In a using-declaration used as a member-declaration, the
6439 // nested-name-specifier shall name a base class of the class
6440 // being defined.
6441
6442 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6443 cast<CXXRecordDecl>(NamedContext))) {
6444 if (CurContext == NamedContext) {
6445 Diag(NameLoc,
6446 diag::err_using_decl_nested_name_specifier_is_current_class)
6447 << SS.getRange();
6448 return true;
6449 }
6450
6451 Diag(SS.getRange().getBegin(),
6452 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6453 << (NestedNameSpecifier*) SS.getScopeRep()
6454 << cast<CXXRecordDecl>(CurContext)
6455 << SS.getRange();
6456 return true;
6457 }
6458
6459 return false;
6460 }
6461
6462 // C++03 [namespace.udecl]p4:
6463 // A using-declaration used as a member-declaration shall refer
6464 // to a member of a base class of the class being defined [etc.].
6465
6466 // Salient point: SS doesn't have to name a base class as long as
6467 // lookup only finds members from base classes. Therefore we can
6468 // diagnose here only if we can prove that that can't happen,
6469 // i.e. if the class hierarchies provably don't intersect.
6470
6471 // TODO: it would be nice if "definitely valid" results were cached
6472 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6473 // need to be repeated.
6474
6475 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006476 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006477
6478 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6479 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6480 Data->Bases.insert(Base);
6481 return true;
6482 }
6483
6484 bool hasDependentBases(const CXXRecordDecl *Class) {
6485 return !Class->forallBases(collect, this);
6486 }
6487
6488 /// Returns true if the base is dependent or is one of the
6489 /// accumulated base classes.
6490 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6491 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6492 return !Data->Bases.count(Base);
6493 }
6494
6495 bool mightShareBases(const CXXRecordDecl *Class) {
6496 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6497 }
6498 };
6499
6500 UserData Data;
6501
6502 // Returns false if we find a dependent base.
6503 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6504 return false;
6505
6506 // Returns false if the class has a dependent base or if it or one
6507 // of its bases is present in the base set of the current context.
6508 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6509 return false;
6510
6511 Diag(SS.getRange().getBegin(),
6512 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6513 << (NestedNameSpecifier*) SS.getScopeRep()
6514 << cast<CXXRecordDecl>(CurContext)
6515 << SS.getRange();
6516
6517 return true;
John McCalled976492009-12-04 22:46:56 +00006518}
6519
Richard Smith162e1c12011-04-15 14:24:37 +00006520Decl *Sema::ActOnAliasDeclaration(Scope *S,
6521 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006522 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006523 SourceLocation UsingLoc,
6524 UnqualifiedId &Name,
6525 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006526 // Skip up to the relevant declaration scope.
6527 while (S->getFlags() & Scope::TemplateParamScope)
6528 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006529 assert((S->getFlags() & Scope::DeclScope) &&
6530 "got alias-declaration outside of declaration scope");
6531
6532 if (Type.isInvalid())
6533 return 0;
6534
6535 bool Invalid = false;
6536 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6537 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006538 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006539
6540 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6541 return 0;
6542
6543 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006544 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006545 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006546 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6547 TInfo->getTypeLoc().getBeginLoc());
6548 }
Richard Smith162e1c12011-04-15 14:24:37 +00006549
6550 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6551 LookupName(Previous, S);
6552
6553 // Warn about shadowing the name of a template parameter.
6554 if (Previous.isSingleResult() &&
6555 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006556 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006557 Previous.clear();
6558 }
6559
6560 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6561 "name in alias declaration must be an identifier");
6562 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6563 Name.StartLocation,
6564 Name.Identifier, TInfo);
6565
6566 NewTD->setAccess(AS);
6567
6568 if (Invalid)
6569 NewTD->setInvalidDecl();
6570
Richard Smith3e4c6c42011-05-05 21:57:07 +00006571 CheckTypedefForVariablyModifiedType(S, NewTD);
6572 Invalid |= NewTD->isInvalidDecl();
6573
Richard Smith162e1c12011-04-15 14:24:37 +00006574 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006575
6576 NamedDecl *NewND;
6577 if (TemplateParamLists.size()) {
6578 TypeAliasTemplateDecl *OldDecl = 0;
6579 TemplateParameterList *OldTemplateParams = 0;
6580
6581 if (TemplateParamLists.size() != 1) {
6582 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006583 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6584 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006585 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006586 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006587
6588 // Only consider previous declarations in the same scope.
6589 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6590 /*ExplicitInstantiationOrSpecialization*/false);
6591 if (!Previous.empty()) {
6592 Redeclaration = true;
6593
6594 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6595 if (!OldDecl && !Invalid) {
6596 Diag(UsingLoc, diag::err_redefinition_different_kind)
6597 << Name.Identifier;
6598
6599 NamedDecl *OldD = Previous.getRepresentativeDecl();
6600 if (OldD->getLocation().isValid())
6601 Diag(OldD->getLocation(), diag::note_previous_definition);
6602
6603 Invalid = true;
6604 }
6605
6606 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6607 if (TemplateParameterListsAreEqual(TemplateParams,
6608 OldDecl->getTemplateParameters(),
6609 /*Complain=*/true,
6610 TPL_TemplateMatch))
6611 OldTemplateParams = OldDecl->getTemplateParameters();
6612 else
6613 Invalid = true;
6614
6615 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6616 if (!Invalid &&
6617 !Context.hasSameType(OldTD->getUnderlyingType(),
6618 NewTD->getUnderlyingType())) {
6619 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6620 // but we can't reasonably accept it.
6621 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6622 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6623 if (OldTD->getLocation().isValid())
6624 Diag(OldTD->getLocation(), diag::note_previous_definition);
6625 Invalid = true;
6626 }
6627 }
6628 }
6629
6630 // Merge any previous default template arguments into our parameters,
6631 // and check the parameter list.
6632 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6633 TPC_TypeAliasTemplate))
6634 return 0;
6635
6636 TypeAliasTemplateDecl *NewDecl =
6637 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6638 Name.Identifier, TemplateParams,
6639 NewTD);
6640
6641 NewDecl->setAccess(AS);
6642
6643 if (Invalid)
6644 NewDecl->setInvalidDecl();
6645 else if (OldDecl)
6646 NewDecl->setPreviousDeclaration(OldDecl);
6647
6648 NewND = NewDecl;
6649 } else {
6650 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6651 NewND = NewTD;
6652 }
Richard Smith162e1c12011-04-15 14:24:37 +00006653
6654 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006655 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006656
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006657 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006658 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006659}
6660
John McCalld226f652010-08-21 09:40:31 +00006661Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006662 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006663 SourceLocation AliasLoc,
6664 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006665 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006666 SourceLocation IdentLoc,
6667 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006668
Anders Carlsson81c85c42009-03-28 23:53:49 +00006669 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006670 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6671 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006672
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006673 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006674 NamedDecl *PrevDecl
6675 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6676 ForRedeclaration);
6677 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6678 PrevDecl = 0;
6679
6680 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006681 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006682 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006683 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006684 // FIXME: At some point, we'll want to create the (redundant)
6685 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006686 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006687 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006688 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006689 }
Mike Stump1eb44332009-09-09 15:08:12 +00006690
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006691 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6692 diag::err_redefinition_different_kind;
6693 Diag(AliasLoc, DiagID) << Alias;
6694 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006695 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006696 }
6697
John McCalla24dc2e2009-11-17 02:14:36 +00006698 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006699 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006700
John McCallf36e02d2009-10-09 21:13:30 +00006701 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006702 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006703 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006704 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006705 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006706 }
Mike Stump1eb44332009-09-09 15:08:12 +00006707
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006708 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006709 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006710 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006711 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006712
John McCall3dbd3d52010-02-16 06:53:13 +00006713 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006714 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006715}
6716
Douglas Gregor39957dc2010-05-01 15:04:51 +00006717namespace {
6718 /// \brief Scoped object used to handle the state changes required in Sema
6719 /// to implicitly define the body of a C++ member function;
6720 class ImplicitlyDefinedFunctionScope {
6721 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00006722 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00006723
6724 public:
6725 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00006726 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00006727 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00006728 S.PushFunctionScope();
6729 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
6730 }
6731
6732 ~ImplicitlyDefinedFunctionScope() {
6733 S.PopExpressionEvaluationContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00006734 S.PopFunctionScopeInfo();
Douglas Gregor39957dc2010-05-01 15:04:51 +00006735 }
6736 };
6737}
6738
Sean Hunt001cad92011-05-10 00:49:42 +00006739Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006740Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6741 CXXMethodDecl *MD) {
6742 CXXRecordDecl *ClassDecl = MD->getParent();
6743
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006744 // C++ [except.spec]p14:
6745 // An implicitly declared special member function (Clause 12) shall have an
6746 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006747 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006748 if (ClassDecl->isInvalidDecl())
6749 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006750
Sebastian Redl60618fa2011-03-12 11:50:43 +00006751 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006752 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6753 BEnd = ClassDecl->bases_end();
6754 B != BEnd; ++B) {
6755 if (B->isVirtual()) // Handled below.
6756 continue;
6757
Douglas Gregor18274032010-07-03 00:47:00 +00006758 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6759 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006760 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6761 // If this is a deleted function, add it anyway. This might be conformant
6762 // with the standard. This might not. I'm not sure. It might not matter.
6763 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006764 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006765 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006766 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006767
6768 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006769 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6770 BEnd = ClassDecl->vbases_end();
6771 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006772 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6773 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006774 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6775 // If this is a deleted function, add it anyway. This might be conformant
6776 // with the standard. This might not. I'm not sure. It might not matter.
6777 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006778 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006779 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006780 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006781
6782 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006783 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6784 FEnd = ClassDecl->field_end();
6785 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006786 if (F->hasInClassInitializer()) {
6787 if (Expr *E = F->getInClassInitializer())
6788 ExceptSpec.CalledExpr(E);
6789 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006790 // DR1351:
6791 // If the brace-or-equal-initializer of a non-static data member
6792 // invokes a defaulted default constructor of its class or of an
6793 // enclosing class in a potentially evaluated subexpression, the
6794 // program is ill-formed.
6795 //
6796 // This resolution is unworkable: the exception specification of the
6797 // default constructor can be needed in an unevaluated context, in
6798 // particular, in the operand of a noexcept-expression, and we can be
6799 // unable to compute an exception specification for an enclosed class.
6800 //
6801 // We do not allow an in-class initializer to require the evaluation
6802 // of the exception specification for any in-class initializer whose
6803 // definition is not lexically complete.
6804 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006805 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006806 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006807 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6808 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6809 // If this is a deleted function, add it anyway. This might be conformant
6810 // with the standard. This might not. I'm not sure. It might not matter.
6811 // In particular, the problem is that this function never gets called. It
6812 // might just be ill-formed because this function attempts to refer to
6813 // a deleted function here.
6814 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006815 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006816 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006817 }
John McCalle23cf432010-12-14 08:05:40 +00006818
Sean Hunt001cad92011-05-10 00:49:42 +00006819 return ExceptSpec;
6820}
6821
6822CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6823 CXXRecordDecl *ClassDecl) {
6824 // C++ [class.ctor]p5:
6825 // A default constructor for a class X is a constructor of class X
6826 // that can be called without an argument. If there is no
6827 // user-declared constructor for class X, a default constructor is
6828 // implicitly declared. An implicitly-declared default constructor
6829 // is an inline public member of its class.
6830 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6831 "Should not build implicit default constructor!");
6832
Richard Smith7756afa2012-06-10 05:43:50 +00006833 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6834 CXXDefaultConstructor,
6835 false);
6836
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006837 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006838 CanQualType ClassType
6839 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006840 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006841 DeclarationName Name
6842 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006843 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006844 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00006845 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00006846 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00006847 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006848 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006849 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006850 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00006851 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00006852
6853 // Build an exception specification pointing back at this constructor.
6854 FunctionProtoType::ExtProtoInfo EPI;
6855 EPI.ExceptionSpecType = EST_Unevaluated;
6856 EPI.ExceptionSpecDecl = DefaultCon;
6857 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
6858
Douglas Gregor18274032010-07-03 00:47:00 +00006859 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00006860 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6861
Douglas Gregor23c94db2010-07-02 17:43:08 +00006862 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00006863 PushOnScopeChains(DefaultCon, S, false);
6864 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00006865
Sean Hunte16da072011-10-10 06:18:57 +00006866 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00006867 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00006868
Douglas Gregor32df23e2010-07-01 22:02:46 +00006869 return DefaultCon;
6870}
6871
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006872void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6873 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00006874 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00006875 !Constructor->doesThisDeclarationHaveABody() &&
6876 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006877 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006878
Anders Carlssonf6513ed2010-04-23 16:04:08 +00006879 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00006880 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00006881
Douglas Gregor39957dc2010-05-01 15:04:51 +00006882 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006883 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00006884 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006885 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00006886 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00006887 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00006888 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006889 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00006890 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006891
6892 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00006893 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00006894
6895 Constructor->setUsed();
6896 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00006897
6898 if (ASTMutationListener *L = getASTMutationListener()) {
6899 L->CompletedImplicitDefinition(Constructor);
6900 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006901}
6902
Richard Smith7a614d82011-06-11 17:19:42 +00006903void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
6904 if (!D) return;
6905 AdjustDeclIfTemplate(D);
6906
6907 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00006908
Richard Smithb9d0b762012-07-27 04:22:15 +00006909 if (!ClassDecl->isDependentType())
6910 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00006911}
6912
Sebastian Redlf677ea32011-02-05 19:23:19 +00006913void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6914 // We start with an initial pass over the base classes to collect those that
6915 // inherit constructors from. If there are none, we can forgo all further
6916 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006917 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006918 BasesVector BasesToInheritFrom;
6919 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6920 BaseE = ClassDecl->bases_end();
6921 BaseIt != BaseE; ++BaseIt) {
6922 if (BaseIt->getInheritConstructors()) {
6923 QualType Base = BaseIt->getType();
6924 if (Base->isDependentType()) {
6925 // If we inherit constructors from anything that is dependent, just
6926 // abort processing altogether. We'll get another chance for the
6927 // instantiations.
6928 return;
6929 }
6930 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6931 }
6932 }
6933 if (BasesToInheritFrom.empty())
6934 return;
6935
6936 // Now collect the constructors that we already have in the current class.
6937 // Those take precedence over inherited constructors.
6938 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6939 // unless there is a user-declared constructor with the same signature in
6940 // the class where the using-declaration appears.
6941 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6942 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6943 CtorE = ClassDecl->ctor_end();
6944 CtorIt != CtorE; ++CtorIt) {
6945 ExistingConstructors.insert(
6946 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6947 }
6948
Sebastian Redlf677ea32011-02-05 19:23:19 +00006949 DeclarationName CreatedCtorName =
6950 Context.DeclarationNames.getCXXConstructorName(
6951 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6952
6953 // Now comes the true work.
6954 // First, we keep a map from constructor types to the base that introduced
6955 // them. Needed for finding conflicting constructors. We also keep the
6956 // actually inserted declarations in there, for pretty diagnostics.
6957 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6958 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6959 ConstructorToSourceMap InheritedConstructors;
6960 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6961 BaseE = BasesToInheritFrom.end();
6962 BaseIt != BaseE; ++BaseIt) {
6963 const RecordType *Base = *BaseIt;
6964 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6965 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6966 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6967 CtorE = BaseDecl->ctor_end();
6968 CtorIt != CtorE; ++CtorIt) {
6969 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00006970 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00006971 DeclarationName Name =
6972 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00006973 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
6974 LookupQualifiedName(Result, CurContext);
6975 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006976 SourceLocation UsingLoc = UD ? UD->getLocation() :
6977 ClassDecl->getLocation();
6978
6979 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6980 // from the class X named in the using-declaration consists of actual
6981 // constructors and notional constructors that result from the
6982 // transformation of defaulted parameters as follows:
6983 // - all non-template default constructors of X, and
6984 // - for each non-template constructor of X that has at least one
6985 // parameter with a default argument, the set of constructors that
6986 // results from omitting any ellipsis parameter specification and
6987 // successively omitting parameters with a default argument from the
6988 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00006989 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006990 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6991 const FunctionProtoType *BaseCtorType =
6992 BaseCtor->getType()->getAs<FunctionProtoType>();
6993
6994 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6995 maxParams = BaseCtor->getNumParams();
6996 params <= maxParams; ++params) {
6997 // Skip default constructors. They're never inherited.
6998 if (params == 0)
6999 continue;
7000 // Skip copy and move constructors for the same reason.
7001 if (CanBeCopyOrMove && params == 1)
7002 continue;
7003
7004 // Build up a function type for this particular constructor.
7005 // FIXME: The working paper does not consider that the exception spec
7006 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007007 // source. This code doesn't yet, either. When it does, this code will
7008 // need to be delayed until after exception specifications and in-class
7009 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007010 const Type *NewCtorType;
7011 if (params == maxParams)
7012 NewCtorType = BaseCtorType;
7013 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007014 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007015 for (unsigned i = 0; i < params; ++i) {
7016 Args.push_back(BaseCtorType->getArgType(i));
7017 }
7018 FunctionProtoType::ExtProtoInfo ExtInfo =
7019 BaseCtorType->getExtProtoInfo();
7020 ExtInfo.Variadic = false;
7021 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7022 Args.data(), params, ExtInfo)
7023 .getTypePtr();
7024 }
7025 const Type *CanonicalNewCtorType =
7026 Context.getCanonicalType(NewCtorType);
7027
7028 // Now that we have the type, first check if the class already has a
7029 // constructor with this signature.
7030 if (ExistingConstructors.count(CanonicalNewCtorType))
7031 continue;
7032
7033 // Then we check if we have already declared an inherited constructor
7034 // with this signature.
7035 std::pair<ConstructorToSourceMap::iterator, bool> result =
7036 InheritedConstructors.insert(std::make_pair(
7037 CanonicalNewCtorType,
7038 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7039 if (!result.second) {
7040 // Already in the map. If it came from a different class, that's an
7041 // error. Not if it's from the same.
7042 CanQualType PreviousBase = result.first->second.first;
7043 if (CanonicalBase != PreviousBase) {
7044 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7045 const CXXConstructorDecl *PrevBaseCtor =
7046 PrevCtor->getInheritedConstructor();
7047 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7048
7049 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7050 Diag(BaseCtor->getLocation(),
7051 diag::note_using_decl_constructor_conflict_current_ctor);
7052 Diag(PrevBaseCtor->getLocation(),
7053 diag::note_using_decl_constructor_conflict_previous_ctor);
7054 Diag(PrevCtor->getLocation(),
7055 diag::note_using_decl_constructor_conflict_previous_using);
7056 }
7057 continue;
7058 }
7059
7060 // OK, we're there, now add the constructor.
7061 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007062 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007063 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7064 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007065 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7066 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007067 /*ImplicitlyDeclared=*/true,
7068 // FIXME: Due to a defect in the standard, we treat inherited
7069 // constructors as constexpr even if that makes them ill-formed.
7070 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007071 NewCtor->setAccess(BaseCtor->getAccess());
7072
7073 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007074 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007075 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007076 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7077 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007078 /*IdentifierInfo=*/0,
7079 BaseCtorType->getArgType(i),
7080 /*TInfo=*/0, SC_None,
7081 SC_None, /*DefaultArg=*/0));
7082 }
David Blaikie4278c652011-09-21 18:16:56 +00007083 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007084 NewCtor->setInheritedConstructor(BaseCtor);
7085
Sebastian Redlf677ea32011-02-05 19:23:19 +00007086 ClassDecl->addDecl(NewCtor);
7087 result.first->second.second = NewCtor;
7088 }
7089 }
7090 }
7091}
7092
Sean Huntcb45a0f2011-05-12 22:46:25 +00007093Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007094Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7095 CXXRecordDecl *ClassDecl = MD->getParent();
7096
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007097 // C++ [except.spec]p14:
7098 // An implicitly declared special member function (Clause 12) shall have
7099 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007100 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007101 if (ClassDecl->isInvalidDecl())
7102 return ExceptSpec;
7103
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007104 // Direct base-class destructors.
7105 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7106 BEnd = ClassDecl->bases_end();
7107 B != BEnd; ++B) {
7108 if (B->isVirtual()) // Handled below.
7109 continue;
7110
7111 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007112 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007113 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007114 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007115
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007116 // Virtual base-class destructors.
7117 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7118 BEnd = ClassDecl->vbases_end();
7119 B != BEnd; ++B) {
7120 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007121 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007122 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007123 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007124
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007125 // Field destructors.
7126 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7127 FEnd = ClassDecl->field_end();
7128 F != FEnd; ++F) {
7129 if (const RecordType *RecordTy
7130 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007131 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007132 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007133 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007134
Sean Huntcb45a0f2011-05-12 22:46:25 +00007135 return ExceptSpec;
7136}
7137
7138CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7139 // C++ [class.dtor]p2:
7140 // If a class has no user-declared destructor, a destructor is
7141 // declared implicitly. An implicitly-declared destructor is an
7142 // inline public member of its class.
Sean Huntcb45a0f2011-05-12 22:46:25 +00007143
Douglas Gregor4923aa22010-07-02 20:37:36 +00007144 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007145 CanQualType ClassType
7146 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007147 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007148 DeclarationName Name
7149 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007150 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007151 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007152 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7153 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007154 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007155 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007156 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007157 Destructor->setImplicit();
7158 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007159
7160 // Build an exception specification pointing back at this destructor.
7161 FunctionProtoType::ExtProtoInfo EPI;
7162 EPI.ExceptionSpecType = EST_Unevaluated;
7163 EPI.ExceptionSpecDecl = Destructor;
7164 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7165
Douglas Gregor4923aa22010-07-02 20:37:36 +00007166 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007167 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007168
Douglas Gregor4923aa22010-07-02 20:37:36 +00007169 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007170 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007171 PushOnScopeChains(Destructor, S, false);
7172 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007173
Richard Smith9a561d52012-02-26 09:11:52 +00007174 AddOverriddenMethods(ClassDecl, Destructor);
7175
Richard Smith7d5088a2012-02-18 02:02:13 +00007176 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007177 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007178
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007179 return Destructor;
7180}
7181
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007182void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007183 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007184 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007185 !Destructor->doesThisDeclarationHaveABody() &&
7186 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007187 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007188 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007189 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007190
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007191 if (Destructor->isInvalidDecl())
7192 return;
7193
Douglas Gregor39957dc2010-05-01 15:04:51 +00007194 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007195
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007196 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007197 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7198 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007199
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007200 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007201 Diag(CurrentLocation, diag::note_member_synthesized_at)
7202 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7203
7204 Destructor->setInvalidDecl();
7205 return;
7206 }
7207
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007208 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007209 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007210 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007211 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007212 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007213
7214 if (ASTMutationListener *L = getASTMutationListener()) {
7215 L->CompletedImplicitDefinition(Destructor);
7216 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007217}
7218
Richard Smitha4156b82012-04-21 18:42:51 +00007219/// \brief Perform any semantic analysis which needs to be delayed until all
7220/// pending class member declarations have been parsed.
7221void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007222 // Perform any deferred checking of exception specifications for virtual
7223 // destructors.
7224 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7225 i != e; ++i) {
7226 const CXXDestructorDecl *Dtor =
7227 DelayedDestructorExceptionSpecChecks[i].first;
7228 assert(!Dtor->getParent()->isDependentType() &&
7229 "Should not ever add destructors of templates into the list.");
7230 CheckOverridingFunctionExceptionSpec(Dtor,
7231 DelayedDestructorExceptionSpecChecks[i].second);
7232 }
7233 DelayedDestructorExceptionSpecChecks.clear();
7234}
7235
Richard Smithb9d0b762012-07-27 04:22:15 +00007236void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7237 CXXDestructorDecl *Destructor) {
7238 assert(getLangOpts().CPlusPlus0x &&
7239 "adjusting dtor exception specs was introduced in c++11");
7240
Sebastian Redl0ee33912011-05-19 05:13:44 +00007241 // C++11 [class.dtor]p3:
7242 // A declaration of a destructor that does not have an exception-
7243 // specification is implicitly considered to have the same exception-
7244 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007245 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007246 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007247 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007248 return;
7249
Chandler Carruth3f224b22011-09-20 04:55:26 +00007250 // Replace the destructor's type, building off the existing one. Fortunately,
7251 // the only thing of interest in the destructor type is its extended info.
7252 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007253 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7254 EPI.ExceptionSpecType = EST_Unevaluated;
7255 EPI.ExceptionSpecDecl = Destructor;
7256 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007257
Sebastian Redl0ee33912011-05-19 05:13:44 +00007258 // FIXME: If the destructor has a body that could throw, and the newly created
7259 // spec doesn't allow exceptions, we should emit a warning, because this
7260 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007261 // However, we don't have a body or an exception specification yet, so it
7262 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007263}
7264
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007265/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007266/// \c To.
7267///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007268/// This routine is used to copy/move the members of a class with an
7269/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007270/// copied are arrays, this routine builds for loops to copy them.
7271///
7272/// \param S The Sema object used for type-checking.
7273///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007274/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007275///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007276/// \param T The type of the expressions being copied/moved. Both expressions
7277/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007278///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007279/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007280///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007281/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007282///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007283/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007284/// Otherwise, it's a non-static member subobject.
7285///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007286/// \param Copying Whether we're copying or moving.
7287///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007288/// \param Depth Internal parameter recording the depth of the recursion.
7289///
7290/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00007291static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00007292BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00007293 Expr *To, Expr *From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007294 bool CopyingBaseSubobject, bool Copying,
7295 unsigned Depth = 0) {
7296 // C++0x [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007297 // Each subobject is assigned in the manner appropriate to its type:
7298 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007299 // - if the subobject is of class type, as if by a call to operator= with
7300 // the subobject as the object expression and the corresponding
7301 // subobject of x as a single function argument (as if by explicit
7302 // qualification; that is, ignoring any possible virtual overriding
7303 // functions in more derived classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007304 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7305 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7306
7307 // Look for operator=.
7308 DeclarationName Name
7309 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7310 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7311 S.LookupQualifiedName(OpLookup, ClassDecl, false);
7312
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007313 // Filter out any result that isn't a copy/move-assignment operator.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007314 LookupResult::Filter F = OpLookup.makeFilter();
7315 while (F.hasNext()) {
7316 NamedDecl *D = F.next();
7317 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
Richard Smith1c931be2012-04-02 18:40:40 +00007318 if (Method->isCopyAssignmentOperator() ||
7319 (!Copying && Method->isMoveAssignmentOperator()))
Douglas Gregor06a9f362010-05-01 20:49:11 +00007320 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007321
Douglas Gregor06a9f362010-05-01 20:49:11 +00007322 F.erase();
John McCallb0207482010-03-16 06:11:48 +00007323 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007324 F.done();
7325
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007326 // Suppress the protected check (C++ [class.protected]) for each of the
7327 // assignment operators we found. This strange dance is required when
7328 // we're assigning via a base classes's copy-assignment operator. To
7329 // ensure that we're getting the right base class subobject (without
7330 // ambiguities), we need to cast "this" to that subobject type; to
7331 // ensure that we don't go through the virtual call mechanism, we need
7332 // to qualify the operator= name with the base class (see below). However,
7333 // this means that if the base class has a protected copy assignment
7334 // operator, the protected member access check will fail. So, we
7335 // rewrite "protected" access to "public" access in this case, since we
7336 // know by construction that we're calling from a derived class.
7337 if (CopyingBaseSubobject) {
7338 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7339 L != LEnd; ++L) {
7340 if (L.getAccess() == AS_protected)
7341 L.setAccess(AS_public);
7342 }
7343 }
7344
Douglas Gregor06a9f362010-05-01 20:49:11 +00007345 // Create the nested-name-specifier that will be used to qualify the
7346 // reference to operator=; this is required to suppress the virtual
7347 // call mechanism.
7348 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007349 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Douglas Gregorc34348a2011-02-24 17:54:50 +00007350 SS.MakeTrivial(S.Context,
7351 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007352 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007353 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007354
7355 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007356 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00007357 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007358 /*TemplateKWLoc=*/SourceLocation(),
7359 /*FirstQualifierInScope=*/0,
7360 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007361 /*TemplateArgs=*/0,
7362 /*SuppressQualifierCheck=*/true);
7363 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007364 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007365
7366 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007367
John McCall60d7b3a2010-08-24 06:29:42 +00007368 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007369 OpEqualRef.takeAs<Expr>(),
7370 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007371 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007372 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007373
7374 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007375 }
John McCallb0207482010-03-16 06:11:48 +00007376
Douglas Gregor06a9f362010-05-01 20:49:11 +00007377 // - if the subobject is of scalar type, the built-in assignment
7378 // operator is used.
7379 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
7380 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007381 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007382 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007383 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007384
7385 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007386 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007387
7388 // - if the subobject is an array, each element is assigned, in the
7389 // manner appropriate to the element type;
7390
7391 // Construct a loop over the array bounds, e.g.,
7392 //
7393 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7394 //
7395 // that will copy each of the array elements.
7396 QualType SizeType = S.Context.getSizeType();
7397
7398 // Create the iteration variable.
7399 IdentifierInfo *IterationVarName = 0;
7400 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007401 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007402 llvm::raw_svector_ostream OS(Str);
7403 OS << "__i" << Depth;
7404 IterationVarName = &S.Context.Idents.get(OS.str());
7405 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007406 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007407 IterationVarName, SizeType,
7408 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007409 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007410
7411 // Initialize the iteration variable to zero.
7412 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007413 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007414
7415 // Create a reference to the iteration variable; we'll use this several
7416 // times throughout.
7417 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007418 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007419 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007420 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7421 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7422
Douglas Gregor06a9f362010-05-01 20:49:11 +00007423 // Create the DeclStmt that holds the iteration variable.
7424 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
7425
7426 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00007427 llvm::APInt Upper
7428 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00007429 Expr *Comparison
Eli Friedman8c382062012-01-23 02:35:22 +00007430 = new (S.Context) BinaryOperator(IterationVarRefRVal,
John McCallf89e55a2010-11-18 06:31:45 +00007431 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7432 BO_NE, S.Context.BoolTy,
7433 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007434
7435 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007436 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00007437 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7438 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007439
7440 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007441 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007442 IterationVarRefRVal,
7443 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007444 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007445 IterationVarRefRVal,
7446 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007447 if (!Copying) // Cast to rvalue
7448 From = CastForMoving(S, From);
7449
7450 // Build the copy/move for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00007451 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
7452 To, From, CopyingBaseSubobject,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007453 Copying, Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00007454 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007455 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007456
7457 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007458 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007459 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007460 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007461 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007462}
7463
Richard Smithb9d0b762012-07-27 04:22:15 +00007464/// Determine whether an implicit copy assignment operator for ClassDecl has a
7465/// const argument.
7466/// FIXME: It ought to be possible to store this on the record.
7467static bool isImplicitCopyAssignmentArgConst(Sema &S,
7468 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007469 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007470 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007471
Douglas Gregord3c35902010-07-01 16:36:15 +00007472 // C++ [class.copy]p10:
7473 // If the class definition does not explicitly declare a copy
7474 // assignment operator, one is declared implicitly.
7475 // The implicitly-defined copy assignment operator for a class X
7476 // will have the form
7477 //
7478 // X& X::operator=(const X&)
7479 //
7480 // if
Douglas Gregord3c35902010-07-01 16:36:15 +00007481 // -- each direct base class B of X has a copy assignment operator
7482 // whose parameter is of type const B&, const volatile B& or B,
7483 // and
7484 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7485 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007486 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007487 // We'll handle this below
Richard Smithb9d0b762012-07-27 04:22:15 +00007488 if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00007489 continue;
7490
Douglas Gregord3c35902010-07-01 16:36:15 +00007491 assert(!Base->getType()->isDependentType() &&
7492 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007493 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007494 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7495 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007496 }
7497
Richard Smithebaf0e62011-10-18 20:49:44 +00007498 // In C++11, the above citation has "or virtual" added
Richard Smithb9d0b762012-07-27 04:22:15 +00007499 if (S.getLangOpts().CPlusPlus0x) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007500 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7501 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007502 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007503 assert(!Base->getType()->isDependentType() &&
7504 "Cannot generate implicit members for class with dependent bases.");
7505 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007506 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7507 false, 0))
7508 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007509 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007510 }
7511
7512 // -- for all the nonstatic data members of X that are of a class
7513 // type M (or array thereof), each such class type has a copy
7514 // assignment operator whose parameter is of type const M&,
7515 // const volatile M& or M.
7516 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7517 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007518 Field != FieldEnd; ++Field) {
7519 QualType FieldType = S.Context.getBaseElementType(Field->getType());
7520 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7521 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7522 false, 0))
7523 return false;
Douglas Gregord3c35902010-07-01 16:36:15 +00007524 }
7525
7526 // Otherwise, the implicitly declared copy assignment operator will
7527 // have the form
7528 //
7529 // X& X::operator=(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00007530
7531 return true;
7532}
7533
7534Sema::ImplicitExceptionSpecification
7535Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7536 CXXRecordDecl *ClassDecl = MD->getParent();
7537
7538 ImplicitExceptionSpecification ExceptSpec(*this);
7539 if (ClassDecl->isInvalidDecl())
7540 return ExceptSpec;
7541
7542 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7543 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7544 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7545
Douglas Gregorb87786f2010-07-01 17:48:08 +00007546 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007547 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007548 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007549
7550 // It is unspecified whether or not an implicit copy assignment operator
7551 // attempts to deduplicate calls to assignment operators of virtual bases are
7552 // made. As such, this exception specification is effectively unspecified.
7553 // Based on a similar decision made for constness in C++0x, we're erring on
7554 // the side of assuming such calls to be made regardless of whether they
7555 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007556 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7557 BaseEnd = ClassDecl->bases_end();
7558 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007559 if (Base->isVirtual())
7560 continue;
7561
Douglas Gregora376d102010-07-02 21:50:04 +00007562 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007563 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007564 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7565 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007566 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007567 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007568
7569 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7570 BaseEnd = ClassDecl->vbases_end();
7571 Base != BaseEnd; ++Base) {
7572 CXXRecordDecl *BaseClassDecl
7573 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7574 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7575 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007576 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007577 }
7578
Douglas Gregorb87786f2010-07-01 17:48:08 +00007579 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7580 FieldEnd = ClassDecl->field_end();
7581 Field != FieldEnd;
7582 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007583 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007584 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7585 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007586 LookupCopyingAssignment(FieldClassDecl,
7587 ArgQuals | FieldType.getCVRQualifiers(),
7588 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007589 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007590 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007591 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007592
Richard Smithb9d0b762012-07-27 04:22:15 +00007593 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007594}
7595
7596CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7597 // Note: The following rules are largely analoguous to the copy
7598 // constructor rules. Note that virtual bases are not taken into account
7599 // for determining the argument type of the operator. Note also that
7600 // operators taking an object instead of a reference are allowed.
7601
Sean Hunt30de05c2011-05-14 05:23:20 +00007602 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7603 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithb9d0b762012-07-27 04:22:15 +00007604 if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
Sean Hunt30de05c2011-05-14 05:23:20 +00007605 ArgType = ArgType.withConst();
7606 ArgType = Context.getLValueReferenceType(ArgType);
7607
Douglas Gregord3c35902010-07-01 16:36:15 +00007608 // An implicitly-declared copy assignment operator is an inline public
7609 // member of its class.
7610 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007611 SourceLocation ClassLoc = ClassDecl->getLocation();
7612 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007613 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007614 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007615 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007616 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007617 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007618 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007619 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007620 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007621 CopyAssignment->setImplicit();
7622 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007623
7624 // Build an exception specification pointing back at this member.
7625 FunctionProtoType::ExtProtoInfo EPI;
7626 EPI.ExceptionSpecType = EST_Unevaluated;
7627 EPI.ExceptionSpecDecl = CopyAssignment;
7628 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7629
Douglas Gregord3c35902010-07-01 16:36:15 +00007630 // Add the parameter to the operator.
7631 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007632 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007633 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007634 SC_None,
7635 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007636 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007637
Douglas Gregora376d102010-07-02 21:50:04 +00007638 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007639 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007640
Douglas Gregor23c94db2010-07-02 17:43:08 +00007641 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007642 PushOnScopeChains(CopyAssignment, S, false);
7643 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007644
Nico Weberafcc96a2012-01-23 03:19:29 +00007645 // C++0x [class.copy]p19:
7646 // .... If the class definition does not explicitly declare a copy
7647 // assignment operator, there is no user-declared move constructor, and
7648 // there is no user-declared move assignment operator, a copy assignment
7649 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007650 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007651 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007652
Douglas Gregord3c35902010-07-01 16:36:15 +00007653 AddOverriddenMethods(ClassDecl, CopyAssignment);
7654 return CopyAssignment;
7655}
7656
Douglas Gregor06a9f362010-05-01 20:49:11 +00007657void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7658 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007659 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007660 CopyAssignOperator->isOverloadedOperator() &&
7661 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007662 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7663 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007664 "DefineImplicitCopyAssignment called for wrong function");
7665
7666 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7667
7668 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7669 CopyAssignOperator->setInvalidDecl();
7670 return;
7671 }
7672
7673 CopyAssignOperator->setUsed();
7674
7675 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007676 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007677
7678 // C++0x [class.copy]p30:
7679 // The implicitly-defined or explicitly-defaulted copy assignment operator
7680 // for a non-union class X performs memberwise copy assignment of its
7681 // subobjects. The direct base classes of X are assigned first, in the
7682 // order of their declaration in the base-specifier-list, and then the
7683 // immediate non-static data members of X are assigned, in the order in
7684 // which they were declared in the class definition.
7685
7686 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007687 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007688
7689 // The parameter for the "other" object, which we are copying from.
7690 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7691 Qualifiers OtherQuals = Other->getType().getQualifiers();
7692 QualType OtherRefType = Other->getType();
7693 if (const LValueReferenceType *OtherRef
7694 = OtherRefType->getAs<LValueReferenceType>()) {
7695 OtherRefType = OtherRef->getPointeeType();
7696 OtherQuals = OtherRefType.getQualifiers();
7697 }
7698
7699 // Our location for everything implicitly-generated.
7700 SourceLocation Loc = CopyAssignOperator->getLocation();
7701
7702 // Construct a reference to the "other" object. We'll be using this
7703 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007704 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007705 assert(OtherRef && "Reference to parameter cannot fail!");
7706
7707 // Construct the "this" pointer. We'll be using this throughout the generated
7708 // ASTs.
7709 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7710 assert(This && "Reference to this cannot fail!");
7711
7712 // Assign base classes.
7713 bool Invalid = false;
7714 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7715 E = ClassDecl->bases_end(); Base != E; ++Base) {
7716 // Form the assignment:
7717 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7718 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007719 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007720 Invalid = true;
7721 continue;
7722 }
7723
John McCallf871d0c2010-08-07 06:22:56 +00007724 CXXCastPath BasePath;
7725 BasePath.push_back(Base);
7726
Douglas Gregor06a9f362010-05-01 20:49:11 +00007727 // Construct the "from" expression, which is an implicit cast to the
7728 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007729 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007730 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7731 CK_UncheckedDerivedToBase,
7732 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007733
7734 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007735 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007736
7737 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007738 To = ImpCastExprToType(To.take(),
7739 Context.getCVRQualifiedType(BaseType,
7740 CopyAssignOperator->getTypeQualifiers()),
7741 CK_UncheckedDerivedToBase,
7742 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007743
7744 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00007745 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007746 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007747 /*CopyingBaseSubobject=*/true,
7748 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007749 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007750 Diag(CurrentLocation, diag::note_member_synthesized_at)
7751 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7752 CopyAssignOperator->setInvalidDecl();
7753 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007754 }
7755
7756 // Success! Record the copy.
7757 Statements.push_back(Copy.takeAs<Expr>());
7758 }
7759
7760 // \brief Reference to the __builtin_memcpy function.
7761 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007762 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007763 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007764
7765 // Assign non-static members.
7766 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7767 FieldEnd = ClassDecl->field_end();
7768 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00007769 if (Field->isUnnamedBitfield())
7770 continue;
7771
Douglas Gregor06a9f362010-05-01 20:49:11 +00007772 // Check for members of reference type; we can't copy those.
7773 if (Field->getType()->isReferenceType()) {
7774 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7775 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
7776 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007777 Diag(CurrentLocation, diag::note_member_synthesized_at)
7778 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007779 Invalid = true;
7780 continue;
7781 }
7782
7783 // Check for members of const-qualified, non-class type.
7784 QualType BaseType = Context.getBaseElementType(Field->getType());
7785 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
7786 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
7787 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
7788 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007789 Diag(CurrentLocation, diag::note_member_synthesized_at)
7790 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007791 Invalid = true;
7792 continue;
7793 }
John McCallb77115d2011-06-17 00:18:42 +00007794
7795 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00007796 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
7797 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007798
7799 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00007800 if (FieldType->isIncompleteArrayType()) {
7801 assert(ClassDecl->hasFlexibleArrayMember() &&
7802 "Incomplete array type is not valid");
7803 continue;
7804 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007805
7806 // Build references to the field in the object we're copying from and to.
7807 CXXScopeSpec SS; // Intentionally empty
7808 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
7809 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00007810 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007811 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00007812 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00007813 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007814 SS, SourceLocation(), 0,
7815 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007816 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00007817 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007818 SS, SourceLocation(), 0,
7819 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007820 assert(!From.isInvalid() && "Implicit field reference cannot fail");
7821 assert(!To.isInvalid() && "Implicit field reference cannot fail");
7822
7823 // If the field should be copied with __builtin_memcpy rather than via
7824 // explicit assignments, do so. This optimization only applies for arrays
7825 // of scalars and arrays of class type with trivial copy-assignment
7826 // operators.
Fariborz Jahanian6b167f42011-08-09 00:26:11 +00007827 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007828 && BaseType.hasTrivialAssignment(Context, /*Copying=*/true)) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007829 // Compute the size of the memory buffer to be copied.
7830 QualType SizeType = Context.getSizeType();
7831 llvm::APInt Size(Context.getTypeSize(SizeType),
7832 Context.getTypeSizeInChars(BaseType).getQuantity());
7833 for (const ConstantArrayType *Array
7834 = Context.getAsConstantArrayType(FieldType);
7835 Array;
7836 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00007837 llvm::APInt ArraySize
7838 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007839 Size *= ArraySize;
7840 }
7841
7842 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00007843 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
7844 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007845
7846 bool NeedsCollectableMemCpy =
7847 (BaseType->isRecordType() &&
7848 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
7849
7850 if (NeedsCollectableMemCpy) {
7851 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00007852 // Create a reference to the __builtin_objc_memmove_collectable function.
7853 LookupResult R(*this,
7854 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007855 Loc, LookupOrdinaryName);
7856 LookupName(R, TUScope, true);
7857
7858 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
7859 if (!CollectableMemCpy) {
7860 // Something went horribly wrong earlier, and we will have
7861 // complained about it.
7862 Invalid = true;
7863 continue;
7864 }
7865
7866 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00007867 Context.BuiltinFnTy,
7868 VK_RValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007869 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
7870 }
7871 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007872 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00007873 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007874 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
7875 LookupOrdinaryName);
7876 LookupName(R, TUScope, true);
7877
7878 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
7879 if (!BuiltinMemCpy) {
7880 // Something went horribly wrong earlier, and we will have complained
7881 // about it.
7882 Invalid = true;
7883 continue;
7884 }
7885
7886 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00007887 Context.BuiltinFnTy,
7888 VK_RValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007889 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
7890 }
7891
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007892 SmallVector<Expr*, 8> CallArgs;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007893 CallArgs.push_back(To.takeAs<Expr>());
7894 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007895 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00007896 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007897 if (NeedsCollectableMemCpy)
7898 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007899 CollectableMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007900 Loc, CallArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00007901 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007902 else
7903 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00007904 BuiltinMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007905 Loc, CallArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00007906 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00007907
Douglas Gregor06a9f362010-05-01 20:49:11 +00007908 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7909 Statements.push_back(Call.takeAs<Expr>());
7910 continue;
7911 }
7912
7913 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00007914 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007915 To.get(), From.get(),
7916 /*CopyingBaseSubobject=*/false,
7917 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007918 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007919 Diag(CurrentLocation, diag::note_member_synthesized_at)
7920 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7921 CopyAssignOperator->setInvalidDecl();
7922 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007923 }
7924
7925 // Success! Record the copy.
7926 Statements.push_back(Copy.takeAs<Stmt>());
7927 }
7928
7929 if (!Invalid) {
7930 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00007931 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007932
John McCall60d7b3a2010-08-24 06:29:42 +00007933 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00007934 if (Return.isInvalid())
7935 Invalid = true;
7936 else {
7937 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007938
7939 if (Trap.hasErrorOccurred()) {
7940 Diag(CurrentLocation, diag::note_member_synthesized_at)
7941 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7942 Invalid = true;
7943 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007944 }
7945 }
7946
7947 if (Invalid) {
7948 CopyAssignOperator->setInvalidDecl();
7949 return;
7950 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007951
7952 StmtResult Body;
7953 {
7954 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007955 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00007956 /*isStmtExpr=*/false);
7957 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7958 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00007959 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007960
7961 if (ASTMutationListener *L = getASTMutationListener()) {
7962 L->CompletedImplicitDefinition(CopyAssignOperator);
7963 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007964}
7965
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007966Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007967Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
7968 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007969
Richard Smithb9d0b762012-07-27 04:22:15 +00007970 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007971 if (ClassDecl->isInvalidDecl())
7972 return ExceptSpec;
7973
7974 // C++0x [except.spec]p14:
7975 // An implicitly declared special member function (Clause 12) shall have an
7976 // exception-specification. [...]
7977
7978 // It is unspecified whether or not an implicit move assignment operator
7979 // attempts to deduplicate calls to assignment operators of virtual bases are
7980 // made. As such, this exception specification is effectively unspecified.
7981 // Based on a similar decision made for constness in C++0x, we're erring on
7982 // the side of assuming such calls to be made regardless of whether they
7983 // actually happen.
7984 // Note that a move constructor is not implicitly declared when there are
7985 // virtual bases, but it can still be user-declared and explicitly defaulted.
7986 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7987 BaseEnd = ClassDecl->bases_end();
7988 Base != BaseEnd; ++Base) {
7989 if (Base->isVirtual())
7990 continue;
7991
7992 CXXRecordDecl *BaseClassDecl
7993 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7994 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00007995 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007996 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007997 }
7998
7999 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8000 BaseEnd = ClassDecl->vbases_end();
8001 Base != BaseEnd; ++Base) {
8002 CXXRecordDecl *BaseClassDecl
8003 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8004 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008005 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008006 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008007 }
8008
8009 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8010 FieldEnd = ClassDecl->field_end();
8011 Field != FieldEnd;
8012 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008013 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008014 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008015 if (CXXMethodDecl *MoveAssign =
8016 LookupMovingAssignment(FieldClassDecl,
8017 FieldType.getCVRQualifiers(),
8018 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008019 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008020 }
8021 }
8022
8023 return ExceptSpec;
8024}
8025
Richard Smith1c931be2012-04-02 18:40:40 +00008026/// Determine whether the class type has any direct or indirect virtual base
8027/// classes which have a non-trivial move assignment operator.
8028static bool
8029hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8030 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8031 BaseEnd = ClassDecl->vbases_end();
8032 Base != BaseEnd; ++Base) {
8033 CXXRecordDecl *BaseClass =
8034 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8035
8036 // Try to declare the move assignment. If it would be deleted, then the
8037 // class does not have a non-trivial move assignment.
8038 if (BaseClass->needsImplicitMoveAssignment())
8039 S.DeclareImplicitMoveAssignment(BaseClass);
8040
8041 // If the class has both a trivial move assignment and a non-trivial move
8042 // assignment, hasTrivialMoveAssignment() is false.
8043 if (BaseClass->hasDeclaredMoveAssignment() &&
8044 !BaseClass->hasTrivialMoveAssignment())
8045 return true;
8046 }
8047
8048 return false;
8049}
8050
8051/// Determine whether the given type either has a move constructor or is
8052/// trivially copyable.
8053static bool
8054hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8055 Type = S.Context.getBaseElementType(Type);
8056
8057 // FIXME: Technically, non-trivially-copyable non-class types, such as
8058 // reference types, are supposed to return false here, but that appears
8059 // to be a standard defect.
8060 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Richard Smith5d59b792012-04-25 18:28:49 +00008061 if (!ClassDecl || !ClassDecl->getDefinition())
Richard Smith1c931be2012-04-02 18:40:40 +00008062 return true;
8063
8064 if (Type.isTriviallyCopyableType(S.Context))
8065 return true;
8066
8067 if (IsConstructor) {
8068 if (ClassDecl->needsImplicitMoveConstructor())
8069 S.DeclareImplicitMoveConstructor(ClassDecl);
8070 return ClassDecl->hasDeclaredMoveConstructor();
8071 }
8072
8073 if (ClassDecl->needsImplicitMoveAssignment())
8074 S.DeclareImplicitMoveAssignment(ClassDecl);
8075 return ClassDecl->hasDeclaredMoveAssignment();
8076}
8077
8078/// Determine whether all non-static data members and direct or virtual bases
8079/// of class \p ClassDecl have either a move operation, or are trivially
8080/// copyable.
8081static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8082 bool IsConstructor) {
8083 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8084 BaseEnd = ClassDecl->bases_end();
8085 Base != BaseEnd; ++Base) {
8086 if (Base->isVirtual())
8087 continue;
8088
8089 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8090 return false;
8091 }
8092
8093 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8094 BaseEnd = ClassDecl->vbases_end();
8095 Base != BaseEnd; ++Base) {
8096 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8097 return false;
8098 }
8099
8100 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8101 FieldEnd = ClassDecl->field_end();
8102 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008103 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008104 return false;
8105 }
8106
8107 return true;
8108}
8109
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008110CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008111 // C++11 [class.copy]p20:
8112 // If the definition of a class X does not explicitly declare a move
8113 // assignment operator, one will be implicitly declared as defaulted
8114 // if and only if:
8115 //
8116 // - [first 4 bullets]
8117 assert(ClassDecl->needsImplicitMoveAssignment());
8118
8119 // [Checked after we build the declaration]
8120 // - the move assignment operator would not be implicitly defined as
8121 // deleted,
8122
8123 // [DR1402]:
8124 // - X has no direct or indirect virtual base class with a non-trivial
8125 // move assignment operator, and
8126 // - each of X's non-static data members and direct or virtual base classes
8127 // has a type that either has a move assignment operator or is trivially
8128 // copyable.
8129 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8130 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8131 ClassDecl->setFailedImplicitMoveAssignment();
8132 return 0;
8133 }
8134
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008135 // Note: The following rules are largely analoguous to the move
8136 // constructor rules.
8137
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008138 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8139 QualType RetType = Context.getLValueReferenceType(ArgType);
8140 ArgType = Context.getRValueReferenceType(ArgType);
8141
8142 // An implicitly-declared move assignment operator is an inline public
8143 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008144 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8145 SourceLocation ClassLoc = ClassDecl->getLocation();
8146 DeclarationNameInfo NameInfo(Name, ClassLoc);
8147 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008148 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008149 /*TInfo=*/0, /*isStatic=*/false,
8150 /*StorageClassAsWritten=*/SC_None,
8151 /*isInline=*/true,
8152 /*isConstexpr=*/false,
8153 SourceLocation());
8154 MoveAssignment->setAccess(AS_public);
8155 MoveAssignment->setDefaulted();
8156 MoveAssignment->setImplicit();
8157 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8158
Richard Smithb9d0b762012-07-27 04:22:15 +00008159 // Build an exception specification pointing back at this member.
8160 FunctionProtoType::ExtProtoInfo EPI;
8161 EPI.ExceptionSpecType = EST_Unevaluated;
8162 EPI.ExceptionSpecDecl = MoveAssignment;
8163 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8164
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008165 // Add the parameter to the operator.
8166 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8167 ClassLoc, ClassLoc, /*Id=*/0,
8168 ArgType, /*TInfo=*/0,
8169 SC_None,
8170 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008171 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008172
8173 // Note that we have added this copy-assignment operator.
8174 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8175
8176 // C++0x [class.copy]p9:
8177 // If the definition of a class X does not explicitly declare a move
8178 // assignment operator, one will be implicitly declared as defaulted if and
8179 // only if:
8180 // [...]
8181 // - the move assignment operator would not be implicitly defined as
8182 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008183 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008184 // Cache this result so that we don't try to generate this over and over
8185 // on every lookup, leaking memory and wasting time.
8186 ClassDecl->setFailedImplicitMoveAssignment();
8187 return 0;
8188 }
8189
8190 if (Scope *S = getScopeForContext(ClassDecl))
8191 PushOnScopeChains(MoveAssignment, S, false);
8192 ClassDecl->addDecl(MoveAssignment);
8193
8194 AddOverriddenMethods(ClassDecl, MoveAssignment);
8195 return MoveAssignment;
8196}
8197
8198void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8199 CXXMethodDecl *MoveAssignOperator) {
8200 assert((MoveAssignOperator->isDefaulted() &&
8201 MoveAssignOperator->isOverloadedOperator() &&
8202 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008203 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8204 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008205 "DefineImplicitMoveAssignment called for wrong function");
8206
8207 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8208
8209 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8210 MoveAssignOperator->setInvalidDecl();
8211 return;
8212 }
8213
8214 MoveAssignOperator->setUsed();
8215
8216 ImplicitlyDefinedFunctionScope Scope(*this, MoveAssignOperator);
8217 DiagnosticErrorTrap Trap(Diags);
8218
8219 // C++0x [class.copy]p28:
8220 // The implicitly-defined or move assignment operator for a non-union class
8221 // X performs memberwise move assignment of its subobjects. The direct base
8222 // classes of X are assigned first, in the order of their declaration in the
8223 // base-specifier-list, and then the immediate non-static data members of X
8224 // are assigned, in the order in which they were declared in the class
8225 // definition.
8226
8227 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008228 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008229
8230 // The parameter for the "other" object, which we are move from.
8231 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8232 QualType OtherRefType = Other->getType()->
8233 getAs<RValueReferenceType>()->getPointeeType();
8234 assert(OtherRefType.getQualifiers() == 0 &&
8235 "Bad argument type of defaulted move assignment");
8236
8237 // Our location for everything implicitly-generated.
8238 SourceLocation Loc = MoveAssignOperator->getLocation();
8239
8240 // Construct a reference to the "other" object. We'll be using this
8241 // throughout the generated ASTs.
8242 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8243 assert(OtherRef && "Reference to parameter cannot fail!");
8244 // Cast to rvalue.
8245 OtherRef = CastForMoving(*this, OtherRef);
8246
8247 // Construct the "this" pointer. We'll be using this throughout the generated
8248 // ASTs.
8249 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8250 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008251
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008252 // Assign base classes.
8253 bool Invalid = false;
8254 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8255 E = ClassDecl->bases_end(); Base != E; ++Base) {
8256 // Form the assignment:
8257 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8258 QualType BaseType = Base->getType().getUnqualifiedType();
8259 if (!BaseType->isRecordType()) {
8260 Invalid = true;
8261 continue;
8262 }
8263
8264 CXXCastPath BasePath;
8265 BasePath.push_back(Base);
8266
8267 // Construct the "from" expression, which is an implicit cast to the
8268 // appropriately-qualified base type.
8269 Expr *From = OtherRef;
8270 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008271 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008272
8273 // Dereference "this".
8274 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8275
8276 // Implicitly cast "this" to the appropriately-qualified base type.
8277 To = ImpCastExprToType(To.take(),
8278 Context.getCVRQualifiedType(BaseType,
8279 MoveAssignOperator->getTypeQualifiers()),
8280 CK_UncheckedDerivedToBase,
8281 VK_LValue, &BasePath);
8282
8283 // Build the move.
8284 StmtResult Move = BuildSingleCopyAssign(*this, Loc, BaseType,
8285 To.get(), From,
8286 /*CopyingBaseSubobject=*/true,
8287 /*Copying=*/false);
8288 if (Move.isInvalid()) {
8289 Diag(CurrentLocation, diag::note_member_synthesized_at)
8290 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8291 MoveAssignOperator->setInvalidDecl();
8292 return;
8293 }
8294
8295 // Success! Record the move.
8296 Statements.push_back(Move.takeAs<Expr>());
8297 }
8298
8299 // \brief Reference to the __builtin_memcpy function.
8300 Expr *BuiltinMemCpyRef = 0;
8301 // \brief Reference to the __builtin_objc_memmove_collectable function.
8302 Expr *CollectableMemCpyRef = 0;
8303
8304 // Assign non-static members.
8305 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8306 FieldEnd = ClassDecl->field_end();
8307 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008308 if (Field->isUnnamedBitfield())
8309 continue;
8310
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008311 // Check for members of reference type; we can't move those.
8312 if (Field->getType()->isReferenceType()) {
8313 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8314 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8315 Diag(Field->getLocation(), diag::note_declared_at);
8316 Diag(CurrentLocation, diag::note_member_synthesized_at)
8317 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8318 Invalid = true;
8319 continue;
8320 }
8321
8322 // Check for members of const-qualified, non-class type.
8323 QualType BaseType = Context.getBaseElementType(Field->getType());
8324 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8325 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8326 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8327 Diag(Field->getLocation(), diag::note_declared_at);
8328 Diag(CurrentLocation, diag::note_member_synthesized_at)
8329 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8330 Invalid = true;
8331 continue;
8332 }
8333
8334 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008335 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8336 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008337
8338 QualType FieldType = Field->getType().getNonReferenceType();
8339 if (FieldType->isIncompleteArrayType()) {
8340 assert(ClassDecl->hasFlexibleArrayMember() &&
8341 "Incomplete array type is not valid");
8342 continue;
8343 }
8344
8345 // Build references to the field in the object we're copying from and to.
8346 CXXScopeSpec SS; // Intentionally empty
8347 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8348 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008349 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008350 MemberLookup.resolveKind();
8351 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8352 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008353 SS, SourceLocation(), 0,
8354 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008355 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8356 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008357 SS, SourceLocation(), 0,
8358 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008359 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8360 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8361
8362 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8363 "Member reference with rvalue base must be rvalue except for reference "
8364 "members, which aren't allowed for move assignment.");
8365
8366 // If the field should be copied with __builtin_memcpy rather than via
8367 // explicit assignments, do so. This optimization only applies for arrays
8368 // of scalars and arrays of class type with trivial move-assignment
8369 // operators.
8370 if (FieldType->isArrayType() && !FieldType.isVolatileQualified()
8371 && BaseType.hasTrivialAssignment(Context, /*Copying=*/false)) {
8372 // Compute the size of the memory buffer to be copied.
8373 QualType SizeType = Context.getSizeType();
8374 llvm::APInt Size(Context.getTypeSize(SizeType),
8375 Context.getTypeSizeInChars(BaseType).getQuantity());
8376 for (const ConstantArrayType *Array
8377 = Context.getAsConstantArrayType(FieldType);
8378 Array;
8379 Array = Context.getAsConstantArrayType(Array->getElementType())) {
8380 llvm::APInt ArraySize
8381 = Array->getSize().zextOrTrunc(Size.getBitWidth());
8382 Size *= ArraySize;
8383 }
8384
Douglas Gregor45d3d712011-09-01 02:09:07 +00008385 // Take the address of the field references for "from" and "to". We
8386 // directly construct UnaryOperators here because semantic analysis
8387 // does not permit us to take the address of an xvalue.
8388 From = new (Context) UnaryOperator(From.get(), UO_AddrOf,
8389 Context.getPointerType(From.get()->getType()),
8390 VK_RValue, OK_Ordinary, Loc);
8391 To = new (Context) UnaryOperator(To.get(), UO_AddrOf,
8392 Context.getPointerType(To.get()->getType()),
8393 VK_RValue, OK_Ordinary, Loc);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008394
8395 bool NeedsCollectableMemCpy =
8396 (BaseType->isRecordType() &&
8397 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
8398
8399 if (NeedsCollectableMemCpy) {
8400 if (!CollectableMemCpyRef) {
8401 // Create a reference to the __builtin_objc_memmove_collectable function.
8402 LookupResult R(*this,
8403 &Context.Idents.get("__builtin_objc_memmove_collectable"),
8404 Loc, LookupOrdinaryName);
8405 LookupName(R, TUScope, true);
8406
8407 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
8408 if (!CollectableMemCpy) {
8409 // Something went horribly wrong earlier, and we will have
8410 // complained about it.
8411 Invalid = true;
8412 continue;
8413 }
8414
8415 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00008416 Context.BuiltinFnTy,
8417 VK_RValue, Loc, 0).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008418 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
8419 }
8420 }
8421 // Create a reference to the __builtin_memcpy builtin function.
8422 else if (!BuiltinMemCpyRef) {
8423 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
8424 LookupOrdinaryName);
8425 LookupName(R, TUScope, true);
8426
8427 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
8428 if (!BuiltinMemCpy) {
8429 // Something went horribly wrong earlier, and we will have complained
8430 // about it.
8431 Invalid = true;
8432 continue;
8433 }
8434
8435 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
Eli Friedmana6c66ce2012-08-31 00:14:07 +00008436 Context.BuiltinFnTy,
8437 VK_RValue, Loc, 0).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008438 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
8439 }
8440
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008441 SmallVector<Expr*, 8> CallArgs;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008442 CallArgs.push_back(To.takeAs<Expr>());
8443 CallArgs.push_back(From.takeAs<Expr>());
8444 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
8445 ExprResult Call = ExprError();
8446 if (NeedsCollectableMemCpy)
8447 Call = ActOnCallExpr(/*Scope=*/0,
8448 CollectableMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008449 Loc, CallArgs,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008450 Loc);
8451 else
8452 Call = ActOnCallExpr(/*Scope=*/0,
8453 BuiltinMemCpyRef,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008454 Loc, CallArgs,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008455 Loc);
8456
8457 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
8458 Statements.push_back(Call.takeAs<Expr>());
8459 continue;
8460 }
8461
8462 // Build the move of this field.
8463 StmtResult Move = BuildSingleCopyAssign(*this, Loc, FieldType,
8464 To.get(), From.get(),
8465 /*CopyingBaseSubobject=*/false,
8466 /*Copying=*/false);
8467 if (Move.isInvalid()) {
8468 Diag(CurrentLocation, diag::note_member_synthesized_at)
8469 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8470 MoveAssignOperator->setInvalidDecl();
8471 return;
8472 }
8473
8474 // Success! Record the copy.
8475 Statements.push_back(Move.takeAs<Stmt>());
8476 }
8477
8478 if (!Invalid) {
8479 // Add a "return *this;"
8480 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8481
8482 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8483 if (Return.isInvalid())
8484 Invalid = true;
8485 else {
8486 Statements.push_back(Return.takeAs<Stmt>());
8487
8488 if (Trap.hasErrorOccurred()) {
8489 Diag(CurrentLocation, diag::note_member_synthesized_at)
8490 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8491 Invalid = true;
8492 }
8493 }
8494 }
8495
8496 if (Invalid) {
8497 MoveAssignOperator->setInvalidDecl();
8498 return;
8499 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008500
8501 StmtResult Body;
8502 {
8503 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008504 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008505 /*isStmtExpr=*/false);
8506 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8507 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008508 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8509
8510 if (ASTMutationListener *L = getASTMutationListener()) {
8511 L->CompletedImplicitDefinition(MoveAssignOperator);
8512 }
8513}
8514
Richard Smithb9d0b762012-07-27 04:22:15 +00008515/// Determine whether an implicit copy constructor for ClassDecl has a const
8516/// argument.
8517/// FIXME: It ought to be possible to store this on the record.
8518static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008519 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00008520 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008521
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008522 // C++ [class.copy]p5:
8523 // The implicitly-declared copy constructor for a class X will
8524 // have the form
8525 //
8526 // X::X(const X&)
8527 //
8528 // if
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008529 // -- each direct or virtual base class B of X has a copy
8530 // constructor whose first parameter is of type const B& or
8531 // const volatile B&, and
8532 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8533 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008534 Base != BaseEnd; ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008535 // Virtual bases are handled below.
8536 if (Base->isVirtual())
8537 continue;
Richard Smithb9d0b762012-07-27 04:22:15 +00008538
Douglas Gregor22584312010-07-02 23:41:54 +00008539 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008540 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008541 // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8542 // ambiguous, we should still produce a constructor with a const-qualified
8543 // parameter.
8544 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8545 return false;
Douglas Gregor598a8542010-07-01 18:27:03 +00008546 }
8547
8548 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8549 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008550 Base != BaseEnd; ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008551 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008552 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008553 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8554 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008555 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008556
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008557 // -- for all the nonstatic data members of X that are of a
8558 // class type M (or array thereof), each such class type
8559 // has a copy constructor whose first parameter is of type
8560 // const M& or const volatile M&.
8561 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8562 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008563 Field != FieldEnd; ++Field) {
8564 QualType FieldType = S.Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008565 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smithb9d0b762012-07-27 04:22:15 +00008566 if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8567 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008568 }
8569 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008570
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008571 // Otherwise, the implicitly declared copy constructor will have
8572 // the form
8573 //
8574 // X::X(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00008575
8576 return true;
8577}
8578
8579Sema::ImplicitExceptionSpecification
8580Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8581 CXXRecordDecl *ClassDecl = MD->getParent();
8582
8583 ImplicitExceptionSpecification ExceptSpec(*this);
8584 if (ClassDecl->isInvalidDecl())
8585 return ExceptSpec;
8586
8587 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8588 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8589 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8590
Douglas Gregor0d405db2010-07-01 20:59:04 +00008591 // C++ [except.spec]p14:
8592 // An implicitly declared special member function (Clause 12) shall have an
8593 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008594 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8595 BaseEnd = ClassDecl->bases_end();
8596 Base != BaseEnd;
8597 ++Base) {
8598 // Virtual bases are handled below.
8599 if (Base->isVirtual())
8600 continue;
8601
Douglas Gregor22584312010-07-02 23:41:54 +00008602 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008603 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008604 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008605 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008606 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008607 }
8608 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8609 BaseEnd = ClassDecl->vbases_end();
8610 Base != BaseEnd;
8611 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008612 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008613 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008614 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008615 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008616 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008617 }
8618 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8619 FieldEnd = ClassDecl->field_end();
8620 Field != FieldEnd;
8621 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008622 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008623 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8624 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008625 LookupCopyingConstructor(FieldClassDecl,
8626 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008627 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008628 }
8629 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008630
Richard Smithb9d0b762012-07-27 04:22:15 +00008631 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008632}
8633
8634CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8635 CXXRecordDecl *ClassDecl) {
8636 // C++ [class.copy]p4:
8637 // If the class definition does not explicitly declare a copy
8638 // constructor, one is declared implicitly.
8639
Sean Hunt49634cf2011-05-13 06:10:58 +00008640 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8641 QualType ArgType = ClassType;
Richard Smithb9d0b762012-07-27 04:22:15 +00008642 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
Sean Hunt49634cf2011-05-13 06:10:58 +00008643 if (Const)
8644 ArgType = ArgType.withConst();
8645 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008646
Richard Smith7756afa2012-06-10 05:43:50 +00008647 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8648 CXXCopyConstructor,
8649 Const);
8650
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008651 DeclarationName Name
8652 = Context.DeclarationNames.getCXXConstructorName(
8653 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008654 SourceLocation ClassLoc = ClassDecl->getLocation();
8655 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008656
8657 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008658 // member of its class.
8659 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008660 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008661 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008662 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008663 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008664 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008665 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008666
Richard Smithb9d0b762012-07-27 04:22:15 +00008667 // Build an exception specification pointing back at this member.
8668 FunctionProtoType::ExtProtoInfo EPI;
8669 EPI.ExceptionSpecType = EST_Unevaluated;
8670 EPI.ExceptionSpecDecl = CopyConstructor;
8671 CopyConstructor->setType(
8672 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8673
Douglas Gregor22584312010-07-02 23:41:54 +00008674 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008675 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8676
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008677 // Add the parameter to the constructor.
8678 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008679 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008680 /*IdentifierInfo=*/0,
8681 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008682 SC_None,
8683 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008684 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008685
Douglas Gregor23c94db2010-07-02 17:43:08 +00008686 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008687 PushOnScopeChains(CopyConstructor, S, false);
8688 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008689
Nico Weberafcc96a2012-01-23 03:19:29 +00008690 // C++11 [class.copy]p8:
8691 // ... If the class definition does not explicitly declare a copy
8692 // constructor, there is no user-declared move constructor, and there is no
8693 // user-declared move assignment operator, a copy constructor is implicitly
8694 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008695 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008696 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008697
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008698 return CopyConstructor;
8699}
8700
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008701void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008702 CXXConstructorDecl *CopyConstructor) {
8703 assert((CopyConstructor->isDefaulted() &&
8704 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008705 !CopyConstructor->doesThisDeclarationHaveABody() &&
8706 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008707 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008708
Anders Carlsson63010a72010-04-23 16:24:12 +00008709 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008710 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008711
Douglas Gregor39957dc2010-05-01 15:04:51 +00008712 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008713 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008714
Sean Huntcbb67482011-01-08 20:30:50 +00008715 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008716 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008717 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008718 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008719 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008720 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008721 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008722 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8723 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008724 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008725 /*isStmtExpr=*/false)
8726 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008727 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008728 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008729
8730 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008731 if (ASTMutationListener *L = getASTMutationListener()) {
8732 L->CompletedImplicitDefinition(CopyConstructor);
8733 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008734}
8735
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008736Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008737Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8738 CXXRecordDecl *ClassDecl = MD->getParent();
8739
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008740 // C++ [except.spec]p14:
8741 // An implicitly declared special member function (Clause 12) shall have an
8742 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008743 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008744 if (ClassDecl->isInvalidDecl())
8745 return ExceptSpec;
8746
8747 // Direct base-class constructors.
8748 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8749 BEnd = ClassDecl->bases_end();
8750 B != BEnd; ++B) {
8751 if (B->isVirtual()) // Handled below.
8752 continue;
8753
8754 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8755 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008756 CXXConstructorDecl *Constructor =
8757 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008758 // If this is a deleted function, add it anyway. This might be conformant
8759 // with the standard. This might not. I'm not sure. It might not matter.
8760 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008761 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008762 }
8763 }
8764
8765 // Virtual base-class constructors.
8766 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8767 BEnd = ClassDecl->vbases_end();
8768 B != BEnd; ++B) {
8769 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8770 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008771 CXXConstructorDecl *Constructor =
8772 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008773 // If this is a deleted function, add it anyway. This might be conformant
8774 // with the standard. This might not. I'm not sure. It might not matter.
8775 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008776 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008777 }
8778 }
8779
8780 // Field constructors.
8781 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8782 FEnd = ClassDecl->field_end();
8783 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008784 QualType FieldType = Context.getBaseElementType(F->getType());
8785 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8786 CXXConstructorDecl *Constructor =
8787 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008788 // If this is a deleted function, add it anyway. This might be conformant
8789 // with the standard. This might not. I'm not sure. It might not matter.
8790 // In particular, the problem is that this function never gets called. It
8791 // might just be ill-formed because this function attempts to refer to
8792 // a deleted function here.
8793 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008794 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008795 }
8796 }
8797
8798 return ExceptSpec;
8799}
8800
8801CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8802 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008803 // C++11 [class.copy]p9:
8804 // If the definition of a class X does not explicitly declare a move
8805 // constructor, one will be implicitly declared as defaulted if and only if:
8806 //
8807 // - [first 4 bullets]
8808 assert(ClassDecl->needsImplicitMoveConstructor());
8809
8810 // [Checked after we build the declaration]
8811 // - the move assignment operator would not be implicitly defined as
8812 // deleted,
8813
8814 // [DR1402]:
8815 // - each of X's non-static data members and direct or virtual base classes
8816 // has a type that either has a move constructor or is trivially copyable.
8817 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8818 ClassDecl->setFailedImplicitMoveConstructor();
8819 return 0;
8820 }
8821
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008822 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8823 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008824
Richard Smith7756afa2012-06-10 05:43:50 +00008825 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8826 CXXMoveConstructor,
8827 false);
8828
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008829 DeclarationName Name
8830 = Context.DeclarationNames.getCXXConstructorName(
8831 Context.getCanonicalType(ClassType));
8832 SourceLocation ClassLoc = ClassDecl->getLocation();
8833 DeclarationNameInfo NameInfo(Name, ClassLoc);
8834
8835 // C++0x [class.copy]p11:
8836 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008837 // member of its class.
8838 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008839 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008840 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008841 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008842 MoveConstructor->setAccess(AS_public);
8843 MoveConstructor->setDefaulted();
8844 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008845
Richard Smithb9d0b762012-07-27 04:22:15 +00008846 // Build an exception specification pointing back at this member.
8847 FunctionProtoType::ExtProtoInfo EPI;
8848 EPI.ExceptionSpecType = EST_Unevaluated;
8849 EPI.ExceptionSpecDecl = MoveConstructor;
8850 MoveConstructor->setType(
8851 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8852
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008853 // Add the parameter to the constructor.
8854 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8855 ClassLoc, ClassLoc,
8856 /*IdentifierInfo=*/0,
8857 ArgType, /*TInfo=*/0,
8858 SC_None,
8859 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008860 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008861
8862 // C++0x [class.copy]p9:
8863 // If the definition of a class X does not explicitly declare a move
8864 // constructor, one will be implicitly declared as defaulted if and only if:
8865 // [...]
8866 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008867 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008868 // Cache this result so that we don't try to generate this over and over
8869 // on every lookup, leaking memory and wasting time.
8870 ClassDecl->setFailedImplicitMoveConstructor();
8871 return 0;
8872 }
8873
8874 // Note that we have declared this constructor.
8875 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8876
8877 if (Scope *S = getScopeForContext(ClassDecl))
8878 PushOnScopeChains(MoveConstructor, S, false);
8879 ClassDecl->addDecl(MoveConstructor);
8880
8881 return MoveConstructor;
8882}
8883
8884void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8885 CXXConstructorDecl *MoveConstructor) {
8886 assert((MoveConstructor->isDefaulted() &&
8887 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008888 !MoveConstructor->doesThisDeclarationHaveABody() &&
8889 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008890 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8891
8892 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8893 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8894
8895 ImplicitlyDefinedFunctionScope Scope(*this, MoveConstructor);
8896 DiagnosticErrorTrap Trap(Diags);
8897
8898 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8899 Trap.hasErrorOccurred()) {
8900 Diag(CurrentLocation, diag::note_member_synthesized_at)
8901 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8902 MoveConstructor->setInvalidDecl();
8903 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008904 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008905 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8906 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008907 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008908 /*isStmtExpr=*/false)
8909 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008910 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008911 }
8912
8913 MoveConstructor->setUsed();
8914
8915 if (ASTMutationListener *L = getASTMutationListener()) {
8916 L->CompletedImplicitDefinition(MoveConstructor);
8917 }
8918}
8919
Douglas Gregore4e68d42012-02-15 19:33:52 +00008920bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8921 return FD->isDeleted() &&
8922 (FD->isDefaulted() || FD->isImplicit()) &&
8923 isa<CXXMethodDecl>(FD);
8924}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008925
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008926/// \brief Mark the call operator of the given lambda closure type as "used".
8927static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8928 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008929 = cast<CXXMethodDecl>(
8930 *Lambda->lookup(
8931 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008932 CallOperator->setReferenced();
8933 CallOperator->setUsed();
8934}
8935
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008936void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8937 SourceLocation CurrentLocation,
8938 CXXConversionDecl *Conv)
8939{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008940 CXXRecordDecl *Lambda = Conv->getParent();
8941
8942 // Make sure that the lambda call operator is marked used.
8943 markLambdaCallOperatorUsed(*this, Lambda);
8944
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008945 Conv->setUsed();
8946
8947 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8948 DiagnosticErrorTrap Trap(Diags);
8949
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008950 // Return the address of the __invoke function.
8951 DeclarationName InvokeName = &Context.Idents.get("__invoke");
8952 CXXMethodDecl *Invoke
8953 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
8954 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
8955 VK_LValue, Conv->getLocation()).take();
8956 assert(FunctionRef && "Can't refer to __invoke function?");
8957 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
8958 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
8959 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008960 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008961
8962 // Fill in the __invoke function with a dummy implementation. IR generation
8963 // will fill in the actual details.
8964 Invoke->setUsed();
8965 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00008966 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008967
8968 if (ASTMutationListener *L = getASTMutationListener()) {
8969 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008970 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008971 }
8972}
8973
8974void Sema::DefineImplicitLambdaToBlockPointerConversion(
8975 SourceLocation CurrentLocation,
8976 CXXConversionDecl *Conv)
8977{
8978 Conv->setUsed();
8979
8980 ImplicitlyDefinedFunctionScope Scope(*this, Conv);
8981 DiagnosticErrorTrap Trap(Diags);
8982
Douglas Gregorac1303e2012-02-22 05:02:47 +00008983 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008984 Expr *This = ActOnCXXThis(CurrentLocation).take();
8985 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008986
Eli Friedman23f02672012-03-01 04:01:32 +00008987 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
8988 Conv->getLocation(),
8989 Conv, DerefThis);
8990
8991 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
8992 // behavior. Note that only the general conversion function does this
8993 // (since it's unusable otherwise); in the case where we inline the
8994 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00008995 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00008996 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
8997 CK_CopyAndAutoreleaseBlockObject,
8998 BuildBlock.get(), 0, VK_RValue);
8999
9000 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009001 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009002 Conv->setInvalidDecl();
9003 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009004 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009005
Douglas Gregorac1303e2012-02-22 05:02:47 +00009006 // Create the return statement that returns the block from the conversion
9007 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009008 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009009 if (Return.isInvalid()) {
9010 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9011 Conv->setInvalidDecl();
9012 return;
9013 }
9014
9015 // Set the body of the conversion function.
9016 Stmt *ReturnS = Return.take();
9017 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9018 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009019 Conv->getLocation()));
9020
Douglas Gregorac1303e2012-02-22 05:02:47 +00009021 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009022 if (ASTMutationListener *L = getASTMutationListener()) {
9023 L->CompletedImplicitDefinition(Conv);
9024 }
9025}
9026
Douglas Gregorf52757d2012-03-10 06:53:13 +00009027/// \brief Determine whether the given list arguments contains exactly one
9028/// "real" (non-default) argument.
9029static bool hasOneRealArgument(MultiExprArg Args) {
9030 switch (Args.size()) {
9031 case 0:
9032 return false;
9033
9034 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009035 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009036 return false;
9037
9038 // fall through
9039 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009040 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009041 }
9042
9043 return false;
9044}
9045
John McCall60d7b3a2010-08-24 06:29:42 +00009046ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009047Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009048 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009049 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009050 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009051 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009052 unsigned ConstructKind,
9053 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009054 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009055
Douglas Gregor2f599792010-04-02 18:24:57 +00009056 // C++0x [class.copy]p34:
9057 // When certain criteria are met, an implementation is allowed to
9058 // omit the copy/move construction of a class object, even if the
9059 // copy/move constructor and/or destructor for the object have
9060 // side effects. [...]
9061 // - when a temporary class object that has not been bound to a
9062 // reference (12.2) would be copied/moved to a class object
9063 // with the same cv-unqualified type, the copy/move operation
9064 // can be omitted by constructing the temporary object
9065 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009066 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009067 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009068 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009069 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009070 }
Mike Stump1eb44332009-09-09 15:08:12 +00009071
9072 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009073 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009074 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009075}
9076
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009077/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9078/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009079ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009080Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9081 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009082 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009083 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009084 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009085 unsigned ConstructKind,
9086 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009087 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009088 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009089 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009090 HadMultipleCandidates, /*FIXME*/false,
9091 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009092 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9093 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009094}
9095
Mike Stump1eb44332009-09-09 15:08:12 +00009096bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009097 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009098 MultiExprArg Exprs,
9099 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009100 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009101 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009102 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009103 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009104 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009105 if (TempResult.isInvalid())
9106 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009107
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009108 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009109 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009110 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009111 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009112 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009113
Anders Carlssonfe2de492009-08-25 05:18:00 +00009114 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009115}
9116
John McCall68c6c9a2010-02-02 09:10:11 +00009117void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009118 if (VD->isInvalidDecl()) return;
9119
John McCall68c6c9a2010-02-02 09:10:11 +00009120 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009121 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009122 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009123 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009124
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009125 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009126 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009127 CheckDestructorAccess(VD->getLocation(), Destructor,
9128 PDiag(diag::err_access_dtor_var)
9129 << VD->getDeclName()
9130 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009131 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009132
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009133 if (!VD->hasGlobalStorage()) return;
9134
9135 // Emit warning for non-trivial dtor in global scope (a real global,
9136 // class-static, function-static).
9137 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9138
9139 // TODO: this should be re-enabled for static locals by !CXAAtExit
9140 if (!VD->isStaticLocal())
9141 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009142}
9143
Douglas Gregor39da0b82009-09-09 23:08:42 +00009144/// \brief Given a constructor and the set of arguments provided for the
9145/// constructor, convert the arguments and add any required default arguments
9146/// to form a proper call to this constructor.
9147///
9148/// \returns true if an error occurred, false otherwise.
9149bool
9150Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9151 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009152 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009153 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009154 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009155 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9156 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009157 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009158
9159 const FunctionProtoType *Proto
9160 = Constructor->getType()->getAs<FunctionProtoType>();
9161 assert(Proto && "Constructor without a prototype?");
9162 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009163
9164 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009165 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009166 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009167 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009168 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009169
9170 VariadicCallType CallType =
9171 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009172 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009173 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9174 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009175 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009176 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009177
9178 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9179
Richard Smith831421f2012-06-25 20:30:08 +00009180 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9181 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009182
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009183 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009184}
9185
Anders Carlsson20d45d22009-12-12 00:32:00 +00009186static inline bool
9187CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9188 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009189 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009190 if (isa<NamespaceDecl>(DC)) {
9191 return SemaRef.Diag(FnDecl->getLocation(),
9192 diag::err_operator_new_delete_declared_in_namespace)
9193 << FnDecl->getDeclName();
9194 }
9195
9196 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009197 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009198 return SemaRef.Diag(FnDecl->getLocation(),
9199 diag::err_operator_new_delete_declared_static)
9200 << FnDecl->getDeclName();
9201 }
9202
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009203 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009204}
9205
Anders Carlsson156c78e2009-12-13 17:53:43 +00009206static inline bool
9207CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9208 CanQualType ExpectedResultType,
9209 CanQualType ExpectedFirstParamType,
9210 unsigned DependentParamTypeDiag,
9211 unsigned InvalidParamTypeDiag) {
9212 QualType ResultType =
9213 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9214
9215 // Check that the result type is not dependent.
9216 if (ResultType->isDependentType())
9217 return SemaRef.Diag(FnDecl->getLocation(),
9218 diag::err_operator_new_delete_dependent_result_type)
9219 << FnDecl->getDeclName() << ExpectedResultType;
9220
9221 // Check that the result type is what we expect.
9222 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9223 return SemaRef.Diag(FnDecl->getLocation(),
9224 diag::err_operator_new_delete_invalid_result_type)
9225 << FnDecl->getDeclName() << ExpectedResultType;
9226
9227 // A function template must have at least 2 parameters.
9228 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9229 return SemaRef.Diag(FnDecl->getLocation(),
9230 diag::err_operator_new_delete_template_too_few_parameters)
9231 << FnDecl->getDeclName();
9232
9233 // The function decl must have at least 1 parameter.
9234 if (FnDecl->getNumParams() == 0)
9235 return SemaRef.Diag(FnDecl->getLocation(),
9236 diag::err_operator_new_delete_too_few_parameters)
9237 << FnDecl->getDeclName();
9238
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009239 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009240 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9241 if (FirstParamType->isDependentType())
9242 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9243 << FnDecl->getDeclName() << ExpectedFirstParamType;
9244
9245 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009246 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009247 ExpectedFirstParamType)
9248 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9249 << FnDecl->getDeclName() << ExpectedFirstParamType;
9250
9251 return false;
9252}
9253
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009254static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009255CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009256 // C++ [basic.stc.dynamic.allocation]p1:
9257 // A program is ill-formed if an allocation function is declared in a
9258 // namespace scope other than global scope or declared static in global
9259 // scope.
9260 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9261 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009262
9263 CanQualType SizeTy =
9264 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9265
9266 // C++ [basic.stc.dynamic.allocation]p1:
9267 // The return type shall be void*. The first parameter shall have type
9268 // std::size_t.
9269 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9270 SizeTy,
9271 diag::err_operator_new_dependent_param_type,
9272 diag::err_operator_new_param_type))
9273 return true;
9274
9275 // C++ [basic.stc.dynamic.allocation]p1:
9276 // The first parameter shall not have an associated default argument.
9277 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009278 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009279 diag::err_operator_new_default_arg)
9280 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9281
9282 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009283}
9284
9285static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009286CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
9287 // C++ [basic.stc.dynamic.deallocation]p1:
9288 // A program is ill-formed if deallocation functions are declared in a
9289 // namespace scope other than global scope or declared static in global
9290 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009291 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9292 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009293
9294 // C++ [basic.stc.dynamic.deallocation]p2:
9295 // Each deallocation function shall return void and its first parameter
9296 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009297 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9298 SemaRef.Context.VoidPtrTy,
9299 diag::err_operator_delete_dependent_param_type,
9300 diag::err_operator_delete_param_type))
9301 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009302
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009303 return false;
9304}
9305
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009306/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9307/// of this overloaded operator is well-formed. If so, returns false;
9308/// otherwise, emits appropriate diagnostics and returns true.
9309bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009310 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009311 "Expected an overloaded operator declaration");
9312
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009313 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9314
Mike Stump1eb44332009-09-09 15:08:12 +00009315 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009316 // The allocation and deallocation functions, operator new,
9317 // operator new[], operator delete and operator delete[], are
9318 // described completely in 3.7.3. The attributes and restrictions
9319 // found in the rest of this subclause do not apply to them unless
9320 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009321 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009322 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009323
Anders Carlssona3ccda52009-12-12 00:26:23 +00009324 if (Op == OO_New || Op == OO_Array_New)
9325 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009326
9327 // C++ [over.oper]p6:
9328 // An operator function shall either be a non-static member
9329 // function or be a non-member function and have at least one
9330 // parameter whose type is a class, a reference to a class, an
9331 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009332 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9333 if (MethodDecl->isStatic())
9334 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009335 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009336 } else {
9337 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009338 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9339 ParamEnd = FnDecl->param_end();
9340 Param != ParamEnd; ++Param) {
9341 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009342 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9343 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009344 ClassOrEnumParam = true;
9345 break;
9346 }
9347 }
9348
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009349 if (!ClassOrEnumParam)
9350 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009351 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009352 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009353 }
9354
9355 // C++ [over.oper]p8:
9356 // An operator function cannot have default arguments (8.3.6),
9357 // except where explicitly stated below.
9358 //
Mike Stump1eb44332009-09-09 15:08:12 +00009359 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009360 // (C++ [over.call]p1).
9361 if (Op != OO_Call) {
9362 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9363 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009364 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009365 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009366 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009367 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009368 }
9369 }
9370
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009371 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9372 { false, false, false }
9373#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9374 , { Unary, Binary, MemberOnly }
9375#include "clang/Basic/OperatorKinds.def"
9376 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009377
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009378 bool CanBeUnaryOperator = OperatorUses[Op][0];
9379 bool CanBeBinaryOperator = OperatorUses[Op][1];
9380 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009381
9382 // C++ [over.oper]p8:
9383 // [...] Operator functions cannot have more or fewer parameters
9384 // than the number required for the corresponding operator, as
9385 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009386 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009387 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009388 if (Op != OO_Call &&
9389 ((NumParams == 1 && !CanBeUnaryOperator) ||
9390 (NumParams == 2 && !CanBeBinaryOperator) ||
9391 (NumParams < 1) || (NumParams > 2))) {
9392 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009393 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009394 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009395 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009396 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009397 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009398 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009399 assert(CanBeBinaryOperator &&
9400 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009401 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009402 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009403
Chris Lattner416e46f2008-11-21 07:57:12 +00009404 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009405 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009406 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009407
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009408 // Overloaded operators other than operator() cannot be variadic.
9409 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009410 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009411 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009412 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009413 }
9414
9415 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009416 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9417 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009418 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009419 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009420 }
9421
9422 // C++ [over.inc]p1:
9423 // The user-defined function called operator++ implements the
9424 // prefix and postfix ++ operator. If this function is a member
9425 // function with no parameters, or a non-member function with one
9426 // parameter of class or enumeration type, it defines the prefix
9427 // increment operator ++ for objects of that type. If the function
9428 // is a member function with one parameter (which shall be of type
9429 // int) or a non-member function with two parameters (the second
9430 // of which shall be of type int), it defines the postfix
9431 // increment operator ++ for objects of that type.
9432 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9433 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9434 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009435 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009436 ParamIsInt = BT->getKind() == BuiltinType::Int;
9437
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009438 if (!ParamIsInt)
9439 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009440 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009441 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009442 }
9443
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009444 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009445}
Chris Lattner5a003a42008-12-17 07:09:26 +00009446
Sean Hunta6c058d2010-01-13 09:01:02 +00009447/// CheckLiteralOperatorDeclaration - Check whether the declaration
9448/// of this literal operator function is well-formed. If so, returns
9449/// false; otherwise, emits appropriate diagnostics and returns true.
9450bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009451 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009452 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9453 << FnDecl->getDeclName();
9454 return true;
9455 }
9456
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009457 if (FnDecl->isExternC()) {
9458 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9459 return true;
9460 }
9461
Sean Hunta6c058d2010-01-13 09:01:02 +00009462 bool Valid = false;
9463
Richard Smith36f5cfe2012-03-09 08:00:36 +00009464 // This might be the definition of a literal operator template.
9465 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9466 // This might be a specialization of a literal operator template.
9467 if (!TpDecl)
9468 TpDecl = FnDecl->getPrimaryTemplate();
9469
Sean Hunt216c2782010-04-07 23:11:06 +00009470 // template <char...> type operator "" name() is the only valid template
9471 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009472 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009473 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009474 // Must have only one template parameter
9475 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9476 if (Params->size() == 1) {
9477 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009478 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009479
Sean Hunt216c2782010-04-07 23:11:06 +00009480 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009481 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9482 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9483 Valid = true;
9484 }
9485 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009486 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009487 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009488 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9489
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009490 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009491
Sean Hunt30019c02010-04-07 22:57:35 +00009492 // unsigned long long int, long double, and any character type are allowed
9493 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009494 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9495 Context.hasSameType(T, Context.LongDoubleTy) ||
9496 Context.hasSameType(T, Context.CharTy) ||
9497 Context.hasSameType(T, Context.WCharTy) ||
9498 Context.hasSameType(T, Context.Char16Ty) ||
9499 Context.hasSameType(T, Context.Char32Ty)) {
9500 if (++Param == FnDecl->param_end())
9501 Valid = true;
9502 goto FinishedParams;
9503 }
9504
Sean Hunt30019c02010-04-07 22:57:35 +00009505 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009506 const PointerType *PT = T->getAs<PointerType>();
9507 if (!PT)
9508 goto FinishedParams;
9509 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009510 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009511 goto FinishedParams;
9512 T = T.getUnqualifiedType();
9513
9514 // Move on to the second parameter;
9515 ++Param;
9516
9517 // If there is no second parameter, the first must be a const char *
9518 if (Param == FnDecl->param_end()) {
9519 if (Context.hasSameType(T, Context.CharTy))
9520 Valid = true;
9521 goto FinishedParams;
9522 }
9523
9524 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9525 // are allowed as the first parameter to a two-parameter function
9526 if (!(Context.hasSameType(T, Context.CharTy) ||
9527 Context.hasSameType(T, Context.WCharTy) ||
9528 Context.hasSameType(T, Context.Char16Ty) ||
9529 Context.hasSameType(T, Context.Char32Ty)))
9530 goto FinishedParams;
9531
9532 // The second and final parameter must be an std::size_t
9533 T = (*Param)->getType().getUnqualifiedType();
9534 if (Context.hasSameType(T, Context.getSizeType()) &&
9535 ++Param == FnDecl->param_end())
9536 Valid = true;
9537 }
9538
9539 // FIXME: This diagnostic is absolutely terrible.
9540FinishedParams:
9541 if (!Valid) {
9542 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9543 << FnDecl->getDeclName();
9544 return true;
9545 }
9546
Richard Smitha9e88b22012-03-09 08:16:22 +00009547 // A parameter-declaration-clause containing a default argument is not
9548 // equivalent to any of the permitted forms.
9549 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9550 ParamEnd = FnDecl->param_end();
9551 Param != ParamEnd; ++Param) {
9552 if ((*Param)->hasDefaultArg()) {
9553 Diag((*Param)->getDefaultArgRange().getBegin(),
9554 diag::err_literal_operator_default_argument)
9555 << (*Param)->getDefaultArgRange();
9556 break;
9557 }
9558 }
9559
Richard Smith2fb4ae32012-03-08 02:39:21 +00009560 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009561 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9562 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009563 // C++11 [usrlit.suffix]p1:
9564 // Literal suffix identifiers that do not start with an underscore
9565 // are reserved for future standardization.
9566 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009567 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009568
Sean Hunta6c058d2010-01-13 09:01:02 +00009569 return false;
9570}
9571
Douglas Gregor074149e2009-01-05 19:45:36 +00009572/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9573/// linkage specification, including the language and (if present)
9574/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9575/// the location of the language string literal, which is provided
9576/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9577/// the '{' brace. Otherwise, this linkage specification does not
9578/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009579Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9580 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009581 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009582 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009583 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009584 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009585 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009586 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009587 Language = LinkageSpecDecl::lang_cxx;
9588 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009589 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009590 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009591 }
Mike Stump1eb44332009-09-09 15:08:12 +00009592
Chris Lattnercc98eac2008-12-17 07:13:27 +00009593 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009594
Douglas Gregor074149e2009-01-05 19:45:36 +00009595 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009596 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009597 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009598 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009599 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009600}
9601
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009602/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009603/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9604/// valid, it's the position of the closing '}' brace in a linkage
9605/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009606Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009607 Decl *LinkageSpec,
9608 SourceLocation RBraceLoc) {
9609 if (LinkageSpec) {
9610 if (RBraceLoc.isValid()) {
9611 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9612 LSDecl->setRBraceLoc(RBraceLoc);
9613 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009614 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009615 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009616 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009617}
9618
Douglas Gregord308e622009-05-18 20:51:54 +00009619/// \brief Perform semantic analysis for the variable declaration that
9620/// occurs within a C++ catch clause, returning the newly-created
9621/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009622VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009623 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009624 SourceLocation StartLoc,
9625 SourceLocation Loc,
9626 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009627 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009628 QualType ExDeclType = TInfo->getType();
9629
Sebastian Redl4b07b292008-12-22 19:15:10 +00009630 // Arrays and functions decay.
9631 if (ExDeclType->isArrayType())
9632 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9633 else if (ExDeclType->isFunctionType())
9634 ExDeclType = Context.getPointerType(ExDeclType);
9635
9636 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9637 // The exception-declaration shall not denote a pointer or reference to an
9638 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009639 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009640 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009641 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009642 Invalid = true;
9643 }
Douglas Gregord308e622009-05-18 20:51:54 +00009644
Sebastian Redl4b07b292008-12-22 19:15:10 +00009645 QualType BaseType = ExDeclType;
9646 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009647 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009648 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009649 BaseType = Ptr->getPointeeType();
9650 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009651 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009652 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009653 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009654 BaseType = Ref->getPointeeType();
9655 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009656 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009657 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009658 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009659 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009660 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009661
Mike Stump1eb44332009-09-09 15:08:12 +00009662 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009663 RequireNonAbstractType(Loc, ExDeclType,
9664 diag::err_abstract_type_in_decl,
9665 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009666 Invalid = true;
9667
John McCall5a180392010-07-24 00:37:23 +00009668 // Only the non-fragile NeXT runtime currently supports C++ catches
9669 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009670 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009671 QualType T = ExDeclType;
9672 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9673 T = RT->getPointeeType();
9674
9675 if (T->isObjCObjectType()) {
9676 Diag(Loc, diag::err_objc_object_catch);
9677 Invalid = true;
9678 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009679 // FIXME: should this be a test for macosx-fragile specifically?
9680 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009681 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009682 }
9683 }
9684
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009685 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9686 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009687 ExDecl->setExceptionVariable(true);
9688
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009689 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009690 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009691 Invalid = true;
9692
Douglas Gregorc41b8782011-07-06 18:14:43 +00009693 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009694 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009695 // C++ [except.handle]p16:
9696 // The object declared in an exception-declaration or, if the
9697 // exception-declaration does not specify a name, a temporary (12.2) is
9698 // copy-initialized (8.5) from the exception object. [...]
9699 // The object is destroyed when the handler exits, after the destruction
9700 // of any automatic objects initialized within the handler.
9701 //
9702 // We just pretend to initialize the object with itself, then make sure
9703 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009704 QualType initType = ExDeclType;
9705
9706 InitializedEntity entity =
9707 InitializedEntity::InitializeVariable(ExDecl);
9708 InitializationKind initKind =
9709 InitializationKind::CreateCopy(Loc, SourceLocation());
9710
9711 Expr *opaqueValue =
9712 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9713 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9714 ExprResult result = sequence.Perform(*this, entity, initKind,
9715 MultiExprArg(&opaqueValue, 1));
9716 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009717 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009718 else {
9719 // If the constructor used was non-trivial, set this as the
9720 // "initializer".
9721 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9722 if (!construct->getConstructor()->isTrivial()) {
9723 Expr *init = MaybeCreateExprWithCleanups(construct);
9724 ExDecl->setInit(init);
9725 }
9726
9727 // And make sure it's destructable.
9728 FinalizeVarWithDestructor(ExDecl, recordType);
9729 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009730 }
9731 }
9732
Douglas Gregord308e622009-05-18 20:51:54 +00009733 if (Invalid)
9734 ExDecl->setInvalidDecl();
9735
9736 return ExDecl;
9737}
9738
9739/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9740/// handler.
John McCalld226f652010-08-21 09:40:31 +00009741Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009742 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009743 bool Invalid = D.isInvalidType();
9744
9745 // Check for unexpanded parameter packs.
9746 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9747 UPPC_ExceptionType)) {
9748 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9749 D.getIdentifierLoc());
9750 Invalid = true;
9751 }
9752
Sebastian Redl4b07b292008-12-22 19:15:10 +00009753 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009754 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009755 LookupOrdinaryName,
9756 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009757 // The scope should be freshly made just for us. There is just no way
9758 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009759 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009760 if (PrevDecl->isTemplateParameter()) {
9761 // Maybe we will complain about the shadowed template parameter.
9762 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009763 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009764 }
9765 }
9766
Chris Lattnereaaebc72009-04-25 08:06:05 +00009767 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009768 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9769 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009770 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009771 }
9772
Douglas Gregor83cb9422010-09-09 17:09:21 +00009773 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009774 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009775 D.getIdentifierLoc(),
9776 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009777 if (Invalid)
9778 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009779
Sebastian Redl4b07b292008-12-22 19:15:10 +00009780 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009781 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009782 PushOnScopeChains(ExDecl, S);
9783 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009784 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009785
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009786 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009787 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009788}
Anders Carlssonfb311762009-03-14 00:25:26 +00009789
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009790Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009791 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009792 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009793 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009794 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009795
Richard Smithe3f470a2012-07-11 22:37:56 +00009796 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9797 return 0;
9798
9799 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9800 AssertMessage, RParenLoc, false);
9801}
9802
9803Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9804 Expr *AssertExpr,
9805 StringLiteral *AssertMessage,
9806 SourceLocation RParenLoc,
9807 bool Failed) {
9808 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9809 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009810 // In a static_assert-declaration, the constant-expression shall be a
9811 // constant expression that can be contextually converted to bool.
9812 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9813 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009814 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009815
Richard Smithdaaefc52011-12-14 23:32:26 +00009816 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009817 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009818 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009819 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009820 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009821
Richard Smithe3f470a2012-07-11 22:37:56 +00009822 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009823 llvm::SmallString<256> MsgBuffer;
9824 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009825 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009826 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009827 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009828 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009829 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009830 }
Mike Stump1eb44332009-09-09 15:08:12 +00009831
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009832 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009833 AssertExpr, AssertMessage, RParenLoc,
9834 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009835
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009836 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009837 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009838}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009839
Douglas Gregor1d869352010-04-07 16:53:43 +00009840/// \brief Perform semantic analysis of the given friend type declaration.
9841///
9842/// \returns A friend declaration that.
Abramo Bagnara0216df82011-10-29 20:52:52 +00009843FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation Loc,
9844 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009845 TypeSourceInfo *TSInfo) {
9846 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9847
9848 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009849 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009850
Richard Smith6b130222011-10-18 21:39:00 +00009851 // C++03 [class.friend]p2:
9852 // An elaborated-type-specifier shall be used in a friend declaration
9853 // for a class.*
9854 //
9855 // * The class-key of the elaborated-type-specifier is required.
9856 if (!ActiveTemplateInstantiations.empty()) {
9857 // Do not complain about the form of friend template types during
9858 // template instantiation; we will already have complained when the
9859 // template was declared.
9860 } else if (!T->isElaboratedTypeSpecifier()) {
9861 // If we evaluated the type to a record type, suggest putting
9862 // a tag in front.
9863 if (const RecordType *RT = T->getAs<RecordType>()) {
9864 RecordDecl *RD = RT->getDecl();
9865
9866 std::string InsertionText = std::string(" ") + RD->getKindName();
9867
9868 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009869 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009870 diag::warn_cxx98_compat_unelaborated_friend_type :
9871 diag::ext_unelaborated_friend_type)
9872 << (unsigned) RD->getTagKind()
9873 << T
9874 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9875 InsertionText);
9876 } else {
9877 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009878 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009879 diag::warn_cxx98_compat_nonclass_type_friend :
9880 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009881 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00009882 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009883 }
Richard Smith6b130222011-10-18 21:39:00 +00009884 } else if (T->getAs<EnumType>()) {
9885 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009886 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009887 diag::warn_cxx98_compat_enum_friend :
9888 diag::ext_enum_friend)
9889 << T
9890 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00009891 }
9892
Douglas Gregor06245bf2010-04-07 17:57:12 +00009893 // C++0x [class.friend]p3:
9894 // If the type specifier in a friend declaration designates a (possibly
9895 // cv-qualified) class type, that class is declared as a friend; otherwise,
9896 // the friend declaration is ignored.
9897
9898 // FIXME: C++0x has some syntactic restrictions on friend type declarations
9899 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00009900
Abramo Bagnara0216df82011-10-29 20:52:52 +00009901 return FriendDecl::Create(Context, CurContext, Loc, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009902}
9903
John McCall9a34edb2010-10-19 01:40:49 +00009904/// Handle a friend tag declaration where the scope specifier was
9905/// templated.
9906Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9907 unsigned TagSpec, SourceLocation TagLoc,
9908 CXXScopeSpec &SS,
9909 IdentifierInfo *Name, SourceLocation NameLoc,
9910 AttributeList *Attr,
9911 MultiTemplateParamsArg TempParamLists) {
9912 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9913
9914 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009915 bool Invalid = false;
9916
9917 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009918 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009919 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009920 TempParamLists.size(),
9921 /*friend*/ true,
9922 isExplicitSpecialization,
9923 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009924 if (TemplateParams->size() > 0) {
9925 // This is a declaration of a class template.
9926 if (Invalid)
9927 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009928
Eric Christopher4110e132011-07-21 05:34:24 +00009929 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9930 SS, Name, NameLoc, Attr,
9931 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009932 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009933 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009934 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009935 } else {
9936 // The "template<>" header is extraneous.
9937 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9938 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9939 isExplicitSpecialization = true;
9940 }
9941 }
9942
9943 if (Invalid) return 0;
9944
John McCall9a34edb2010-10-19 01:40:49 +00009945 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009946 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009947 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +00009948 isAllExplicitSpecializations = false;
9949 break;
9950 }
9951 }
9952
9953 // FIXME: don't ignore attributes.
9954
9955 // If it's explicit specializations all the way down, just forget
9956 // about the template header and build an appropriate non-templated
9957 // friend. TODO: for source fidelity, remember the headers.
9958 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009959 if (SS.isEmpty()) {
9960 bool Owned = false;
9961 bool IsDependent = false;
9962 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
9963 Attr, AS_public,
9964 /*ModulePrivateLoc=*/SourceLocation(),
9965 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +00009966 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009967 /*ScopedEnumUsesClassTag=*/false,
9968 /*UnderlyingType=*/TypeResult());
9969 }
9970
Douglas Gregor2494dd02011-03-01 01:34:45 +00009971 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00009972 ElaboratedTypeKeyword Keyword
9973 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009974 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00009975 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009976 if (T.isNull())
9977 return 0;
9978
9979 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
9980 if (isa<DependentNameType>(T)) {
9981 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009982 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00009983 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009984 TL.setNameLoc(NameLoc);
9985 } else {
9986 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +00009987 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00009988 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00009989 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
9990 }
9991
9992 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
9993 TSI, FriendLoc);
9994 Friend->setAccess(AS_public);
9995 CurContext->addDecl(Friend);
9996 return Friend;
9997 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +00009998
9999 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10000
10001
John McCall9a34edb2010-10-19 01:40:49 +000010002
10003 // Handle the case of a templated-scope friend class. e.g.
10004 // template <class T> class A<T>::B;
10005 // FIXME: we don't support these right now.
10006 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10007 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10008 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10009 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010010 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010011 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010012 TL.setNameLoc(NameLoc);
10013
10014 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10015 TSI, FriendLoc);
10016 Friend->setAccess(AS_public);
10017 Friend->setUnsupportedFriend(true);
10018 CurContext->addDecl(Friend);
10019 return Friend;
10020}
10021
10022
John McCalldd4a3b02009-09-16 22:47:08 +000010023/// Handle a friend type declaration. This works in tandem with
10024/// ActOnTag.
10025///
10026/// Notes on friend class templates:
10027///
10028/// We generally treat friend class declarations as if they were
10029/// declaring a class. So, for example, the elaborated type specifier
10030/// in a friend declaration is required to obey the restrictions of a
10031/// class-head (i.e. no typedefs in the scope chain), template
10032/// parameters are required to match up with simple template-ids, &c.
10033/// However, unlike when declaring a template specialization, it's
10034/// okay to refer to a template specialization without an empty
10035/// template parameter declaration, e.g.
10036/// friend class A<T>::B<unsigned>;
10037/// We permit this as a special case; if there are any template
10038/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010039/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010040Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010041 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010042 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010043
10044 assert(DS.isFriendSpecified());
10045 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10046
John McCalldd4a3b02009-09-16 22:47:08 +000010047 // Try to convert the decl specifier to a type. This works for
10048 // friend templates because ActOnTag never produces a ClassTemplateDecl
10049 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010050 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010051 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10052 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010053 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010054 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010055
Douglas Gregor6ccab972010-12-16 01:14:37 +000010056 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10057 return 0;
10058
John McCalldd4a3b02009-09-16 22:47:08 +000010059 // This is definitely an error in C++98. It's probably meant to
10060 // be forbidden in C++0x, too, but the specification is just
10061 // poorly written.
10062 //
10063 // The problem is with declarations like the following:
10064 // template <T> friend A<T>::foo;
10065 // where deciding whether a class C is a friend or not now hinges
10066 // on whether there exists an instantiation of A that causes
10067 // 'foo' to equal C. There are restrictions on class-heads
10068 // (which we declare (by fiat) elaborated friend declarations to
10069 // be) that makes this tractable.
10070 //
10071 // FIXME: handle "template <> friend class A<T>;", which
10072 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010073 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010074 Diag(Loc, diag::err_tagless_friend_type_template)
10075 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010076 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010077 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010078
John McCall02cace72009-08-28 07:59:38 +000010079 // C++98 [class.friend]p1: A friend of a class is a function
10080 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010081 // This is fixed in DR77, which just barely didn't make the C++03
10082 // deadline. It's also a very silly restriction that seriously
10083 // affects inner classes and which nobody else seems to implement;
10084 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010085 //
10086 // But note that we could warn about it: it's always useless to
10087 // friend one of your own members (it's not, however, worthless to
10088 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010089
John McCalldd4a3b02009-09-16 22:47:08 +000010090 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010091 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010092 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010093 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010094 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010095 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010096 DS.getFriendSpecLoc());
10097 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010098 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010099
10100 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010101 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010102
John McCalldd4a3b02009-09-16 22:47:08 +000010103 D->setAccess(AS_public);
10104 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010105
John McCalld226f652010-08-21 09:40:31 +000010106 return D;
John McCall02cace72009-08-28 07:59:38 +000010107}
10108
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010109Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010110 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010111 const DeclSpec &DS = D.getDeclSpec();
10112
10113 assert(DS.isFriendSpecified());
10114 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10115
10116 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010117 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010118
10119 // C++ [class.friend]p1
10120 // A friend of a class is a function or class....
10121 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010122 // It *doesn't* see through dependent types, which is correct
10123 // according to [temp.arg.type]p3:
10124 // If a declaration acquires a function type through a
10125 // type dependent on a template-parameter and this causes
10126 // a declaration that does not use the syntactic form of a
10127 // function declarator to have a function type, the program
10128 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010129 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010130 Diag(Loc, diag::err_unexpected_friend);
10131
10132 // It might be worthwhile to try to recover by creating an
10133 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010134 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010135 }
10136
10137 // C++ [namespace.memdef]p3
10138 // - If a friend declaration in a non-local class first declares a
10139 // class or function, the friend class or function is a member
10140 // of the innermost enclosing namespace.
10141 // - The name of the friend is not found by simple name lookup
10142 // until a matching declaration is provided in that namespace
10143 // scope (either before or after the class declaration granting
10144 // friendship).
10145 // - If a friend function is called, its name may be found by the
10146 // name lookup that considers functions from namespaces and
10147 // classes associated with the types of the function arguments.
10148 // - When looking for a prior declaration of a class or a function
10149 // declared as a friend, scopes outside the innermost enclosing
10150 // namespace scope are not considered.
10151
John McCall337ec3d2010-10-12 23:13:28 +000010152 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010153 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10154 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010155 assert(Name);
10156
Douglas Gregor6ccab972010-12-16 01:14:37 +000010157 // Check for unexpanded parameter packs.
10158 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10159 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10160 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10161 return 0;
10162
John McCall67d1a672009-08-06 02:15:43 +000010163 // The context we found the declaration in, or in which we should
10164 // create the declaration.
10165 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010166 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010167 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010168 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010169
John McCall337ec3d2010-10-12 23:13:28 +000010170 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010171
John McCall337ec3d2010-10-12 23:13:28 +000010172 // There are four cases here.
10173 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010174 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010175 // there as appropriate.
10176 // Recover from invalid scope qualifiers as if they just weren't there.
10177 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010178 // C++0x [namespace.memdef]p3:
10179 // If the name in a friend declaration is neither qualified nor
10180 // a template-id and the declaration is a function or an
10181 // elaborated-type-specifier, the lookup to determine whether
10182 // the entity has been previously declared shall not consider
10183 // any scopes outside the innermost enclosing namespace.
10184 // C++0x [class.friend]p11:
10185 // If a friend declaration appears in a local class and the name
10186 // specified is an unqualified name, a prior declaration is
10187 // looked up without considering scopes that are outside the
10188 // innermost enclosing non-class scope. For a friend function
10189 // declaration, if there is no prior declaration, the program is
10190 // ill-formed.
10191 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010192 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010193
John McCall29ae6e52010-10-13 05:45:15 +000010194 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010195 DC = CurContext;
10196 while (true) {
10197 // Skip class contexts. If someone can cite chapter and verse
10198 // for this behavior, that would be nice --- it's what GCC and
10199 // EDG do, and it seems like a reasonable intent, but the spec
10200 // really only says that checks for unqualified existing
10201 // declarations should stop at the nearest enclosing namespace,
10202 // not that they should only consider the nearest enclosing
10203 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010204 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010205 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010206
John McCall68263142009-11-18 22:49:29 +000010207 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010208
10209 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010210 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010211 break;
John McCall29ae6e52010-10-13 05:45:15 +000010212
John McCall8a407372010-10-14 22:22:28 +000010213 if (isTemplateId) {
10214 if (isa<TranslationUnitDecl>(DC)) break;
10215 } else {
10216 if (DC->isFileContext()) break;
10217 }
John McCall67d1a672009-08-06 02:15:43 +000010218 DC = DC->getParent();
10219 }
10220
10221 // C++ [class.friend]p1: A friend of a class is a function or
10222 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010223 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010224 // Most C++ 98 compilers do seem to give an error here, so
10225 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010226 if (!Previous.empty() && DC->Equals(CurContext))
10227 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010228 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010229 diag::warn_cxx98_compat_friend_is_member :
10230 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010231
John McCall380aaa42010-10-13 06:22:15 +000010232 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010233
Douglas Gregor883af832011-10-10 01:11:59 +000010234 // C++ [class.friend]p6:
10235 // A function can be defined in a friend declaration of a class if and
10236 // only if the class is a non-local class (9.8), the function name is
10237 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010238 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010239 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10240 }
10241
John McCall337ec3d2010-10-12 23:13:28 +000010242 // - There's a non-dependent scope specifier, in which case we
10243 // compute it and do a previous lookup there for a function
10244 // or function template.
10245 } else if (!SS.getScopeRep()->isDependent()) {
10246 DC = computeDeclContext(SS);
10247 if (!DC) return 0;
10248
10249 if (RequireCompleteDeclContext(SS, DC)) return 0;
10250
10251 LookupQualifiedName(Previous, DC);
10252
10253 // Ignore things found implicitly in the wrong scope.
10254 // TODO: better diagnostics for this case. Suggesting the right
10255 // qualified scope would be nice...
10256 LookupResult::Filter F = Previous.makeFilter();
10257 while (F.hasNext()) {
10258 NamedDecl *D = F.next();
10259 if (!DC->InEnclosingNamespaceSetOf(
10260 D->getDeclContext()->getRedeclContext()))
10261 F.erase();
10262 }
10263 F.done();
10264
10265 if (Previous.empty()) {
10266 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010267 Diag(Loc, diag::err_qualified_friend_not_found)
10268 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010269 return 0;
10270 }
10271
10272 // C++ [class.friend]p1: A friend of a class is a function or
10273 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010274 if (DC->Equals(CurContext))
10275 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010276 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010277 diag::warn_cxx98_compat_friend_is_member :
10278 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010279
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010280 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010281 // C++ [class.friend]p6:
10282 // A function can be defined in a friend declaration of a class if and
10283 // only if the class is a non-local class (9.8), the function name is
10284 // unqualified, and the function has namespace scope.
10285 SemaDiagnosticBuilder DB
10286 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10287
10288 DB << SS.getScopeRep();
10289 if (DC->isFileContext())
10290 DB << FixItHint::CreateRemoval(SS.getRange());
10291 SS.clear();
10292 }
John McCall337ec3d2010-10-12 23:13:28 +000010293
10294 // - There's a scope specifier that does not match any template
10295 // parameter lists, in which case we use some arbitrary context,
10296 // create a method or method template, and wait for instantiation.
10297 // - There's a scope specifier that does match some template
10298 // parameter lists, which we don't handle right now.
10299 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010300 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010301 // C++ [class.friend]p6:
10302 // A function can be defined in a friend declaration of a class if and
10303 // only if the class is a non-local class (9.8), the function name is
10304 // unqualified, and the function has namespace scope.
10305 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10306 << SS.getScopeRep();
10307 }
10308
John McCall337ec3d2010-10-12 23:13:28 +000010309 DC = CurContext;
10310 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010311 }
Douglas Gregor883af832011-10-10 01:11:59 +000010312
John McCall29ae6e52010-10-13 05:45:15 +000010313 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010314 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010315 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10316 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10317 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010318 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010319 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10320 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010321 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010322 }
John McCall67d1a672009-08-06 02:15:43 +000010323 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010324
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010325 // FIXME: This is an egregious hack to cope with cases where the scope stack
10326 // does not contain the declaration context, i.e., in an out-of-line
10327 // definition of a class.
10328 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10329 if (!DCScope) {
10330 FakeDCScope.setEntity(DC);
10331 DCScope = &FakeDCScope;
10332 }
10333
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010334 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010335 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010336 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010337 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010338
Douglas Gregor182ddf02009-09-28 00:08:27 +000010339 assert(ND->getDeclContext() == DC);
10340 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010341
John McCallab88d972009-08-31 22:39:49 +000010342 // Add the function declaration to the appropriate lookup tables,
10343 // adjusting the redeclarations list as necessary. We don't
10344 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010345 //
John McCallab88d972009-08-31 22:39:49 +000010346 // Also update the scope-based lookup if the target context's
10347 // lookup context is in lexical scope.
10348 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010349 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010350 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010351 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010352 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010353 }
John McCall02cace72009-08-28 07:59:38 +000010354
10355 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010356 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010357 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010358 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010359 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010360
John McCall1f2e1a92012-08-10 03:15:35 +000010361 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010362 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010363 } else {
10364 if (DC->isRecord()) CheckFriendAccess(ND);
10365
John McCall6102ca12010-10-16 06:59:13 +000010366 FunctionDecl *FD;
10367 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10368 FD = FTD->getTemplatedDecl();
10369 else
10370 FD = cast<FunctionDecl>(ND);
10371
10372 // Mark templated-scope function declarations as unsupported.
10373 if (FD->getNumTemplateParameterLists())
10374 FrD->setUnsupportedFriend(true);
10375 }
John McCall337ec3d2010-10-12 23:13:28 +000010376
John McCalld226f652010-08-21 09:40:31 +000010377 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010378}
10379
John McCalld226f652010-08-21 09:40:31 +000010380void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10381 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010382
Sebastian Redl50de12f2009-03-24 22:27:57 +000010383 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10384 if (!Fn) {
10385 Diag(DelLoc, diag::err_deleted_non_function);
10386 return;
10387 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010388 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010389 // Don't consider the implicit declaration we generate for explicit
10390 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010391 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10392 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010393 Diag(DelLoc, diag::err_deleted_decl_not_first);
10394 Diag(Prev->getLocation(), diag::note_previous_declaration);
10395 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010396 // If the declaration wasn't the first, we delete the function anyway for
10397 // recovery.
10398 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010399 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010400
10401 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10402 if (!MD)
10403 return;
10404
10405 // A deleted special member function is trivial if the corresponding
10406 // implicitly-declared function would have been.
10407 switch (getSpecialMember(MD)) {
10408 case CXXInvalid:
10409 break;
10410 case CXXDefaultConstructor:
10411 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10412 break;
10413 case CXXCopyConstructor:
10414 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10415 break;
10416 case CXXMoveConstructor:
10417 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10418 break;
10419 case CXXCopyAssignment:
10420 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10421 break;
10422 case CXXMoveAssignment:
10423 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10424 break;
10425 case CXXDestructor:
10426 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10427 break;
10428 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010429}
Sebastian Redl13e88542009-04-27 21:33:24 +000010430
Sean Hunte4246a62011-05-12 06:15:49 +000010431void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10432 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10433
10434 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010435 if (MD->getParent()->isDependentType()) {
10436 MD->setDefaulted();
10437 MD->setExplicitlyDefaulted();
10438 return;
10439 }
10440
Sean Hunte4246a62011-05-12 06:15:49 +000010441 CXXSpecialMember Member = getSpecialMember(MD);
10442 if (Member == CXXInvalid) {
10443 Diag(DefaultLoc, diag::err_default_special_members);
10444 return;
10445 }
10446
10447 MD->setDefaulted();
10448 MD->setExplicitlyDefaulted();
10449
Sean Huntcd10dec2011-05-23 23:14:04 +000010450 // If this definition appears within the record, do the checking when
10451 // the record is complete.
10452 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010453 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010454 // Find the uninstantiated declaration that actually had the '= default'
10455 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010456 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010457
10458 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010459 return;
10460
Richard Smithb9d0b762012-07-27 04:22:15 +000010461 CheckExplicitlyDefaultedSpecialMember(MD);
10462
Sean Hunte4246a62011-05-12 06:15:49 +000010463 switch (Member) {
10464 case CXXDefaultConstructor: {
10465 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010466 if (!CD->isInvalidDecl())
10467 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10468 break;
10469 }
10470
10471 case CXXCopyConstructor: {
10472 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010473 if (!CD->isInvalidDecl())
10474 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010475 break;
10476 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010477
Sean Hunt2b188082011-05-14 05:23:28 +000010478 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010479 if (!MD->isInvalidDecl())
10480 DefineImplicitCopyAssignment(DefaultLoc, MD);
10481 break;
10482 }
10483
Sean Huntcb45a0f2011-05-12 22:46:25 +000010484 case CXXDestructor: {
10485 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010486 if (!DD->isInvalidDecl())
10487 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010488 break;
10489 }
10490
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010491 case CXXMoveConstructor: {
10492 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010493 if (!CD->isInvalidDecl())
10494 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010495 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010496 }
Sean Hunt82713172011-05-25 23:16:36 +000010497
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010498 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010499 if (!MD->isInvalidDecl())
10500 DefineImplicitMoveAssignment(DefaultLoc, MD);
10501 break;
10502 }
10503
10504 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010505 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010506 }
10507 } else {
10508 Diag(DefaultLoc, diag::err_default_special_members);
10509 }
10510}
10511
Sebastian Redl13e88542009-04-27 21:33:24 +000010512static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010513 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010514 Stmt *SubStmt = *CI;
10515 if (!SubStmt)
10516 continue;
10517 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010518 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010519 diag::err_return_in_constructor_handler);
10520 if (!isa<Expr>(SubStmt))
10521 SearchForReturnInStmt(Self, SubStmt);
10522 }
10523}
10524
10525void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10526 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10527 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10528 SearchForReturnInStmt(*this, Handler);
10529 }
10530}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010531
Mike Stump1eb44332009-09-09 15:08:12 +000010532bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010533 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010534 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10535 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010536
Chandler Carruth73857792010-02-15 11:53:20 +000010537 if (Context.hasSameType(NewTy, OldTy) ||
10538 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010539 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010540
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010541 // Check if the return types are covariant
10542 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010543
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010544 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010545 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10546 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010547 NewClassTy = NewPT->getPointeeType();
10548 OldClassTy = OldPT->getPointeeType();
10549 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010550 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10551 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10552 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10553 NewClassTy = NewRT->getPointeeType();
10554 OldClassTy = OldRT->getPointeeType();
10555 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010556 }
10557 }
Mike Stump1eb44332009-09-09 15:08:12 +000010558
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010559 // The return types aren't either both pointers or references to a class type.
10560 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010561 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010562 diag::err_different_return_type_for_overriding_virtual_function)
10563 << New->getDeclName() << NewTy << OldTy;
10564 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010565
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010566 return true;
10567 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010568
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010569 // C++ [class.virtual]p6:
10570 // If the return type of D::f differs from the return type of B::f, the
10571 // class type in the return type of D::f shall be complete at the point of
10572 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010573 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10574 if (!RT->isBeingDefined() &&
10575 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010576 diag::err_covariant_return_incomplete,
10577 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010578 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010579 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010580
Douglas Gregora4923eb2009-11-16 21:35:15 +000010581 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010582 // Check if the new class derives from the old class.
10583 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10584 Diag(New->getLocation(),
10585 diag::err_covariant_return_not_derived)
10586 << New->getDeclName() << NewTy << OldTy;
10587 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10588 return true;
10589 }
Mike Stump1eb44332009-09-09 15:08:12 +000010590
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010591 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010592 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010593 diag::err_covariant_return_inaccessible_base,
10594 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10595 // FIXME: Should this point to the return type?
10596 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010597 // FIXME: this note won't trigger for delayed access control
10598 // diagnostics, and it's impossible to get an undelayed error
10599 // here from access control during the original parse because
10600 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010601 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10602 return true;
10603 }
10604 }
Mike Stump1eb44332009-09-09 15:08:12 +000010605
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010606 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010607 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010608 Diag(New->getLocation(),
10609 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010610 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010611 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10612 return true;
10613 };
Mike Stump1eb44332009-09-09 15:08:12 +000010614
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010615
10616 // The new class type must have the same or less qualifiers as the old type.
10617 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10618 Diag(New->getLocation(),
10619 diag::err_covariant_return_type_class_type_more_qualified)
10620 << New->getDeclName() << NewTy << OldTy;
10621 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10622 return true;
10623 };
Mike Stump1eb44332009-09-09 15:08:12 +000010624
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010625 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010626}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010627
Douglas Gregor4ba31362009-12-01 17:24:26 +000010628/// \brief Mark the given method pure.
10629///
10630/// \param Method the method to be marked pure.
10631///
10632/// \param InitRange the source range that covers the "0" initializer.
10633bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010634 SourceLocation EndLoc = InitRange.getEnd();
10635 if (EndLoc.isValid())
10636 Method->setRangeEnd(EndLoc);
10637
Douglas Gregor4ba31362009-12-01 17:24:26 +000010638 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10639 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010640 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010641 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010642
10643 if (!Method->isInvalidDecl())
10644 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10645 << Method->getDeclName() << InitRange;
10646 return true;
10647}
10648
Douglas Gregor552e2992012-02-21 02:22:07 +000010649/// \brief Determine whether the given declaration is a static data member.
10650static bool isStaticDataMember(Decl *D) {
10651 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10652 if (!Var)
10653 return false;
10654
10655 return Var->isStaticDataMember();
10656}
John McCall731ad842009-12-19 09:28:58 +000010657/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10658/// an initializer for the out-of-line declaration 'Dcl'. The scope
10659/// is a fresh scope pushed for just this purpose.
10660///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010661/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10662/// static data member of class X, names should be looked up in the scope of
10663/// class X.
John McCalld226f652010-08-21 09:40:31 +000010664void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010665 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010666 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010667
John McCall731ad842009-12-19 09:28:58 +000010668 // We should only get called for declarations with scope specifiers, like:
10669 // int foo::bar;
10670 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010671 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010672
10673 // If we are parsing the initializer for a static data member, push a
10674 // new expression evaluation context that is associated with this static
10675 // data member.
10676 if (isStaticDataMember(D))
10677 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010678}
10679
10680/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010681/// initializer for the out-of-line declaration 'D'.
10682void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010683 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010684 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010685
Douglas Gregor552e2992012-02-21 02:22:07 +000010686 if (isStaticDataMember(D))
10687 PopExpressionEvaluationContext();
10688
John McCall731ad842009-12-19 09:28:58 +000010689 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010690 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010691}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010692
10693/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10694/// C++ if/switch/while/for statement.
10695/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010696DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010697 // C++ 6.4p2:
10698 // The declarator shall not specify a function or an array.
10699 // The type-specifier-seq shall not contain typedef and shall not declare a
10700 // new class or enumeration.
10701 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10702 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010703
10704 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010705 if (!Dcl)
10706 return true;
10707
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010708 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10709 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010710 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010711 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010712 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010713
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010714 return Dcl;
10715}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010716
Douglas Gregordfe65432011-07-28 19:11:31 +000010717void Sema::LoadExternalVTableUses() {
10718 if (!ExternalSource)
10719 return;
10720
10721 SmallVector<ExternalVTableUse, 4> VTables;
10722 ExternalSource->ReadUsedVTables(VTables);
10723 SmallVector<VTableUse, 4> NewUses;
10724 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10725 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10726 = VTablesUsed.find(VTables[I].Record);
10727 // Even if a definition wasn't required before, it may be required now.
10728 if (Pos != VTablesUsed.end()) {
10729 if (!Pos->second && VTables[I].DefinitionRequired)
10730 Pos->second = true;
10731 continue;
10732 }
10733
10734 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10735 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10736 }
10737
10738 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10739}
10740
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010741void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10742 bool DefinitionRequired) {
10743 // Ignore any vtable uses in unevaluated operands or for classes that do
10744 // not have a vtable.
10745 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10746 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010747 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010748 return;
10749
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010750 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010751 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010752 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10753 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10754 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10755 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010756 // If we already had an entry, check to see if we are promoting this vtable
10757 // to required a definition. If so, we need to reappend to the VTableUses
10758 // list, since we may have already processed the first entry.
10759 if (DefinitionRequired && !Pos.first->second) {
10760 Pos.first->second = true;
10761 } else {
10762 // Otherwise, we can early exit.
10763 return;
10764 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010765 }
10766
10767 // Local classes need to have their virtual members marked
10768 // immediately. For all other classes, we mark their virtual members
10769 // at the end of the translation unit.
10770 if (Class->isLocalClass())
10771 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010772 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010773 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010774}
10775
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010776bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010777 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010778 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010779 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010780
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010781 // Note: The VTableUses vector could grow as a result of marking
10782 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010783 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010784 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010785 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010786 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010787 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010788 if (!Class)
10789 continue;
10790
10791 SourceLocation Loc = VTableUses[I].second;
10792
Richard Smithb9d0b762012-07-27 04:22:15 +000010793 bool DefineVTable = true;
10794
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010795 // If this class has a key function, but that key function is
10796 // defined in another translation unit, we don't need to emit the
10797 // vtable even though we're using it.
10798 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010799 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010800 switch (KeyFunction->getTemplateSpecializationKind()) {
10801 case TSK_Undeclared:
10802 case TSK_ExplicitSpecialization:
10803 case TSK_ExplicitInstantiationDeclaration:
10804 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010805 DefineVTable = false;
10806 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010807
10808 case TSK_ExplicitInstantiationDefinition:
10809 case TSK_ImplicitInstantiation:
10810 // We will be instantiating the key function.
10811 break;
10812 }
10813 } else if (!KeyFunction) {
10814 // If we have a class with no key function that is the subject
10815 // of an explicit instantiation declaration, suppress the
10816 // vtable; it will live with the explicit instantiation
10817 // definition.
10818 bool IsExplicitInstantiationDeclaration
10819 = Class->getTemplateSpecializationKind()
10820 == TSK_ExplicitInstantiationDeclaration;
10821 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10822 REnd = Class->redecls_end();
10823 R != REnd; ++R) {
10824 TemplateSpecializationKind TSK
10825 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10826 if (TSK == TSK_ExplicitInstantiationDeclaration)
10827 IsExplicitInstantiationDeclaration = true;
10828 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10829 IsExplicitInstantiationDeclaration = false;
10830 break;
10831 }
10832 }
10833
10834 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010835 DefineVTable = false;
10836 }
10837
10838 // The exception specifications for all virtual members may be needed even
10839 // if we are not providing an authoritative form of the vtable in this TU.
10840 // We may choose to emit it available_externally anyway.
10841 if (!DefineVTable) {
10842 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10843 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010844 }
10845
10846 // Mark all of the virtual members of this class as referenced, so
10847 // that we can build a vtable. Then, tell the AST consumer that a
10848 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010849 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010850 MarkVirtualMembersReferenced(Loc, Class);
10851 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10852 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10853
10854 // Optionally warn if we're emitting a weak vtable.
10855 if (Class->getLinkage() == ExternalLinkage &&
10856 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010857 const FunctionDecl *KeyFunctionDef = 0;
10858 if (!KeyFunction ||
10859 (KeyFunction->hasBody(KeyFunctionDef) &&
10860 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010861 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10862 TSK_ExplicitInstantiationDefinition
10863 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10864 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010865 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010866 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010867 VTableUses.clear();
10868
Douglas Gregor78844032011-04-22 22:25:37 +000010869 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010870}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010871
Richard Smithb9d0b762012-07-27 04:22:15 +000010872void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10873 const CXXRecordDecl *RD) {
10874 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10875 E = RD->method_end(); I != E; ++I)
10876 if ((*I)->isVirtual() && !(*I)->isPure())
10877 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10878}
10879
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010880void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10881 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010882 // Mark all functions which will appear in RD's vtable as used.
10883 CXXFinalOverriderMap FinalOverriders;
10884 RD->getFinalOverriders(FinalOverriders);
10885 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10886 E = FinalOverriders.end();
10887 I != E; ++I) {
10888 for (OverridingMethods::const_iterator OI = I->second.begin(),
10889 OE = I->second.end();
10890 OI != OE; ++OI) {
10891 assert(OI->second.size() > 0 && "no final overrider");
10892 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010893
Richard Smithff817f72012-07-07 06:59:51 +000010894 // C++ [basic.def.odr]p2:
10895 // [...] A virtual member function is used if it is not pure. [...]
10896 if (!Overrider->isPure())
10897 MarkFunctionReferenced(Loc, Overrider);
10898 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010899 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010900
10901 // Only classes that have virtual bases need a VTT.
10902 if (RD->getNumVBases() == 0)
10903 return;
10904
10905 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10906 e = RD->bases_end(); i != e; ++i) {
10907 const CXXRecordDecl *Base =
10908 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010909 if (Base->getNumVBases() == 0)
10910 continue;
10911 MarkVirtualMembersReferenced(Loc, Base);
10912 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010913}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010914
10915/// SetIvarInitializers - This routine builds initialization ASTs for the
10916/// Objective-C implementation whose ivars need be initialized.
10917void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010918 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010919 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010920 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010921 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010922 CollectIvarsToConstructOrDestruct(OID, ivars);
10923 if (ivars.empty())
10924 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010925 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010926 for (unsigned i = 0; i < ivars.size(); i++) {
10927 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010928 if (Field->isInvalidDecl())
10929 continue;
10930
Sean Huntcbb67482011-01-08 20:30:50 +000010931 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010932 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10933 InitializationKind InitKind =
10934 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10935
10936 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010937 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010938 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010939 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010940 // Note, MemberInit could actually come back empty if no initialization
10941 // is required (e.g., because it would call a trivial default constructor)
10942 if (!MemberInit.get() || MemberInit.isInvalid())
10943 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010944
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010945 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010946 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10947 SourceLocation(),
10948 MemberInit.takeAs<Expr>(),
10949 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010950 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010951
10952 // Be sure that the destructor is accessible and is marked as referenced.
10953 if (const RecordType *RecordTy
10954 = Context.getBaseElementType(Field->getType())
10955 ->getAs<RecordType>()) {
10956 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000010957 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010958 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010959 CheckDestructorAccess(Field->getLocation(), Destructor,
10960 PDiag(diag::err_access_dtor_ivar)
10961 << Context.getBaseElementType(Field->getType()));
10962 }
10963 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010964 }
10965 ObjCImplementation->setIvarInitializers(Context,
10966 AllToInit.data(), AllToInit.size());
10967 }
10968}
Sean Huntfe57eef2011-05-04 05:57:24 +000010969
Sean Huntebcbe1d2011-05-04 23:29:54 +000010970static
10971void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
10972 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
10973 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
10974 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
10975 Sema &S) {
10976 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
10977 CE = Current.end();
10978 if (Ctor->isInvalidDecl())
10979 return;
10980
Richard Smitha8eaf002012-08-23 06:16:52 +000010981 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
10982
10983 // Target may not be determinable yet, for instance if this is a dependent
10984 // call in an uninstantiated template.
10985 if (Target) {
10986 const FunctionDecl *FNTarget = 0;
10987 (void)Target->hasBody(FNTarget);
10988 Target = const_cast<CXXConstructorDecl*>(
10989 cast_or_null<CXXConstructorDecl>(FNTarget));
10990 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000010991
10992 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
10993 // Avoid dereferencing a null pointer here.
10994 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
10995
10996 if (!Current.insert(Canonical))
10997 return;
10998
10999 // We know that beyond here, we aren't chaining into a cycle.
11000 if (!Target || !Target->isDelegatingConstructor() ||
11001 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11002 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11003 Valid.insert(*CI);
11004 Current.clear();
11005 // We've hit a cycle.
11006 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11007 Current.count(TCanonical)) {
11008 // If we haven't diagnosed this cycle yet, do so now.
11009 if (!Invalid.count(TCanonical)) {
11010 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011011 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011012 << Ctor;
11013
Richard Smitha8eaf002012-08-23 06:16:52 +000011014 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011015 if (TCanonical != Canonical)
11016 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11017
11018 CXXConstructorDecl *C = Target;
11019 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011020 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011021 (void)C->getTargetConstructor()->hasBody(FNTarget);
11022 assert(FNTarget && "Ctor cycle through bodiless function");
11023
Richard Smitha8eaf002012-08-23 06:16:52 +000011024 C = const_cast<CXXConstructorDecl*>(
11025 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011026 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11027 }
11028 }
11029
11030 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11031 Invalid.insert(*CI);
11032 Current.clear();
11033 } else {
11034 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11035 }
11036}
11037
11038
Sean Huntfe57eef2011-05-04 05:57:24 +000011039void Sema::CheckDelegatingCtorCycles() {
11040 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11041
Sean Huntebcbe1d2011-05-04 23:29:54 +000011042 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11043 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011044
Douglas Gregor0129b562011-07-27 21:57:17 +000011045 for (DelegatingCtorDeclsType::iterator
11046 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011047 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011048 I != E; ++I)
11049 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011050
11051 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11052 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011053}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011054
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011055namespace {
11056 /// \brief AST visitor that finds references to the 'this' expression.
11057 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11058 Sema &S;
11059
11060 public:
11061 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11062
11063 bool VisitCXXThisExpr(CXXThisExpr *E) {
11064 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11065 << E->isImplicit();
11066 return false;
11067 }
11068 };
11069}
11070
11071bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11072 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11073 if (!TSInfo)
11074 return false;
11075
11076 TypeLoc TL = TSInfo->getTypeLoc();
11077 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11078 if (!ProtoTL)
11079 return false;
11080
11081 // C++11 [expr.prim.general]p3:
11082 // [The expression this] shall not appear before the optional
11083 // cv-qualifier-seq and it shall not appear within the declaration of a
11084 // static member function (although its type and value category are defined
11085 // within a static member function as they are within a non-static member
11086 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011087 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011088 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11089 FindCXXThisExpr Finder(*this);
11090
11091 // If the return type came after the cv-qualifier-seq, check it now.
11092 if (Proto->hasTrailingReturn() &&
11093 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11094 return true;
11095
11096 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011097 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11098 return true;
11099
11100 return checkThisInStaticMemberFunctionAttributes(Method);
11101}
11102
11103bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11104 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11105 if (!TSInfo)
11106 return false;
11107
11108 TypeLoc TL = TSInfo->getTypeLoc();
11109 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11110 if (!ProtoTL)
11111 return false;
11112
11113 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11114 FindCXXThisExpr Finder(*this);
11115
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011116 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011117 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011118 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011119 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011120 case EST_DynamicNone:
11121 case EST_MSAny:
11122 case EST_None:
11123 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011124
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011125 case EST_ComputedNoexcept:
11126 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11127 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011128
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011129 case EST_Dynamic:
11130 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011131 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011132 E != EEnd; ++E) {
11133 if (!Finder.TraverseType(*E))
11134 return true;
11135 }
11136 break;
11137 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011138
11139 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011140}
11141
11142bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11143 FindCXXThisExpr Finder(*this);
11144
11145 // Check attributes.
11146 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11147 A != AEnd; ++A) {
11148 // FIXME: This should be emitted by tblgen.
11149 Expr *Arg = 0;
11150 ArrayRef<Expr *> Args;
11151 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11152 Arg = G->getArg();
11153 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11154 Arg = G->getArg();
11155 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11156 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11157 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11158 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11159 else if (ExclusiveLockFunctionAttr *ELF
11160 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11161 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11162 else if (SharedLockFunctionAttr *SLF
11163 = dyn_cast<SharedLockFunctionAttr>(*A))
11164 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11165 else if (ExclusiveTrylockFunctionAttr *ETLF
11166 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11167 Arg = ETLF->getSuccessValue();
11168 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11169 } else if (SharedTrylockFunctionAttr *STLF
11170 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11171 Arg = STLF->getSuccessValue();
11172 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11173 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11174 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11175 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11176 Arg = LR->getArg();
11177 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11178 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11179 else if (ExclusiveLocksRequiredAttr *ELR
11180 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11181 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11182 else if (SharedLocksRequiredAttr *SLR
11183 = dyn_cast<SharedLocksRequiredAttr>(*A))
11184 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11185
11186 if (Arg && !Finder.TraverseStmt(Arg))
11187 return true;
11188
11189 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11190 if (!Finder.TraverseStmt(Args[I]))
11191 return true;
11192 }
11193 }
11194
11195 return false;
11196}
11197
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011198void
11199Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11200 ArrayRef<ParsedType> DynamicExceptions,
11201 ArrayRef<SourceRange> DynamicExceptionRanges,
11202 Expr *NoexceptExpr,
11203 llvm::SmallVectorImpl<QualType> &Exceptions,
11204 FunctionProtoType::ExtProtoInfo &EPI) {
11205 Exceptions.clear();
11206 EPI.ExceptionSpecType = EST;
11207 if (EST == EST_Dynamic) {
11208 Exceptions.reserve(DynamicExceptions.size());
11209 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11210 // FIXME: Preserve type source info.
11211 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11212
11213 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11214 collectUnexpandedParameterPacks(ET, Unexpanded);
11215 if (!Unexpanded.empty()) {
11216 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11217 UPPC_ExceptionType,
11218 Unexpanded);
11219 continue;
11220 }
11221
11222 // Check that the type is valid for an exception spec, and
11223 // drop it if not.
11224 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11225 Exceptions.push_back(ET);
11226 }
11227 EPI.NumExceptions = Exceptions.size();
11228 EPI.Exceptions = Exceptions.data();
11229 return;
11230 }
11231
11232 if (EST == EST_ComputedNoexcept) {
11233 // If an error occurred, there's no expression here.
11234 if (NoexceptExpr) {
11235 assert((NoexceptExpr->isTypeDependent() ||
11236 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11237 Context.BoolTy) &&
11238 "Parser should have made sure that the expression is boolean");
11239 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11240 EPI.ExceptionSpecType = EST_BasicNoexcept;
11241 return;
11242 }
11243
11244 if (!NoexceptExpr->isValueDependent())
11245 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011246 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011247 /*AllowFold*/ false).take();
11248 EPI.NoexceptExpr = NoexceptExpr;
11249 }
11250 return;
11251 }
11252}
11253
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011254/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11255Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11256 // Implicitly declared functions (e.g. copy constructors) are
11257 // __host__ __device__
11258 if (D->isImplicit())
11259 return CFT_HostDevice;
11260
11261 if (D->hasAttr<CUDAGlobalAttr>())
11262 return CFT_Global;
11263
11264 if (D->hasAttr<CUDADeviceAttr>()) {
11265 if (D->hasAttr<CUDAHostAttr>())
11266 return CFT_HostDevice;
11267 else
11268 return CFT_Device;
11269 }
11270
11271 return CFT_Host;
11272}
11273
11274bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11275 CUDAFunctionTarget CalleeTarget) {
11276 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11277 // Callable from the device only."
11278 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11279 return true;
11280
11281 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11282 // Callable from the host only."
11283 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11284 // Callable from the host only."
11285 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11286 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11287 return true;
11288
11289 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11290 return true;
11291
11292 return false;
11293}