blob: 2c760f4930cbbd7ea01d3ac9988292b5600b7375 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Eli Friedman7badd242012-02-09 20:13:14 +000019#include "clang/Sema/ScopeInfo.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000020#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000021#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000024#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000025#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000027#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000028#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000029#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000030#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000031#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000032#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000035#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000036#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000037#include "llvm/ADT/SmallString.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000040#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000041
42using namespace clang;
43
Chris Lattner8123a952008-04-10 02:22:51 +000044//===----------------------------------------------------------------------===//
45// CheckDefaultArgumentVisitor
46//===----------------------------------------------------------------------===//
47
Chris Lattner9e979552008-04-12 23:52:44 +000048namespace {
49 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
50 /// the default argument of a parameter to determine whether it
51 /// contains any ill-formed subexpressions. For example, this will
52 /// diagnose the use of local variables or parameters within the
53 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000054 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000055 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000056 Expr *DefaultArg;
57 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 public:
Mike Stump1eb44332009-09-09 15:08:12 +000060 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000061 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 bool VisitExpr(Expr *Node);
64 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000065 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000066 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000067 };
Chris Lattner8123a952008-04-10 02:22:51 +000068
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitExpr - Visit all of the children of this expression.
70 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
71 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000072 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000073 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000074 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000075 }
76
Chris Lattner9e979552008-04-12 23:52:44 +000077 /// VisitDeclRefExpr - Visit a reference to a declaration, to
78 /// determine whether this declaration can be used in the default
79 /// argument expression.
80 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000081 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000082 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
83 // C++ [dcl.fct.default]p9
84 // Default arguments are evaluated each time the function is
85 // called. The order of evaluation of function arguments is
86 // unspecified. Consequently, parameters of a function shall not
87 // be used in default argument expressions, even if they are not
88 // evaluated. Parameters of a function declared before a default
89 // argument expression are in scope and can hide namespace and
90 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000091 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000094 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000095 // C++ [dcl.fct.default]p7
96 // Local variables shall not be used in default argument
97 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000098 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +000099 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000101 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103
Douglas Gregor3996f232008-11-04 13:41:56 +0000104 return false;
105 }
Chris Lattner9e979552008-04-12 23:52:44 +0000106
Douglas Gregor796da182008-11-04 14:32:21 +0000107 /// VisitCXXThisExpr - Visit a C++ "this" expression.
108 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
109 // C++ [dcl.fct.default]p8:
110 // The keyword this shall not be used in a default argument of a
111 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000112 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000113 diag::err_param_default_argument_references_this)
114 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000115 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000116
117 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
118 // C++11 [expr.lambda.prim]p13:
119 // A lambda-expression appearing in a default argument shall not
120 // implicitly or explicitly capture any entity.
121 if (Lambda->capture_begin() == Lambda->capture_end())
122 return false;
123
124 return S->Diag(Lambda->getLocStart(),
125 diag::err_lambda_capture_default_arg);
126 }
Chris Lattner8123a952008-04-10 02:22:51 +0000127}
128
Richard Smithe6975e92012-04-17 00:58:00 +0000129void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
130 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000131 // If we have an MSAny spec already, don't bother.
132 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000133 return;
134
135 const FunctionProtoType *Proto
136 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000137 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
138 if (!Proto)
139 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000140
141 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
142
143 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000144 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000145 ClearExceptions();
146 ComputedEST = EST;
147 return;
148 }
149
Richard Smith7a614d82011-06-11 17:19:42 +0000150 // FIXME: If the call to this decl is using any of its default arguments, we
151 // need to search them for potentially-throwing calls.
152
Sean Hunt001cad92011-05-10 00:49:42 +0000153 // If this function has a basic noexcept, it doesn't affect the outcome.
154 if (EST == EST_BasicNoexcept)
155 return;
156
157 // If we have a throw-all spec at this point, ignore the function.
158 if (ComputedEST == EST_None)
159 return;
160
161 // If we're still at noexcept(true) and there's a nothrow() callee,
162 // change to that specification.
163 if (EST == EST_DynamicNone) {
164 if (ComputedEST == EST_BasicNoexcept)
165 ComputedEST = EST_DynamicNone;
166 return;
167 }
168
169 // Check out noexcept specs.
170 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000171 FunctionProtoType::NoexceptResult NR =
172 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000173 assert(NR != FunctionProtoType::NR_NoNoexcept &&
174 "Must have noexcept result for EST_ComputedNoexcept.");
175 assert(NR != FunctionProtoType::NR_Dependent &&
176 "Should not generate implicit declarations for dependent cases, "
177 "and don't know how to handle them anyway.");
178
179 // noexcept(false) -> no spec on the new function
180 if (NR == FunctionProtoType::NR_Throw) {
181 ClearExceptions();
182 ComputedEST = EST_None;
183 }
184 // noexcept(true) won't change anything either.
185 return;
186 }
187
188 assert(EST == EST_Dynamic && "EST case not considered earlier.");
189 assert(ComputedEST != EST_None &&
190 "Shouldn't collect exceptions when throw-all is guaranteed.");
191 ComputedEST = EST_Dynamic;
192 // Record the exceptions in this function's exception specification.
193 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
194 EEnd = Proto->exception_end();
195 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000196 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000197 Exceptions.push_back(*E);
198}
199
Richard Smith7a614d82011-06-11 17:19:42 +0000200void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000201 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000202 return;
203
204 // FIXME:
205 //
206 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000207 // [An] implicit exception-specification specifies the type-id T if and
208 // only if T is allowed by the exception-specification of a function directly
209 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000210 // function it directly invokes allows all exceptions, and f shall allow no
211 // exceptions if every function it directly invokes allows no exceptions.
212 //
213 // Note in particular that if an implicit exception-specification is generated
214 // for a function containing a throw-expression, that specification can still
215 // be noexcept(true).
216 //
217 // Note also that 'directly invoked' is not defined in the standard, and there
218 // is no indication that we should only consider potentially-evaluated calls.
219 //
220 // Ultimately we should implement the intent of the standard: the exception
221 // specification should be the set of exceptions which can be thrown by the
222 // implicit definition. For now, we assume that any non-nothrow expression can
223 // throw any exception.
224
Richard Smithe6975e92012-04-17 00:58:00 +0000225 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000226 ComputedEST = EST_None;
227}
228
Anders Carlssoned961f92009-08-25 02:29:20 +0000229bool
John McCall9ae2f072010-08-23 23:25:46 +0000230Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000231 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000232 if (RequireCompleteType(Param->getLocation(), Param->getType(),
233 diag::err_typecheck_decl_incomplete_type)) {
234 Param->setInvalidDecl();
235 return true;
236 }
237
Anders Carlssoned961f92009-08-25 02:29:20 +0000238 // C++ [dcl.fct.default]p5
239 // A default argument expression is implicitly converted (clause
240 // 4) to the parameter type. The default argument expression has
241 // the same semantic constraints as the initializer expression in
242 // a declaration of a variable of the parameter type, using the
243 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000244 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
245 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000246 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
247 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000248 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000250 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000251 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000252 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000253
John McCallb4eb64d2010-10-08 02:01:28 +0000254 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000255 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Anders Carlssoned961f92009-08-25 02:29:20 +0000257 // Okay: add the default argument to the parameter
258 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000260 // We have already instantiated this parameter; provide each of the
261 // instantiations with the uninstantiated default argument.
262 UnparsedDefaultArgInstantiationsMap::iterator InstPos
263 = UnparsedDefaultArgInstantiations.find(Param);
264 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
265 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
266 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
267
268 // We're done tracking this parameter's instantiations.
269 UnparsedDefaultArgInstantiations.erase(InstPos);
270 }
271
Anders Carlsson9351c172009-08-25 03:18:48 +0000272 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000273}
274
Chris Lattner8123a952008-04-10 02:22:51 +0000275/// ActOnParamDefaultArgument - Check whether the default argument
276/// provided for a function parameter is well-formed. If so, attach it
277/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000278void
John McCalld226f652010-08-21 09:40:31 +0000279Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000280 Expr *DefaultArg) {
281 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000282 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalld226f652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000285 UnparsedDefaultArgLocs.erase(Param);
286
Chris Lattner3d1cee32008-04-08 05:04:30 +0000287 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000288 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000289 Diag(EqualLoc, diag::err_param_default_argument)
290 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000291 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000292 return;
293 }
294
Douglas Gregor6f526752010-12-16 08:48:57 +0000295 // Check for unexpanded parameter packs.
296 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
297 Param->setInvalidDecl();
298 return;
299 }
300
Anders Carlsson66e30672009-08-25 01:02:06 +0000301 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000302 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
303 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000304 Param->setInvalidDecl();
305 return;
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
John McCall9ae2f072010-08-23 23:25:46 +0000308 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309}
310
Douglas Gregor61366e92008-12-24 00:01:03 +0000311/// ActOnParamUnparsedDefaultArgument - We've seen a default
312/// argument for a function parameter, but we can't parse it yet
313/// because we're inside a class definition. Note that this default
314/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000315void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000316 SourceLocation EqualLoc,
317 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000318 if (!param)
319 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
John McCalld226f652010-08-21 09:40:31 +0000321 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000322 if (Param)
323 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Anders Carlsson5e300d12009-06-12 16:51:40 +0000325 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000326}
327
Douglas Gregor72b505b2008-12-16 21:30:33 +0000328/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
329/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000330void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000331 if (!param)
332 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000333
John McCalld226f652010-08-21 09:40:31 +0000334 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Anders Carlsson5e300d12009-06-12 16:51:40 +0000336 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Anders Carlsson5e300d12009-06-12 16:51:40 +0000338 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000339}
340
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000341/// CheckExtraCXXDefaultArguments - Check for any extra default
342/// arguments in the declarator, which is not a function declaration
343/// or definition and therefore is not permitted to have default
344/// arguments. This routine should be invoked for every declarator
345/// that is not a function declaration or definition.
346void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
347 // C++ [dcl.fct.default]p3
348 // A default argument expression shall be specified only in the
349 // parameter-declaration-clause of a function declaration or in a
350 // template-parameter (14.1). It shall not be specified for a
351 // parameter pack. If it is specified in a
352 // parameter-declaration-clause, it shall not occur within a
353 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000354 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000355 DeclaratorChunk &chunk = D.getTypeObject(i);
356 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000357 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
358 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000359 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000360 if (Param->hasUnparsedDefaultArg()) {
361 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000362 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
363 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
364 delete Toks;
365 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000366 } else if (Param->getDefaultArg()) {
367 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
368 << Param->getDefaultArg()->getSourceRange();
369 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000370 }
371 }
372 }
373 }
374}
375
Craig Topper1a6eac82012-09-21 04:33:26 +0000376/// MergeCXXFunctionDecl - Merge two declarations of the same C++
377/// function, once we already know that they have the same
378/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
379/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000380bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
381 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 bool Invalid = false;
383
Chris Lattner3d1cee32008-04-08 05:04:30 +0000384 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // For non-template functions, default arguments can be added in
386 // later declarations of a function in the same
387 // scope. Declarations in different scopes have completely
388 // distinct sets of default arguments. That is, declarations in
389 // inner scopes do not acquire default arguments from
390 // declarations in outer scopes, and vice versa. In a given
391 // function declaration, all parameters subsequent to a
392 // parameter with a default argument shall have default
393 // arguments supplied in this or previous declarations. A
394 // default argument shall not be redefined by a later
395 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000396 //
397 // C++ [dcl.fct.default]p6:
398 // Except for member functions of class templates, the default arguments
399 // in a member function definition that appears outside of the class
400 // definition are added to the set of default arguments provided by the
401 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000402 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
403 ParmVarDecl *OldParam = Old->getParamDecl(p);
404 ParmVarDecl *NewParam = New->getParamDecl(p);
405
James Molloy9cda03f2012-03-13 08:55:35 +0000406 bool OldParamHasDfl = OldParam->hasDefaultArg();
407 bool NewParamHasDfl = NewParam->hasDefaultArg();
408
409 NamedDecl *ND = Old;
410 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
411 // Ignore default parameters of old decl if they are not in
412 // the same scope.
413 OldParamHasDfl = false;
414
415 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000416
Francois Pichet8d051e02011-04-10 03:03:52 +0000417 unsigned DiagDefaultParamID =
418 diag::err_param_default_argument_redefinition;
419
420 // MSVC accepts that default parameters be redefined for member functions
421 // of template class. The new default parameter's value is ignored.
422 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000424 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
425 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000426 // Merge the old default argument into the new parameter.
427 NewParam->setHasInheritedDefaultArg();
428 if (OldParam->hasUninstantiatedDefaultArg())
429 NewParam->setUninstantiatedDefaultArg(
430 OldParam->getUninstantiatedDefaultArg());
431 else
432 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000433 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000434 Invalid = false;
435 }
436 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000437
Francois Pichet8cf90492011-04-10 04:58:30 +0000438 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
439 // hint here. Alternatively, we could walk the type-source information
440 // for NewParam to find the last source location in the type... but it
441 // isn't worth the effort right now. This is the kind of test case that
442 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000443 // int f(int);
444 // void g(int (*fp)(int) = f);
445 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000446 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000447 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000448
449 // Look for the function declaration where the default argument was
450 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000453 if (!Older->getParamDecl(p)->hasDefaultArg())
454 break;
455
456 OldParam = Older->getParamDecl(p);
457 }
458
459 Diag(OldParam->getLocation(), diag::note_previous_definition)
460 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000461 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000462 // Merge the old default argument into the new parameter.
463 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000464 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000465 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000466 if (OldParam->hasUninstantiatedDefaultArg())
467 NewParam->setUninstantiatedDefaultArg(
468 OldParam->getUninstantiatedDefaultArg());
469 else
John McCall3d6c1782010-05-04 01:53:42 +0000470 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000471 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000472 if (New->getDescribedFunctionTemplate()) {
473 // Paragraph 4, quoted above, only applies to non-template functions.
474 Diag(NewParam->getLocation(),
475 diag::err_param_default_argument_template_redecl)
476 << NewParam->getDefaultArgRange();
477 Diag(Old->getLocation(), diag::note_template_prev_declaration)
478 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000479 } else if (New->getTemplateSpecializationKind()
480 != TSK_ImplicitInstantiation &&
481 New->getTemplateSpecializationKind() != TSK_Undeclared) {
482 // C++ [temp.expr.spec]p21:
483 // Default function arguments shall not be specified in a declaration
484 // or a definition for one of the following explicit specializations:
485 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000486 // - the explicit specialization of a member function template;
487 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000488 // template where the class template specialization to which the
489 // member function specialization belongs is implicitly
490 // instantiated.
491 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
492 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
493 << New->getDeclName()
494 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000495 } else if (New->getDeclContext()->isDependentContext()) {
496 // C++ [dcl.fct.default]p6 (DR217):
497 // Default arguments for a member function of a class template shall
498 // be specified on the initial declaration of the member function
499 // within the class template.
500 //
501 // Reading the tea leaves a bit in DR217 and its reference to DR205
502 // leads me to the conclusion that one cannot add default function
503 // arguments for an out-of-line definition of a member function of a
504 // dependent type.
505 int WhichKind = 2;
506 if (CXXRecordDecl *Record
507 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
508 if (Record->getDescribedClassTemplate())
509 WhichKind = 0;
510 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
511 WhichKind = 1;
512 else
513 WhichKind = 2;
514 }
515
516 Diag(NewParam->getLocation(),
517 diag::err_param_default_argument_member_template_redecl)
518 << WhichKind
519 << NewParam->getDefaultArgRange();
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
Douglas Gregor229d47a2012-11-10 07:24:09 +00001021/// \brief Determine whether the given class is a base class of the given
1022/// class, including looking at dependent bases.
1023static bool findCircularInheritance(const CXXRecordDecl *Class,
1024 const CXXRecordDecl *Current) {
1025 SmallVector<const CXXRecordDecl*, 8> Queue;
1026
1027 Class = Class->getCanonicalDecl();
1028 while (true) {
1029 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1030 E = Current->bases_end();
1031 I != E; ++I) {
1032 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1033 if (!Base)
1034 continue;
1035
1036 Base = Base->getDefinition();
1037 if (!Base)
1038 continue;
1039
1040 if (Base->getCanonicalDecl() == Class)
1041 return true;
1042
1043 Queue.push_back(Base);
1044 }
1045
1046 if (Queue.empty())
1047 return false;
1048
1049 Current = Queue.back();
1050 Queue.pop_back();
1051 }
1052
1053 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001054}
1055
Mike Stump1eb44332009-09-09 15:08:12 +00001056/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001057///
1058/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1059/// and returns NULL otherwise.
1060CXXBaseSpecifier *
1061Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1062 SourceRange SpecifierRange,
1063 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001064 TypeSourceInfo *TInfo,
1065 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001066 QualType BaseType = TInfo->getType();
1067
Douglas Gregor2943aed2009-03-03 04:44:36 +00001068 // C++ [class.union]p1:
1069 // A union shall not have base classes.
1070 if (Class->isUnion()) {
1071 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1072 << SpecifierRange;
1073 return 0;
1074 }
1075
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001076 if (EllipsisLoc.isValid() &&
1077 !TInfo->getType()->containsUnexpandedParameterPack()) {
1078 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1079 << TInfo->getTypeLoc().getSourceRange();
1080 EllipsisLoc = SourceLocation();
1081 }
Douglas Gregord777e282012-11-10 01:18:17 +00001082
1083 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1084
1085 if (BaseType->isDependentType()) {
1086 // Make sure that we don't have circular inheritance among our dependent
1087 // bases. For non-dependent bases, the check for completeness below handles
1088 // this.
1089 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1090 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1091 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001092 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001093 Diag(BaseLoc, diag::err_circular_inheritance)
1094 << BaseType << Context.getTypeDeclType(Class);
1095
1096 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1097 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1098 << BaseType;
1099
1100 return 0;
1101 }
1102 }
1103
Mike Stump1eb44332009-09-09 15:08:12 +00001104 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001105 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001106 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001107 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001108
1109 // Base specifiers must be record types.
1110 if (!BaseType->isRecordType()) {
1111 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1112 return 0;
1113 }
1114
1115 // C++ [class.union]p1:
1116 // A union shall not be used as a base class.
1117 if (BaseType->isUnionType()) {
1118 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1119 return 0;
1120 }
1121
1122 // C++ [class.derived]p2:
1123 // The class-name in a base-specifier shall not be an incompletely
1124 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001125 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001126 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001127 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001128 return 0;
John McCall572fc622010-08-17 07:23:57 +00001129 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001130
Eli Friedman1d954f62009-08-15 21:55:26 +00001131 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001132 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001133 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001134 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001135 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001136 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1137 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001138
Anders Carlsson1d209272011-03-25 14:55:14 +00001139 // C++ [class]p3:
1140 // If a class is marked final and it appears as a base-type-specifier in
1141 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001142 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001143 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1144 << CXXBaseDecl->getDeclName();
1145 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1146 << CXXBaseDecl->getDeclName();
1147 return 0;
1148 }
1149
John McCall572fc622010-08-17 07:23:57 +00001150 if (BaseDecl->isInvalidDecl())
1151 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001152
1153 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001154 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001155 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001156 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001157}
1158
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001159/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1160/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001161/// example:
1162/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001163/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001164BaseResult
John McCalld226f652010-08-21 09:40:31 +00001165Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001166 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001167 ParsedType basetype, SourceLocation BaseLoc,
1168 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001169 if (!classdecl)
1170 return true;
1171
Douglas Gregor40808ce2009-03-09 23:48:35 +00001172 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001173 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001174 if (!Class)
1175 return true;
1176
Nick Lewycky56062202010-07-26 16:56:01 +00001177 TypeSourceInfo *TInfo = 0;
1178 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001179
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001180 if (EllipsisLoc.isInvalid() &&
1181 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001182 UPPC_BaseType))
1183 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001184
Douglas Gregor2943aed2009-03-03 04:44:36 +00001185 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001186 Virtual, Access, TInfo,
1187 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001188 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001189 else
1190 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001191
Douglas Gregor2943aed2009-03-03 04:44:36 +00001192 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001193}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001194
Douglas Gregor2943aed2009-03-03 04:44:36 +00001195/// \brief Performs the actual work of attaching the given base class
1196/// specifiers to a C++ class.
1197bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1198 unsigned NumBases) {
1199 if (NumBases == 0)
1200 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001201
1202 // Used to keep track of which base types we have already seen, so
1203 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001204 // that the key is always the unqualified canonical type of the base
1205 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001206 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1207
1208 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001209 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001210 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001211 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001212 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001213 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001214 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001215
1216 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1217 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001218 // C++ [class.mi]p3:
1219 // A class shall not be specified as a direct base class of a
1220 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001221 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001222 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001223 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001224 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001225
1226 // Delete the duplicate base class specifier; we're going to
1227 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001228 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001229
1230 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001231 } else {
1232 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001233 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001234 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001235 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1236 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1237 if (Class->isInterface() &&
1238 (!RD->isInterface() ||
1239 KnownBase->getAccessSpecifier() != AS_public)) {
1240 // The Microsoft extension __interface does not permit bases that
1241 // are not themselves public interfaces.
1242 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1243 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1244 << RD->getSourceRange();
1245 Invalid = true;
1246 }
1247 if (RD->hasAttr<WeakAttr>())
1248 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1249 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001250 }
1251 }
1252
1253 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001254 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001255
1256 // Delete the remaining (good) base class specifiers, since their
1257 // data has been copied into the CXXRecordDecl.
1258 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001259 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001260
1261 return Invalid;
1262}
1263
1264/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1265/// class, after checking whether there are any duplicate base
1266/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001267void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001268 unsigned NumBases) {
1269 if (!ClassDecl || !Bases || !NumBases)
1270 return;
1271
1272 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001273 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001274 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001275}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001276
John McCall3cb0ebd2010-03-10 03:28:59 +00001277static CXXRecordDecl *GetClassForType(QualType T) {
1278 if (const RecordType *RT = T->getAs<RecordType>())
1279 return cast<CXXRecordDecl>(RT->getDecl());
1280 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1281 return ICT->getDecl();
1282 else
1283 return 0;
1284}
1285
Douglas Gregora8f32e02009-10-06 17:59:45 +00001286/// \brief Determine whether the type \p Derived is a C++ class that is
1287/// derived from the type \p Base.
1288bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001289 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001290 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001291
1292 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1293 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001294 return false;
1295
John McCall3cb0ebd2010-03-10 03:28:59 +00001296 CXXRecordDecl *BaseRD = GetClassForType(Base);
1297 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001298 return false;
1299
John McCall86ff3082010-02-04 22:26:26 +00001300 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1301 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001302}
1303
1304/// \brief Determine whether the type \p Derived is a C++ class that is
1305/// derived from the type \p Base.
1306bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001307 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001308 return false;
1309
John McCall3cb0ebd2010-03-10 03:28:59 +00001310 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1311 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001312 return false;
1313
John McCall3cb0ebd2010-03-10 03:28:59 +00001314 CXXRecordDecl *BaseRD = GetClassForType(Base);
1315 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001316 return false;
1317
Douglas Gregora8f32e02009-10-06 17:59:45 +00001318 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1319}
1320
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001321void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001322 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001323 assert(BasePathArray.empty() && "Base path array must be empty!");
1324 assert(Paths.isRecordingPaths() && "Must record paths!");
1325
1326 const CXXBasePath &Path = Paths.front();
1327
1328 // We first go backward and check if we have a virtual base.
1329 // FIXME: It would be better if CXXBasePath had the base specifier for
1330 // the nearest virtual base.
1331 unsigned Start = 0;
1332 for (unsigned I = Path.size(); I != 0; --I) {
1333 if (Path[I - 1].Base->isVirtual()) {
1334 Start = I - 1;
1335 break;
1336 }
1337 }
1338
1339 // Now add all bases.
1340 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001341 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001342}
1343
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001344/// \brief Determine whether the given base path includes a virtual
1345/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001346bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1347 for (CXXCastPath::const_iterator B = BasePath.begin(),
1348 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001349 B != BEnd; ++B)
1350 if ((*B)->isVirtual())
1351 return true;
1352
1353 return false;
1354}
1355
Douglas Gregora8f32e02009-10-06 17:59:45 +00001356/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1357/// conversion (where Derived and Base are class types) is
1358/// well-formed, meaning that the conversion is unambiguous (and
1359/// that all of the base classes are accessible). Returns true
1360/// and emits a diagnostic if the code is ill-formed, returns false
1361/// otherwise. Loc is the location where this routine should point to
1362/// if there is an error, and Range is the source range to highlight
1363/// if there is an error.
1364bool
1365Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001366 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001367 unsigned AmbigiousBaseConvID,
1368 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001369 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001370 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001371 // First, determine whether the path from Derived to Base is
1372 // ambiguous. This is slightly more expensive than checking whether
1373 // the Derived to Base conversion exists, because here we need to
1374 // explore multiple paths to determine if there is an ambiguity.
1375 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1376 /*DetectVirtual=*/false);
1377 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1378 assert(DerivationOkay &&
1379 "Can only be used with a derived-to-base conversion");
1380 (void)DerivationOkay;
1381
1382 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001383 if (InaccessibleBaseID) {
1384 // Check that the base class can be accessed.
1385 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1386 InaccessibleBaseID)) {
1387 case AR_inaccessible:
1388 return true;
1389 case AR_accessible:
1390 case AR_dependent:
1391 case AR_delayed:
1392 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001393 }
John McCall6b2accb2010-02-10 09:31:12 +00001394 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001395
1396 // Build a base path if necessary.
1397 if (BasePath)
1398 BuildBasePathArray(Paths, *BasePath);
1399 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001400 }
1401
1402 // We know that the derived-to-base conversion is ambiguous, and
1403 // we're going to produce a diagnostic. Perform the derived-to-base
1404 // search just one more time to compute all of the possible paths so
1405 // that we can print them out. This is more expensive than any of
1406 // the previous derived-to-base checks we've done, but at this point
1407 // performance isn't as much of an issue.
1408 Paths.clear();
1409 Paths.setRecordingPaths(true);
1410 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1411 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1412 (void)StillOkay;
1413
1414 // Build up a textual representation of the ambiguous paths, e.g.,
1415 // D -> B -> A, that will be used to illustrate the ambiguous
1416 // conversions in the diagnostic. We only print one of the paths
1417 // to each base class subobject.
1418 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1419
1420 Diag(Loc, AmbigiousBaseConvID)
1421 << Derived << Base << PathDisplayStr << Range << Name;
1422 return true;
1423}
1424
1425bool
1426Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001427 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001428 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001429 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001430 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001431 IgnoreAccess ? 0
1432 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001433 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001434 Loc, Range, DeclarationName(),
1435 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001436}
1437
1438
1439/// @brief Builds a string representing ambiguous paths from a
1440/// specific derived class to different subobjects of the same base
1441/// class.
1442///
1443/// This function builds a string that can be used in error messages
1444/// to show the different paths that one can take through the
1445/// inheritance hierarchy to go from the derived class to different
1446/// subobjects of a base class. The result looks something like this:
1447/// @code
1448/// struct D -> struct B -> struct A
1449/// struct D -> struct C -> struct A
1450/// @endcode
1451std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1452 std::string PathDisplayStr;
1453 std::set<unsigned> DisplayedPaths;
1454 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1455 Path != Paths.end(); ++Path) {
1456 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1457 // We haven't displayed a path to this particular base
1458 // class subobject yet.
1459 PathDisplayStr += "\n ";
1460 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1461 for (CXXBasePath::const_iterator Element = Path->begin();
1462 Element != Path->end(); ++Element)
1463 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1464 }
1465 }
1466
1467 return PathDisplayStr;
1468}
1469
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001470//===----------------------------------------------------------------------===//
1471// C++ class member Handling
1472//===----------------------------------------------------------------------===//
1473
Abramo Bagnara6206d532010-06-05 05:09:32 +00001474/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001475bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1476 SourceLocation ASLoc,
1477 SourceLocation ColonLoc,
1478 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001479 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001480 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001481 ASLoc, ColonLoc);
1482 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001483 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001484}
1485
Richard Smitha4b39652012-08-06 03:25:17 +00001486/// CheckOverrideControl - Check C++11 override control semantics.
1487void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001488 if (D->isInvalidDecl())
1489 return;
1490
Chris Lattner5f9e2722011-07-23 10:55:15 +00001491 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001492
Richard Smitha4b39652012-08-06 03:25:17 +00001493 // Do we know which functions this declaration might be overriding?
1494 bool OverridesAreKnown = !MD ||
1495 (!MD->getParent()->hasAnyDependentBases() &&
1496 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001497
Richard Smitha4b39652012-08-06 03:25:17 +00001498 if (!MD || !MD->isVirtual()) {
1499 if (OverridesAreKnown) {
1500 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1501 Diag(OA->getLocation(),
1502 diag::override_keyword_only_allowed_on_virtual_member_functions)
1503 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1504 D->dropAttr<OverrideAttr>();
1505 }
1506 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1507 Diag(FA->getLocation(),
1508 diag::override_keyword_only_allowed_on_virtual_member_functions)
1509 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1510 D->dropAttr<FinalAttr>();
1511 }
1512 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001513 return;
1514 }
Richard Smitha4b39652012-08-06 03:25:17 +00001515
1516 if (!OverridesAreKnown)
1517 return;
1518
1519 // C++11 [class.virtual]p5:
1520 // If a virtual function is marked with the virt-specifier override and
1521 // does not override a member function of a base class, the program is
1522 // ill-formed.
1523 bool HasOverriddenMethods =
1524 MD->begin_overridden_methods() != MD->end_overridden_methods();
1525 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1526 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1527 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001528}
1529
Richard Smitha4b39652012-08-06 03:25:17 +00001530/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001531/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001532/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001533bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1534 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001535 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001536 return false;
1537
1538 Diag(New->getLocation(), diag::err_final_function_overridden)
1539 << New->getDeclName();
1540 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1541 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001542}
1543
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001544static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001545 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1546 // FIXME: Destruction of ObjC lifetime types has side-effects.
1547 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1548 return !RD->isCompleteDefinition() ||
1549 !RD->hasTrivialDefaultConstructor() ||
1550 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001551 return false;
1552}
1553
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001554/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1555/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001556/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001557/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1558/// present (but parsing it has been deferred).
John McCalld226f652010-08-21 09:40:31 +00001559Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001560Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001561 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001562 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001563 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001564 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001565 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1566 DeclarationName Name = NameInfo.getName();
1567 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001568
1569 // For anonymous bitfields, the location should point to the type.
1570 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001571 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001572
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001573 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001574
John McCall4bde1e12010-06-04 08:34:12 +00001575 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001576 assert(!DS.isFriendSpecified());
1577
Richard Smith1ab0d902011-06-25 02:28:38 +00001578 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001579
John McCalle402e722012-09-25 07:32:39 +00001580 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1581 // The Microsoft extension __interface only permits public member functions
1582 // and prohibits constructors, destructors, operators, non-public member
1583 // functions, static methods and data members.
1584 unsigned InvalidDecl;
1585 bool ShowDeclName = true;
1586 if (!isFunc)
1587 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1588 else if (AS != AS_public)
1589 InvalidDecl = 2;
1590 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1591 InvalidDecl = 3;
1592 else switch (Name.getNameKind()) {
1593 case DeclarationName::CXXConstructorName:
1594 InvalidDecl = 4;
1595 ShowDeclName = false;
1596 break;
1597
1598 case DeclarationName::CXXDestructorName:
1599 InvalidDecl = 5;
1600 ShowDeclName = false;
1601 break;
1602
1603 case DeclarationName::CXXOperatorName:
1604 case DeclarationName::CXXConversionFunctionName:
1605 InvalidDecl = 6;
1606 break;
1607
1608 default:
1609 InvalidDecl = 0;
1610 break;
1611 }
1612
1613 if (InvalidDecl) {
1614 if (ShowDeclName)
1615 Diag(Loc, diag::err_invalid_member_in_interface)
1616 << (InvalidDecl-1) << Name;
1617 else
1618 Diag(Loc, diag::err_invalid_member_in_interface)
1619 << (InvalidDecl-1) << "";
1620 return 0;
1621 }
1622 }
1623
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001624 // C++ 9.2p6: A member shall not be declared to have automatic storage
1625 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001626 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1627 // data members and cannot be applied to names declared const or static,
1628 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001629 switch (DS.getStorageClassSpec()) {
1630 case DeclSpec::SCS_unspecified:
1631 case DeclSpec::SCS_typedef:
1632 case DeclSpec::SCS_static:
1633 // FALL THROUGH.
1634 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001635 case DeclSpec::SCS_mutable:
1636 if (isFunc) {
1637 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001638 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001639 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001640 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Sebastian Redla11f42f2008-11-17 23:24:37 +00001642 // FIXME: It would be nicer if the keyword was ignored only for this
1643 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001644 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001645 }
1646 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001647 default:
1648 if (DS.getStorageClassSpecLoc().isValid())
1649 Diag(DS.getStorageClassSpecLoc(),
1650 diag::err_storageclass_invalid_for_member);
1651 else
1652 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1653 D.getMutableDeclSpec().ClearStorageClassSpecs();
1654 }
1655
Sebastian Redl669d5d72008-11-14 23:42:31 +00001656 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1657 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001658 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001659
1660 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001661 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001662 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001663
1664 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001665 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001666 Diag(Loc, diag::err_bad_variable_name)
1667 << Name;
1668 return 0;
1669 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001670
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001671 IdentifierInfo *II = Name.getAsIdentifierInfo();
1672
Douglas Gregorf2503652011-09-21 14:40:46 +00001673 // Member field could not be with "template" keyword.
1674 // So TemplateParameterLists should be empty in this case.
1675 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001676 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001677 if (TemplateParams->size()) {
1678 // There is no such thing as a member field template.
1679 Diag(D.getIdentifierLoc(), diag::err_template_member)
1680 << II
1681 << SourceRange(TemplateParams->getTemplateLoc(),
1682 TemplateParams->getRAngleLoc());
1683 } else {
1684 // There is an extraneous 'template<>' for this member.
1685 Diag(TemplateParams->getTemplateLoc(),
1686 diag::err_template_member_noparams)
1687 << II
1688 << SourceRange(TemplateParams->getTemplateLoc(),
1689 TemplateParams->getRAngleLoc());
1690 }
1691 return 0;
1692 }
1693
Douglas Gregor922fff22010-10-13 22:19:53 +00001694 if (SS.isSet() && !SS.isInvalid()) {
1695 // The user provided a superfluous scope specifier inside a class
1696 // definition:
1697 //
1698 // class X {
1699 // int X::member;
1700 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001701 if (DeclContext *DC = computeDeclContext(SS, false))
1702 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001703 else
1704 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1705 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001706
Douglas Gregor922fff22010-10-13 22:19:53 +00001707 SS.clear();
1708 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001709
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001710 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001711 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001712 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001713 } else {
Richard Smithca523302012-06-10 03:12:00 +00001714 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001715
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001716 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001717 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001718 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001719 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001720
1721 // Non-instance-fields can't have a bitfield.
1722 if (BitWidth) {
1723 if (Member->isInvalidDecl()) {
1724 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001725 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001726 // C++ 9.6p3: A bit-field shall not be a static member.
1727 // "static member 'A' cannot be a bit-field"
1728 Diag(Loc, diag::err_static_not_bitfield)
1729 << Name << BitWidth->getSourceRange();
1730 } else if (isa<TypedefDecl>(Member)) {
1731 // "typedef member 'x' cannot be a bit-field"
1732 Diag(Loc, diag::err_typedef_not_bitfield)
1733 << Name << BitWidth->getSourceRange();
1734 } else {
1735 // A function typedef ("typedef int f(); f a;").
1736 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1737 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001738 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001739 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001740 }
Mike Stump1eb44332009-09-09 15:08:12 +00001741
Chris Lattner8b963ef2009-03-05 23:01:03 +00001742 BitWidth = 0;
1743 Member->setInvalidDecl();
1744 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001745
1746 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001747
Douglas Gregor37b372b2009-08-20 22:52:58 +00001748 // If we have declared a member function template, set the access of the
1749 // templated declaration as well.
1750 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1751 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001752 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001753
Richard Smitha4b39652012-08-06 03:25:17 +00001754 if (VS.isOverrideSpecified())
1755 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1756 if (VS.isFinalSpecified())
1757 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001758
Douglas Gregorf5251602011-03-08 17:10:18 +00001759 if (VS.getLastLocation().isValid()) {
1760 // Update the end location of a method that has a virt-specifiers.
1761 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1762 MD->setRangeEnd(VS.getLastLocation());
1763 }
Richard Smitha4b39652012-08-06 03:25:17 +00001764
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001765 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001766
Douglas Gregor10bd3682008-11-17 22:58:34 +00001767 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001768
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001769 if (isInstField) {
1770 FieldDecl *FD = cast<FieldDecl>(Member);
1771 FieldCollector->Add(FD);
1772
1773 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1774 FD->getLocation())
1775 != DiagnosticsEngine::Ignored) {
1776 // Remember all explicit private FieldDecls that have a name, no side
1777 // effects and are not part of a dependent type declaration.
1778 if (!FD->isImplicit() && FD->getDeclName() &&
1779 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001780 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001781 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001782 !InitializationHasSideEffects(*FD))
1783 UnusedPrivateFields.insert(FD);
1784 }
1785 }
1786
John McCalld226f652010-08-21 09:40:31 +00001787 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001788}
1789
Hans Wennborg471f9852012-09-18 15:58:06 +00001790namespace {
1791 class UninitializedFieldVisitor
1792 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1793 Sema &S;
1794 ValueDecl *VD;
1795 public:
1796 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1797 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
1798 S(S), VD(VD) {
1799 }
1800
1801 void HandleExpr(Expr *E) {
1802 if (!E) return;
1803
1804 // Expressions like x(x) sometimes lack the surrounding expressions
1805 // but need to be checked anyways.
1806 HandleValue(E);
1807 Visit(E);
1808 }
1809
1810 void HandleValue(Expr *E) {
1811 E = E->IgnoreParens();
1812
1813 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1814 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
1815 return;
1816 Expr *Base = E;
1817 while (isa<MemberExpr>(Base)) {
1818 ME = dyn_cast<MemberExpr>(Base);
1819 if (VarDecl *VarD = dyn_cast<VarDecl>(ME->getMemberDecl()))
1820 if (VarD->hasGlobalStorage())
1821 return;
1822 Base = ME->getBase();
1823 }
1824
1825 if (VD == ME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
1826 unsigned diag = VD->getType()->isReferenceType()
1827 ? diag::warn_reference_field_is_uninit
1828 : diag::warn_field_is_uninit;
Hans Wennborg7821e072012-09-21 08:58:33 +00001829 S.Diag(ME->getExprLoc(), diag) << ME->getMemberNameInfo().getName();
Hans Wennborg471f9852012-09-18 15:58:06 +00001830 return;
1831 }
1832 }
1833
1834 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1835 HandleValue(CO->getTrueExpr());
1836 HandleValue(CO->getFalseExpr());
1837 return;
1838 }
1839
1840 if (BinaryConditionalOperator *BCO =
1841 dyn_cast<BinaryConditionalOperator>(E)) {
1842 HandleValue(BCO->getCommon());
1843 HandleValue(BCO->getFalseExpr());
1844 return;
1845 }
1846
1847 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1848 switch (BO->getOpcode()) {
1849 default:
1850 return;
1851 case(BO_PtrMemD):
1852 case(BO_PtrMemI):
1853 HandleValue(BO->getLHS());
1854 return;
1855 case(BO_Comma):
1856 HandleValue(BO->getRHS());
1857 return;
1858 }
1859 }
1860 }
1861
1862 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1863 if (E->getCastKind() == CK_LValueToRValue)
1864 HandleValue(E->getSubExpr());
1865
1866 Inherited::VisitImplicitCastExpr(E);
1867 }
1868
1869 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1870 Expr *Callee = E->getCallee();
1871 if (isa<MemberExpr>(Callee))
1872 HandleValue(Callee);
1873
1874 Inherited::VisitCXXMemberCallExpr(E);
1875 }
1876 };
1877 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1878 ValueDecl *VD) {
1879 UninitializedFieldVisitor(S, VD).HandleExpr(E);
1880 }
1881} // namespace
1882
Richard Smith7a614d82011-06-11 17:19:42 +00001883/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001884/// in-class initializer for a non-static C++ class member, and after
1885/// instantiating an in-class initializer in a class template. Such actions
1886/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001887void
Richard Smithca523302012-06-10 03:12:00 +00001888Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001889 Expr *InitExpr) {
1890 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001891 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1892 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001893
1894 if (!InitExpr) {
1895 FD->setInvalidDecl();
1896 FD->removeInClassInitializer();
1897 return;
1898 }
1899
Peter Collingbournefef21892011-10-23 18:59:44 +00001900 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1901 FD->setInvalidDecl();
1902 FD->removeInClassInitializer();
1903 return;
1904 }
1905
Hans Wennborg471f9852012-09-18 15:58:06 +00001906 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1907 != DiagnosticsEngine::Ignored) {
1908 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1909 }
1910
Richard Smith7a614d82011-06-11 17:19:42 +00001911 ExprResult Init = InitExpr;
Douglas Gregordd084272012-09-14 04:20:37 +00001912 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent() &&
1913 !FD->getDeclContext()->isDependentContext()) {
1914 // Note: We don't type-check when we're in a dependent context, because
1915 // the initialization-substitution code does not properly handle direct
1916 // list initialization. We have the same hackaround for ctor-initializers.
Sebastian Redl772291a2012-02-19 16:31:05 +00001917 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001918 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001919 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1920 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001921 Expr **Inits = &InitExpr;
1922 unsigned NumInits = 1;
1923 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001924 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001925 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001926 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001927 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1928 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001929 if (Init.isInvalid()) {
1930 FD->setInvalidDecl();
1931 return;
1932 }
1933
Richard Smithca523302012-06-10 03:12:00 +00001934 CheckImplicitConversions(Init.get(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001935 }
1936
1937 // C++0x [class.base.init]p7:
1938 // The initialization of each base and member constitutes a
1939 // full-expression.
1940 Init = MaybeCreateExprWithCleanups(Init);
1941 if (Init.isInvalid()) {
1942 FD->setInvalidDecl();
1943 return;
1944 }
1945
1946 InitExpr = Init.release();
1947
1948 FD->setInClassInitializer(InitExpr);
1949}
1950
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001951/// \brief Find the direct and/or virtual base specifiers that
1952/// correspond to the given base type, for use in base initialization
1953/// within a constructor.
1954static bool FindBaseInitializer(Sema &SemaRef,
1955 CXXRecordDecl *ClassDecl,
1956 QualType BaseType,
1957 const CXXBaseSpecifier *&DirectBaseSpec,
1958 const CXXBaseSpecifier *&VirtualBaseSpec) {
1959 // First, check for a direct base class.
1960 DirectBaseSpec = 0;
1961 for (CXXRecordDecl::base_class_const_iterator Base
1962 = ClassDecl->bases_begin();
1963 Base != ClassDecl->bases_end(); ++Base) {
1964 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1965 // We found a direct base of this type. That's what we're
1966 // initializing.
1967 DirectBaseSpec = &*Base;
1968 break;
1969 }
1970 }
1971
1972 // Check for a virtual base class.
1973 // FIXME: We might be able to short-circuit this if we know in advance that
1974 // there are no virtual bases.
1975 VirtualBaseSpec = 0;
1976 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1977 // We haven't found a base yet; search the class hierarchy for a
1978 // virtual base class.
1979 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1980 /*DetectVirtual=*/false);
1981 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1982 BaseType, Paths)) {
1983 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1984 Path != Paths.end(); ++Path) {
1985 if (Path->back().Base->isVirtual()) {
1986 VirtualBaseSpec = Path->back().Base;
1987 break;
1988 }
1989 }
1990 }
1991 }
1992
1993 return DirectBaseSpec || VirtualBaseSpec;
1994}
1995
Sebastian Redl6df65482011-09-24 17:48:25 +00001996/// \brief Handle a C++ member initializer using braced-init-list syntax.
1997MemInitResult
1998Sema::ActOnMemInitializer(Decl *ConstructorD,
1999 Scope *S,
2000 CXXScopeSpec &SS,
2001 IdentifierInfo *MemberOrBase,
2002 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002003 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002004 SourceLocation IdLoc,
2005 Expr *InitList,
2006 SourceLocation EllipsisLoc) {
2007 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002008 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002009 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002010}
2011
2012/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002013MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002014Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002015 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002016 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002017 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002018 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002019 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002020 SourceLocation IdLoc,
2021 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002022 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002023 SourceLocation RParenLoc,
2024 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002025 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
2026 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002027 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002028 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002029 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002030}
2031
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002032namespace {
2033
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002034// Callback to only accept typo corrections that can be a valid C++ member
2035// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002036class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2037 public:
2038 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2039 : ClassDecl(ClassDecl) {}
2040
2041 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2042 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2043 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2044 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2045 else
2046 return isa<TypeDecl>(ND);
2047 }
2048 return false;
2049 }
2050
2051 private:
2052 CXXRecordDecl *ClassDecl;
2053};
2054
2055}
2056
Sebastian Redl6df65482011-09-24 17:48:25 +00002057/// \brief Handle a C++ member initializer.
2058MemInitResult
2059Sema::BuildMemInitializer(Decl *ConstructorD,
2060 Scope *S,
2061 CXXScopeSpec &SS,
2062 IdentifierInfo *MemberOrBase,
2063 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002064 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002065 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002066 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002067 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002068 if (!ConstructorD)
2069 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002070
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002071 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002072
2073 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002074 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002075 if (!Constructor) {
2076 // The user wrote a constructor initializer on a function that is
2077 // not a C++ constructor. Ignore the error for now, because we may
2078 // have more member initializers coming; we'll diagnose it just
2079 // once in ActOnMemInitializers.
2080 return true;
2081 }
2082
2083 CXXRecordDecl *ClassDecl = Constructor->getParent();
2084
2085 // C++ [class.base.init]p2:
2086 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002087 // constructor's class and, if not found in that scope, are looked
2088 // up in the scope containing the constructor's definition.
2089 // [Note: if the constructor's class contains a member with the
2090 // same name as a direct or virtual base class of the class, a
2091 // mem-initializer-id naming the member or base class and composed
2092 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002093 // mem-initializer-id for the hidden base class may be specified
2094 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002095 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002096 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002097 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002098 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00002099 if (Result.first != Result.second) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002100 ValueDecl *Member;
2101 if ((Member = dyn_cast<FieldDecl>(*Result.first)) ||
2102 (Member = dyn_cast<IndirectFieldDecl>(*Result.first))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002103 if (EllipsisLoc.isValid())
2104 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002105 << MemberOrBase
2106 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002107
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002108 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002109 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002110 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002111 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002112 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002113 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002114 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002115
2116 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002117 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002118 } else if (DS.getTypeSpecType() == TST_decltype) {
2119 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002120 } else {
2121 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2122 LookupParsedName(R, S, &SS);
2123
2124 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2125 if (!TyD) {
2126 if (R.isAmbiguous()) return true;
2127
John McCallfd225442010-04-09 19:01:14 +00002128 // We don't want access-control diagnostics here.
2129 R.suppressDiagnostics();
2130
Douglas Gregor7a886e12010-01-19 06:46:48 +00002131 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2132 bool NotUnknownSpecialization = false;
2133 DeclContext *DC = computeDeclContext(SS, false);
2134 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2135 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2136
2137 if (!NotUnknownSpecialization) {
2138 // When the scope specifier can refer to a member of an unknown
2139 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002140 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2141 SS.getWithLocInContext(Context),
2142 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002143 if (BaseType.isNull())
2144 return true;
2145
Douglas Gregor7a886e12010-01-19 06:46:48 +00002146 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002147 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002148 }
2149 }
2150
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002151 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002152 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002153 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002154 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002155 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002156 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002157 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2158 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002159 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002160 // We have found a non-static data member with a similar
2161 // name to what was typed; complain and initialize that
2162 // member.
2163 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2164 << MemberOrBase << true << CorrectedQuotedStr
2165 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2166 Diag(Member->getLocation(), diag::note_previous_decl)
2167 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002168
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002169 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002170 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002171 const CXXBaseSpecifier *DirectBaseSpec;
2172 const CXXBaseSpecifier *VirtualBaseSpec;
2173 if (FindBaseInitializer(*this, ClassDecl,
2174 Context.getTypeDeclType(Type),
2175 DirectBaseSpec, VirtualBaseSpec)) {
2176 // We have found a direct or virtual base class with a
2177 // similar name to what was typed; complain and initialize
2178 // that base class.
2179 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002180 << MemberOrBase << false << CorrectedQuotedStr
2181 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002182
2183 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2184 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002185 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002186 diag::note_base_class_specified_here)
2187 << BaseSpec->getType()
2188 << BaseSpec->getSourceRange();
2189
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002190 TyD = Type;
2191 }
2192 }
2193 }
2194
Douglas Gregor7a886e12010-01-19 06:46:48 +00002195 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002196 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002197 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002198 return true;
2199 }
John McCall2b194412009-12-21 10:41:20 +00002200 }
2201
Douglas Gregor7a886e12010-01-19 06:46:48 +00002202 if (BaseType.isNull()) {
2203 BaseType = Context.getTypeDeclType(TyD);
2204 if (SS.isSet()) {
2205 NestedNameSpecifier *Qualifier =
2206 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002207
Douglas Gregor7a886e12010-01-19 06:46:48 +00002208 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002209 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002210 }
John McCall2b194412009-12-21 10:41:20 +00002211 }
2212 }
Mike Stump1eb44332009-09-09 15:08:12 +00002213
John McCalla93c9342009-12-07 02:54:59 +00002214 if (!TInfo)
2215 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002216
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002217 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002218}
2219
Chandler Carruth81c64772011-09-03 01:14:15 +00002220/// Checks a member initializer expression for cases where reference (or
2221/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002222static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2223 Expr *Init,
2224 SourceLocation IdLoc) {
2225 QualType MemberTy = Member->getType();
2226
2227 // We only handle pointers and references currently.
2228 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2229 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2230 return;
2231
2232 const bool IsPointer = MemberTy->isPointerType();
2233 if (IsPointer) {
2234 if (const UnaryOperator *Op
2235 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2236 // The only case we're worried about with pointers requires taking the
2237 // address.
2238 if (Op->getOpcode() != UO_AddrOf)
2239 return;
2240
2241 Init = Op->getSubExpr();
2242 } else {
2243 // We only handle address-of expression initializers for pointers.
2244 return;
2245 }
2246 }
2247
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002248 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2249 // Taking the address of a temporary will be diagnosed as a hard error.
2250 if (IsPointer)
2251 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002252
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002253 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2254 << Member << Init->getSourceRange();
2255 } else if (const DeclRefExpr *DRE
2256 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2257 // We only warn when referring to a non-reference parameter declaration.
2258 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2259 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002260 return;
2261
2262 S.Diag(Init->getExprLoc(),
2263 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2264 : diag::warn_bind_ref_member_to_parameter)
2265 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002266 } else {
2267 // Other initializers are fine.
2268 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002269 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002270
2271 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2272 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002273}
2274
John McCallf312b1e2010-08-26 23:41:50 +00002275MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002276Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002277 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002278 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2279 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2280 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002281 "Member must be a FieldDecl or IndirectFieldDecl");
2282
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002283 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002284 return true;
2285
Douglas Gregor464b2f02010-11-05 22:21:31 +00002286 if (Member->isInvalidDecl())
2287 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002288
John McCallb4190042009-11-04 23:02:40 +00002289 // Diagnose value-uses of fields to initialize themselves, e.g.
2290 // foo(foo)
2291 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002292 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002293 Expr **Args;
2294 unsigned NumArgs;
2295 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2296 Args = ParenList->getExprs();
2297 NumArgs = ParenList->getNumExprs();
2298 } else {
2299 InitListExpr *InitList = cast<InitListExpr>(Init);
2300 Args = InitList->getInits();
2301 NumArgs = InitList->getNumInits();
2302 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002303
Richard Trieude5e75c2012-06-14 23:11:34 +00002304 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2305 != DiagnosticsEngine::Ignored)
2306 for (unsigned i = 0; i < NumArgs; ++i)
2307 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002308 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002309 // initializing the i'th field, throw a warning if any of the >= i'th
2310 // fields are used, as they are not yet initialized.
2311 // Right now we are only handling the case where the i'th field uses
2312 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002313 // Also need to take into account that some fields may be initialized by
2314 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002315 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002316
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002317 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002318
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002319 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002320 // Can't check initialization for a member of dependent type or when
2321 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002322 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002323 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002324 bool InitList = false;
2325 if (isa<InitListExpr>(Init)) {
2326 InitList = true;
2327 Args = &Init;
2328 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002329
2330 if (isStdInitializerList(Member->getType(), 0)) {
2331 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2332 << /*at end of ctor*/1 << InitRange;
2333 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002334 }
2335
Chandler Carruth894aed92010-12-06 09:23:57 +00002336 // Initialize the member.
2337 InitializedEntity MemberEntity =
2338 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2339 : InitializedEntity::InitializeMember(IndirectMember, 0);
2340 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002341 InitList ? InitializationKind::CreateDirectList(IdLoc)
2342 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2343 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002344
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002345 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2346 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002347 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002348 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002349 if (MemberInit.isInvalid())
2350 return true;
2351
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002352 CheckImplicitConversions(MemberInit.get(),
2353 InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002354
2355 // C++0x [class.base.init]p7:
2356 // The initialization of each base and member constitutes a
2357 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002358 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00002359 if (MemberInit.isInvalid())
2360 return true;
2361
2362 // If we are in a dependent context, template instantiation will
2363 // perform this type-checking again. Just save the arguments that we
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002364 // received.
Chandler Carruth894aed92010-12-06 09:23:57 +00002365 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2366 // of the information that we have about the member
2367 // initializer. However, deconstructing the ASTs is a dicey process,
2368 // and this approach is far more likely to get the corner cases right.
Chandler Carruth81c64772011-09-03 01:14:15 +00002369 if (CurContext->isDependentContext()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002370 // The existing Init will do fine.
Chandler Carruth81c64772011-09-03 01:14:15 +00002371 } else {
Chandler Carruth894aed92010-12-06 09:23:57 +00002372 Init = MemberInit.get();
Chandler Carruth81c64772011-09-03 01:14:15 +00002373 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
2374 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002375 }
2376
Chandler Carruth894aed92010-12-06 09:23:57 +00002377 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002378 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2379 InitRange.getBegin(), Init,
2380 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002381 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002382 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2383 InitRange.getBegin(), Init,
2384 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002385 }
Eli Friedman59c04372009-07-29 19:44:27 +00002386}
2387
John McCallf312b1e2010-08-26 23:41:50 +00002388MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002389Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002390 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002391 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sean Hunt97fcc492011-01-08 19:20:43 +00002392 if (!LangOpts.CPlusPlus0x)
Douglas Gregor76852c22011-11-01 01:16:03 +00002393 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002394 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002395 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002396
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002397 bool InitList = true;
2398 Expr **Args = &Init;
2399 unsigned NumArgs = 1;
2400 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2401 InitList = false;
2402 Args = ParenList->getExprs();
2403 NumArgs = ParenList->getNumExprs();
2404 }
2405
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002406 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002407 // Initialize the object.
2408 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2409 QualType(ClassDecl->getTypeForDecl(), 0));
2410 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002411 InitList ? InitializationKind::CreateDirectList(NameLoc)
2412 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2413 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002414 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2415 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002416 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002417 0);
Sean Hunt41717662011-02-26 19:13:13 +00002418 if (DelegationInit.isInvalid())
2419 return true;
2420
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002421 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2422 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002423
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002424 CheckImplicitConversions(DelegationInit.get(), InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002425
2426 // C++0x [class.base.init]p7:
2427 // The initialization of each base and member constitutes a
2428 // full-expression.
2429 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
2430 if (DelegationInit.isInvalid())
2431 return true;
2432
Eli Friedmand21016f2012-05-19 23:35:23 +00002433 // If we are in a dependent context, template instantiation will
2434 // perform this type-checking again. Just save the arguments that we
2435 // received in a ParenListExpr.
2436 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2437 // of the information that we have about the base
2438 // initializer. However, deconstructing the ASTs is a dicey process,
2439 // and this approach is far more likely to get the corner cases right.
2440 if (CurContext->isDependentContext())
2441 DelegationInit = Owned(Init);
2442
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002443 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002444 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002445 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002446}
2447
2448MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002449Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002450 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002451 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002452 SourceLocation BaseLoc
2453 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002454
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002455 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2456 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2457 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2458
2459 // C++ [class.base.init]p2:
2460 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002461 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002462 // of that class, the mem-initializer is ill-formed. A
2463 // mem-initializer-list can initialize a base class using any
2464 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002465 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002466
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002467 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002468 if (EllipsisLoc.isValid()) {
2469 // This is a pack expansion.
2470 if (!BaseType->containsUnexpandedParameterPack()) {
2471 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002472 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002473
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002474 EllipsisLoc = SourceLocation();
2475 }
2476 } else {
2477 // Check for any unexpanded parameter packs.
2478 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2479 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002480
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002481 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002482 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002483 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002484
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002485 // Check for direct and virtual base classes.
2486 const CXXBaseSpecifier *DirectBaseSpec = 0;
2487 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2488 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002489 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2490 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002491 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002492
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002493 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2494 VirtualBaseSpec);
2495
2496 // C++ [base.class.init]p2:
2497 // Unless the mem-initializer-id names a nonstatic data member of the
2498 // constructor's class or a direct or virtual base of that class, the
2499 // mem-initializer is ill-formed.
2500 if (!DirectBaseSpec && !VirtualBaseSpec) {
2501 // If the class has any dependent bases, then it's possible that
2502 // one of those types will resolve to the same type as
2503 // BaseType. Therefore, just treat this as a dependent base
2504 // class initialization. FIXME: Should we try to check the
2505 // initialization anyway? It seems odd.
2506 if (ClassDecl->hasAnyDependentBases())
2507 Dependent = true;
2508 else
2509 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2510 << BaseType << Context.getTypeDeclType(ClassDecl)
2511 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2512 }
2513 }
2514
2515 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002516 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002517
Sebastian Redl6df65482011-09-24 17:48:25 +00002518 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2519 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002520 InitRange.getBegin(), Init,
2521 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002522 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002523
2524 // C++ [base.class.init]p2:
2525 // If a mem-initializer-id is ambiguous because it designates both
2526 // a direct non-virtual base class and an inherited virtual base
2527 // class, the mem-initializer is ill-formed.
2528 if (DirectBaseSpec && VirtualBaseSpec)
2529 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002530 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002531
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002532 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002533 if (!BaseSpec)
2534 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2535
2536 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002537 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002538 Expr **Args = &Init;
2539 unsigned NumArgs = 1;
2540 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002541 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002542 Args = ParenList->getExprs();
2543 NumArgs = ParenList->getNumExprs();
2544 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002545
2546 InitializedEntity BaseEntity =
2547 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2548 InitializationKind Kind =
2549 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2550 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2551 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002552 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2553 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002554 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002555 if (BaseInit.isInvalid())
2556 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002557
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002558 CheckImplicitConversions(BaseInit.get(), InitRange.getBegin());
Sebastian Redl6df65482011-09-24 17:48:25 +00002559
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002560 // C++0x [class.base.init]p7:
2561 // The initialization of each base and member constitutes a
2562 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00002563 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002564 if (BaseInit.isInvalid())
2565 return true;
2566
2567 // If we are in a dependent context, template instantiation will
2568 // perform this type-checking again. Just save the arguments that we
2569 // received in a ParenListExpr.
2570 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2571 // of the information that we have about the base
2572 // initializer. However, deconstructing the ASTs is a dicey process,
2573 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002574 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002575 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002576
Sean Huntcbb67482011-01-08 20:30:50 +00002577 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002578 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002579 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002580 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002581 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002582}
2583
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002584// Create a static_cast\<T&&>(expr).
2585static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2586 QualType ExprType = E->getType();
2587 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2588 SourceLocation ExprLoc = E->getLocStart();
2589 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2590 TargetType, ExprLoc);
2591
2592 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2593 SourceRange(ExprLoc, ExprLoc),
2594 E->getSourceRange()).take();
2595}
2596
Anders Carlssone5ef7402010-04-23 03:10:23 +00002597/// ImplicitInitializerKind - How an implicit base or member initializer should
2598/// initialize its base or member.
2599enum ImplicitInitializerKind {
2600 IIK_Default,
2601 IIK_Copy,
2602 IIK_Move
2603};
2604
Anders Carlssondefefd22010-04-23 02:00:02 +00002605static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002606BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002607 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002608 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002609 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002610 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002611 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002612 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2613 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002614
John McCall60d7b3a2010-08-24 06:29:42 +00002615 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002616
2617 switch (ImplicitInitKind) {
2618 case IIK_Default: {
2619 InitializationKind InitKind
2620 = InitializationKind::CreateDefault(Constructor->getLocation());
2621 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002622 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002623 break;
2624 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002625
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002626 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002627 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002628 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002629 ParmVarDecl *Param = Constructor->getParamDecl(0);
2630 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002631
Anders Carlssone5ef7402010-04-23 03:10:23 +00002632 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002633 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002634 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002635 Constructor->getLocation(), ParamType,
2636 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002637
Eli Friedman5f2987c2012-02-02 03:46:19 +00002638 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2639
Anders Carlssonc7957502010-04-24 22:02:54 +00002640 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002641 QualType ArgTy =
2642 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2643 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002644
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002645 if (Moving) {
2646 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2647 }
2648
John McCallf871d0c2010-08-07 06:22:56 +00002649 CXXCastPath BasePath;
2650 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002651 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2652 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002653 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002654 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002655
Anders Carlssone5ef7402010-04-23 03:10:23 +00002656 InitializationKind InitKind
2657 = InitializationKind::CreateDirect(Constructor->getLocation(),
2658 SourceLocation(), SourceLocation());
2659 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2660 &CopyCtorArg, 1);
2661 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002662 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002663 break;
2664 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002665 }
John McCall9ae2f072010-08-23 23:25:46 +00002666
Douglas Gregor53c374f2010-12-07 00:41:46 +00002667 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002668 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002669 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002670
Anders Carlssondefefd22010-04-23 02:00:02 +00002671 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002672 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002673 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2674 SourceLocation()),
2675 BaseSpec->isVirtual(),
2676 SourceLocation(),
2677 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002678 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002679 SourceLocation());
2680
Anders Carlssondefefd22010-04-23 02:00:02 +00002681 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002682}
2683
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002684static bool RefersToRValueRef(Expr *MemRef) {
2685 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2686 return Referenced->getType()->isRValueReferenceType();
2687}
2688
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002689static bool
2690BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002691 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002692 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002693 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002694 if (Field->isInvalidDecl())
2695 return true;
2696
Chandler Carruthf186b542010-06-29 23:50:44 +00002697 SourceLocation Loc = Constructor->getLocation();
2698
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002699 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2700 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002701 ParmVarDecl *Param = Constructor->getParamDecl(0);
2702 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002703
2704 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002705 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2706 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002707
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002708 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002709 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002710 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002711 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002712
Eli Friedman5f2987c2012-02-02 03:46:19 +00002713 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2714
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002715 if (Moving) {
2716 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2717 }
2718
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002719 // Build a reference to this field within the parameter.
2720 CXXScopeSpec SS;
2721 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2722 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002723 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2724 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002725 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002726 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002727 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002728 ParamType, Loc,
2729 /*IsArrow=*/false,
2730 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002731 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002732 /*FirstQualifierInScope=*/0,
2733 MemberLookup,
2734 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002735 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002736 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002737
2738 // C++11 [class.copy]p15:
2739 // - if a member m has rvalue reference type T&&, it is direct-initialized
2740 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002741 if (RefersToRValueRef(CtorArg.get())) {
2742 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002743 }
2744
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002745 // When the field we are copying is an array, create index variables for
2746 // each dimension of the array. We use these index variables to subscript
2747 // the source array, and other clients (e.g., CodeGen) will perform the
2748 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002749 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002750 QualType BaseType = Field->getType();
2751 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002752 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002753 while (const ConstantArrayType *Array
2754 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002755 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002756 // Create the iteration variable for this array index.
2757 IdentifierInfo *IterationVarName = 0;
2758 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002759 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002760 llvm::raw_svector_ostream OS(Str);
2761 OS << "__i" << IndexVariables.size();
2762 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2763 }
2764 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002765 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002766 IterationVarName, SizeType,
2767 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002768 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002769 IndexVariables.push_back(IterationVar);
2770
2771 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002772 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002773 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002774 assert(!IterationVarRef.isInvalid() &&
2775 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002776 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2777 assert(!IterationVarRef.isInvalid() &&
2778 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002779
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002780 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002781 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002782 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002783 Loc);
2784 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002785 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002786
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002787 BaseType = Array->getElementType();
2788 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002789
2790 // The array subscript expression is an lvalue, which is wrong for moving.
2791 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002792 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002793
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002794 // Construct the entity that we will be initializing. For an array, this
2795 // will be first element in the array, which may require several levels
2796 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002797 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002798 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002799 if (Indirect)
2800 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2801 else
2802 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002803 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2804 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2805 0,
2806 Entities.back()));
2807
2808 // Direct-initialize to use the copy constructor.
2809 InitializationKind InitKind =
2810 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2811
Sebastian Redl74e611a2011-09-04 18:14:28 +00002812 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002813 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002814 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002815
John McCall60d7b3a2010-08-24 06:29:42 +00002816 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002817 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002818 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002819 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002820 if (MemberInit.isInvalid())
2821 return true;
2822
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002823 if (Indirect) {
2824 assert(IndexVariables.size() == 0 &&
2825 "Indirect field improperly initialized");
2826 CXXMemberInit
2827 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2828 Loc, Loc,
2829 MemberInit.takeAs<Expr>(),
2830 Loc);
2831 } else
2832 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2833 Loc, MemberInit.takeAs<Expr>(),
2834 Loc,
2835 IndexVariables.data(),
2836 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002837 return false;
2838 }
2839
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002840 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2841
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002842 QualType FieldBaseElementType =
2843 SemaRef.Context.getBaseElementType(Field->getType());
2844
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002845 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002846 InitializedEntity InitEntity
2847 = Indirect? InitializedEntity::InitializeMember(Indirect)
2848 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002849 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002850 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002851
2852 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002853 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002854 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002855
Douglas Gregor53c374f2010-12-07 00:41:46 +00002856 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002857 if (MemberInit.isInvalid())
2858 return true;
2859
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002860 if (Indirect)
2861 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2862 Indirect, Loc,
2863 Loc,
2864 MemberInit.get(),
2865 Loc);
2866 else
2867 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2868 Field, Loc, Loc,
2869 MemberInit.get(),
2870 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002871 return false;
2872 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002873
Sean Hunt1f2f3842011-05-17 00:19:05 +00002874 if (!Field->getParent()->isUnion()) {
2875 if (FieldBaseElementType->isReferenceType()) {
2876 SemaRef.Diag(Constructor->getLocation(),
2877 diag::err_uninitialized_member_in_ctor)
2878 << (int)Constructor->isImplicit()
2879 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2880 << 0 << Field->getDeclName();
2881 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2882 return true;
2883 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002884
Sean Hunt1f2f3842011-05-17 00:19:05 +00002885 if (FieldBaseElementType.isConstQualified()) {
2886 SemaRef.Diag(Constructor->getLocation(),
2887 diag::err_uninitialized_member_in_ctor)
2888 << (int)Constructor->isImplicit()
2889 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2890 << 1 << Field->getDeclName();
2891 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2892 return true;
2893 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002894 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002895
David Blaikie4e4d0842012-03-11 07:00:24 +00002896 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002897 FieldBaseElementType->isObjCRetainableType() &&
2898 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2899 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002900 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002901 // Default-initialize Objective-C pointers to NULL.
2902 CXXMemberInit
2903 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2904 Loc, Loc,
2905 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2906 Loc);
2907 return false;
2908 }
2909
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002910 // Nothing to initialize.
2911 CXXMemberInit = 0;
2912 return false;
2913}
John McCallf1860e52010-05-20 23:23:51 +00002914
2915namespace {
2916struct BaseAndFieldInfo {
2917 Sema &S;
2918 CXXConstructorDecl *Ctor;
2919 bool AnyErrorsInInits;
2920 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002921 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002922 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002923
2924 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2925 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002926 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2927 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002928 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002929 else if (Generated && Ctor->isMoveConstructor())
2930 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002931 else
2932 IIK = IIK_Default;
2933 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002934
2935 bool isImplicitCopyOrMove() const {
2936 switch (IIK) {
2937 case IIK_Copy:
2938 case IIK_Move:
2939 return true;
2940
2941 case IIK_Default:
2942 return false;
2943 }
David Blaikie30263482012-01-20 21:50:17 +00002944
2945 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002946 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002947
2948 bool addFieldInitializer(CXXCtorInitializer *Init) {
2949 AllToInit.push_back(Init);
2950
2951 // Check whether this initializer makes the field "used".
2952 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2953 S.UnusedPrivateFields.remove(Init->getAnyMember());
2954
2955 return false;
2956 }
John McCallf1860e52010-05-20 23:23:51 +00002957};
2958}
2959
Richard Smitha4950662011-09-19 13:34:43 +00002960/// \brief Determine whether the given indirect field declaration is somewhere
2961/// within an anonymous union.
2962static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2963 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2964 CEnd = F->chain_end();
2965 C != CEnd; ++C)
2966 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2967 if (Record->isUnion())
2968 return true;
2969
2970 return false;
2971}
2972
Douglas Gregorddb21472011-11-02 23:04:16 +00002973/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2974/// array type.
2975static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2976 if (T->isIncompleteArrayType())
2977 return true;
2978
2979 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2980 if (!ArrayT->getSize())
2981 return true;
2982
2983 T = ArrayT->getElementType();
2984 }
2985
2986 return false;
2987}
2988
Richard Smith7a614d82011-06-11 17:19:42 +00002989static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002990 FieldDecl *Field,
2991 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002992
Chandler Carruthe861c602010-06-30 02:59:29 +00002993 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00002994 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
2995 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002996
Richard Smith0b8220a2012-08-07 21:30:42 +00002997 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00002998 // has a brace-or-equal-initializer, the entity is initialized as specified
2999 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003000 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003001 CXXCtorInitializer *Init;
3002 if (Indirect)
3003 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3004 SourceLocation(),
3005 SourceLocation(), 0,
3006 SourceLocation());
3007 else
3008 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3009 SourceLocation(),
3010 SourceLocation(), 0,
3011 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003012 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003013 }
3014
Richard Smithc115f632011-09-18 11:14:50 +00003015 // Don't build an implicit initializer for union members if none was
3016 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003017 if (Field->getParent()->isUnion() ||
3018 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003019 return false;
3020
Douglas Gregorddb21472011-11-02 23:04:16 +00003021 // Don't initialize incomplete or zero-length arrays.
3022 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3023 return false;
3024
John McCallf1860e52010-05-20 23:23:51 +00003025 // Don't try to build an implicit initializer if there were semantic
3026 // errors in any of the initializers (and therefore we might be
3027 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003028 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003029 return false;
3030
Sean Huntcbb67482011-01-08 20:30:50 +00003031 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003032 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3033 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003034 return true;
John McCallf1860e52010-05-20 23:23:51 +00003035
Richard Smith0b8220a2012-08-07 21:30:42 +00003036 if (!Init)
3037 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003038
Richard Smith0b8220a2012-08-07 21:30:42 +00003039 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003040}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003041
3042bool
3043Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3044 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003045 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003046 Constructor->setNumCtorInitializers(1);
3047 CXXCtorInitializer **initializer =
3048 new (Context) CXXCtorInitializer*[1];
3049 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3050 Constructor->setCtorInitializers(initializer);
3051
Sean Huntb76af9c2011-05-03 23:05:34 +00003052 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003053 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003054 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3055 }
3056
Sean Huntc1598702011-05-05 00:05:47 +00003057 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003058
Sean Hunt059ce0d2011-05-01 07:04:31 +00003059 return false;
3060}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003061
John McCallb77115d2011-06-17 00:18:42 +00003062bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3063 CXXCtorInitializer **Initializers,
3064 unsigned NumInitializers,
3065 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003066 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003067 // Just store the initializers as written, they will be checked during
3068 // instantiation.
3069 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003070 Constructor->setNumCtorInitializers(NumInitializers);
3071 CXXCtorInitializer **baseOrMemberInitializers =
3072 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003073 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00003074 NumInitializers * sizeof(CXXCtorInitializer*));
3075 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003076 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003077
3078 // Let template instantiation know whether we had errors.
3079 if (AnyErrors)
3080 Constructor->setInvalidDecl();
3081
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003082 return false;
3083 }
3084
John McCallf1860e52010-05-20 23:23:51 +00003085 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003086
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003087 // We need to build the initializer AST according to order of construction
3088 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003089 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003090 if (!ClassDecl)
3091 return true;
3092
Eli Friedman80c30da2009-11-09 19:20:36 +00003093 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003094
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003095 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003096 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003097
3098 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003099 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003100 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003101 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003102 }
3103
Anders Carlsson711f34a2010-04-21 19:52:01 +00003104 // Keep track of the direct virtual bases.
3105 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3106 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3107 E = ClassDecl->bases_end(); I != E; ++I) {
3108 if (I->isVirtual())
3109 DirectVBases.insert(I);
3110 }
3111
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003112 // Push virtual bases before others.
3113 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3114 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3115
Sean Huntcbb67482011-01-08 20:30:50 +00003116 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003117 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3118 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003119 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003120 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003121 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003122 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003123 VBase, IsInheritedVirtualBase,
3124 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003125 HadError = true;
3126 continue;
3127 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003128
John McCallf1860e52010-05-20 23:23:51 +00003129 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003130 }
3131 }
Mike Stump1eb44332009-09-09 15:08:12 +00003132
John McCallf1860e52010-05-20 23:23:51 +00003133 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003134 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3135 E = ClassDecl->bases_end(); Base != E; ++Base) {
3136 // Virtuals are in the virtual base list and already constructed.
3137 if (Base->isVirtual())
3138 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003139
Sean Huntcbb67482011-01-08 20:30:50 +00003140 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003141 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3142 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003143 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003144 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003145 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003146 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003147 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003148 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003149 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003150 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003151
John McCallf1860e52010-05-20 23:23:51 +00003152 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003153 }
3154 }
Mike Stump1eb44332009-09-09 15:08:12 +00003155
John McCallf1860e52010-05-20 23:23:51 +00003156 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003157 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3158 MemEnd = ClassDecl->decls_end();
3159 Mem != MemEnd; ++Mem) {
3160 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003161 // C++ [class.bit]p2:
3162 // A declaration for a bit-field that omits the identifier declares an
3163 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3164 // initialized.
3165 if (F->isUnnamedBitfield())
3166 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003167
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003168 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003169 // handle anonymous struct/union fields based on their individual
3170 // indirect fields.
3171 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3172 continue;
3173
3174 if (CollectFieldInitializer(*this, Info, F))
3175 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003176 continue;
3177 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003178
3179 // Beyond this point, we only consider default initialization.
3180 if (Info.IIK != IIK_Default)
3181 continue;
3182
3183 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3184 if (F->getType()->isIncompleteArrayType()) {
3185 assert(ClassDecl->hasFlexibleArrayMember() &&
3186 "Incomplete array type is not valid");
3187 continue;
3188 }
3189
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003190 // Initialize each field of an anonymous struct individually.
3191 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3192 HadError = true;
3193
3194 continue;
3195 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003196 }
Mike Stump1eb44332009-09-09 15:08:12 +00003197
John McCallf1860e52010-05-20 23:23:51 +00003198 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003199 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003200 Constructor->setNumCtorInitializers(NumInitializers);
3201 CXXCtorInitializer **baseOrMemberInitializers =
3202 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003203 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003204 NumInitializers * sizeof(CXXCtorInitializer*));
3205 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003206
John McCallef027fe2010-03-16 21:39:52 +00003207 // Constructors implicitly reference the base and member
3208 // destructors.
3209 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3210 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003211 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003212
3213 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003214}
3215
Eli Friedman6347f422009-07-21 19:28:10 +00003216static void *GetKeyForTopLevelField(FieldDecl *Field) {
3217 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003218 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003219 if (RT->getDecl()->isAnonymousStructOrUnion())
3220 return static_cast<void *>(RT->getDecl());
3221 }
3222 return static_cast<void *>(Field);
3223}
3224
Anders Carlssonea356fb2010-04-02 05:42:15 +00003225static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003226 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003227}
3228
Anders Carlssonea356fb2010-04-02 05:42:15 +00003229static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003230 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003231 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003232 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003233
Eli Friedman6347f422009-07-21 19:28:10 +00003234 // For fields injected into the class via declaration of an anonymous union,
3235 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003236 FieldDecl *Field = Member->getAnyMember();
3237
John McCall3c3ccdb2010-04-10 09:28:51 +00003238 // If the field is a member of an anonymous struct or union, our key
3239 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003240 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003241 if (RD->isAnonymousStructOrUnion()) {
3242 while (true) {
3243 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3244 if (Parent->isAnonymousStructOrUnion())
3245 RD = Parent;
3246 else
3247 break;
3248 }
3249
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003250 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003251 }
Mike Stump1eb44332009-09-09 15:08:12 +00003252
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003253 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003254}
3255
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003256static void
3257DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003258 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003259 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003260 unsigned NumInits) {
3261 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003262 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003263
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003264 // Don't check initializers order unless the warning is enabled at the
3265 // location of at least one initializer.
3266 bool ShouldCheckOrder = false;
3267 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003268 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003269 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3270 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003271 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003272 ShouldCheckOrder = true;
3273 break;
3274 }
3275 }
3276 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003277 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003278
John McCalld6ca8da2010-04-10 07:37:23 +00003279 // Build the list of bases and members in the order that they'll
3280 // actually be initialized. The explicit initializers should be in
3281 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003282 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003283
Anders Carlsson071d6102010-04-02 03:38:04 +00003284 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3285
John McCalld6ca8da2010-04-10 07:37:23 +00003286 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003287 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003288 ClassDecl->vbases_begin(),
3289 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003290 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003291
John McCalld6ca8da2010-04-10 07:37:23 +00003292 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003293 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003294 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003295 if (Base->isVirtual())
3296 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003297 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003298 }
Mike Stump1eb44332009-09-09 15:08:12 +00003299
John McCalld6ca8da2010-04-10 07:37:23 +00003300 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003301 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003302 E = ClassDecl->field_end(); Field != E; ++Field) {
3303 if (Field->isUnnamedBitfield())
3304 continue;
3305
David Blaikie581deb32012-06-06 20:45:41 +00003306 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003307 }
3308
John McCalld6ca8da2010-04-10 07:37:23 +00003309 unsigned NumIdealInits = IdealInitKeys.size();
3310 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003311
Sean Huntcbb67482011-01-08 20:30:50 +00003312 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003313 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003314 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003315 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003316
3317 // Scan forward to try to find this initializer in the idealized
3318 // initializers list.
3319 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3320 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003321 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003322
3323 // If we didn't find this initializer, it must be because we
3324 // scanned past it on a previous iteration. That can only
3325 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003326 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003327 Sema::SemaDiagnosticBuilder D =
3328 SemaRef.Diag(PrevInit->getSourceLocation(),
3329 diag::warn_initializer_out_of_order);
3330
Francois Pichet00eb3f92010-12-04 09:14:42 +00003331 if (PrevInit->isAnyMemberInitializer())
3332 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003333 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003334 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003335
Francois Pichet00eb3f92010-12-04 09:14:42 +00003336 if (Init->isAnyMemberInitializer())
3337 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003338 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003339 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003340
3341 // Move back to the initializer's location in the ideal list.
3342 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3343 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003344 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003345
3346 assert(IdealIndex != NumIdealInits &&
3347 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003348 }
John McCalld6ca8da2010-04-10 07:37:23 +00003349
3350 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003351 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003352}
3353
John McCall3c3ccdb2010-04-10 09:28:51 +00003354namespace {
3355bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003356 CXXCtorInitializer *Init,
3357 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003358 if (!PrevInit) {
3359 PrevInit = Init;
3360 return false;
3361 }
3362
3363 if (FieldDecl *Field = Init->getMember())
3364 S.Diag(Init->getSourceLocation(),
3365 diag::err_multiple_mem_initialization)
3366 << Field->getDeclName()
3367 << Init->getSourceRange();
3368 else {
John McCallf4c73712011-01-19 06:33:43 +00003369 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003370 assert(BaseClass && "neither field nor base");
3371 S.Diag(Init->getSourceLocation(),
3372 diag::err_multiple_base_initialization)
3373 << QualType(BaseClass, 0)
3374 << Init->getSourceRange();
3375 }
3376 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3377 << 0 << PrevInit->getSourceRange();
3378
3379 return true;
3380}
3381
Sean Huntcbb67482011-01-08 20:30:50 +00003382typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003383typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3384
3385bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003386 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003387 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003388 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003389 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003390 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003391
3392 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003393 if (Parent->isUnion()) {
3394 UnionEntry &En = Unions[Parent];
3395 if (En.first && En.first != Child) {
3396 S.Diag(Init->getSourceLocation(),
3397 diag::err_multiple_mem_union_initialization)
3398 << Field->getDeclName()
3399 << Init->getSourceRange();
3400 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3401 << 0 << En.second->getSourceRange();
3402 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003403 }
3404 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003405 En.first = Child;
3406 En.second = Init;
3407 }
David Blaikie6fe29652011-11-17 06:01:57 +00003408 if (!Parent->isAnonymousStructOrUnion())
3409 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003410 }
3411
3412 Child = Parent;
3413 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003414 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003415
3416 return false;
3417}
3418}
3419
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003420/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003421void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003422 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003423 CXXCtorInitializer **meminits,
3424 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003425 bool AnyErrors) {
3426 if (!ConstructorDecl)
3427 return;
3428
3429 AdjustDeclIfTemplate(ConstructorDecl);
3430
3431 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003432 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003433
3434 if (!Constructor) {
3435 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3436 return;
3437 }
3438
Sean Huntcbb67482011-01-08 20:30:50 +00003439 CXXCtorInitializer **MemInits =
3440 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003441
3442 // Mapping for the duplicate initializers check.
3443 // For member initializers, this is keyed with a FieldDecl*.
3444 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003445 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003446
3447 // Mapping for the inconsistent anonymous-union initializers check.
3448 RedundantUnionMap MemberUnions;
3449
Anders Carlssonea356fb2010-04-02 05:42:15 +00003450 bool HadError = false;
3451 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003452 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003453
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003454 // Set the source order index.
3455 Init->setSourceOrder(i);
3456
Francois Pichet00eb3f92010-12-04 09:14:42 +00003457 if (Init->isAnyMemberInitializer()) {
3458 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003459 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3460 CheckRedundantUnionInit(*this, Init, MemberUnions))
3461 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003462 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003463 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3464 if (CheckRedundantInit(*this, Init, Members[Key]))
3465 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003466 } else {
3467 assert(Init->isDelegatingInitializer());
3468 // This must be the only initializer
Richard Smitha6ddea62012-09-14 18:21:10 +00003469 if (NumMemInits != 1) {
3470 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003471 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003472 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003473 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003474 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003475 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003476 // Return immediately as the initializer is set.
3477 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003478 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003479 }
3480
Anders Carlssonea356fb2010-04-02 05:42:15 +00003481 if (HadError)
3482 return;
3483
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003484 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003485
Sean Huntcbb67482011-01-08 20:30:50 +00003486 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003487}
3488
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003489void
John McCallef027fe2010-03-16 21:39:52 +00003490Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3491 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003492 // Ignore dependent contexts. Also ignore unions, since their members never
3493 // have destructors implicitly called.
3494 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003495 return;
John McCall58e6f342010-03-16 05:22:47 +00003496
3497 // FIXME: all the access-control diagnostics are positioned on the
3498 // field/base declaration. That's probably good; that said, the
3499 // user might reasonably want to know why the destructor is being
3500 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003501
Anders Carlsson9f853df2009-11-17 04:44:12 +00003502 // Non-static data members.
3503 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3504 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003505 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003506 if (Field->isInvalidDecl())
3507 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003508
3509 // Don't destroy incomplete or zero-length arrays.
3510 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3511 continue;
3512
Anders Carlsson9f853df2009-11-17 04:44:12 +00003513 QualType FieldType = Context.getBaseElementType(Field->getType());
3514
3515 const RecordType* RT = FieldType->getAs<RecordType>();
3516 if (!RT)
3517 continue;
3518
3519 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003520 if (FieldClassDecl->isInvalidDecl())
3521 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003522 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003523 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003524 // The destructor for an implicit anonymous union member is never invoked.
3525 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3526 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003527
Douglas Gregordb89f282010-07-01 22:47:18 +00003528 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003529 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003530 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003531 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003532 << Field->getDeclName()
3533 << FieldType);
3534
Eli Friedman5f2987c2012-02-02 03:46:19 +00003535 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003536 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003537 }
3538
John McCall58e6f342010-03-16 05:22:47 +00003539 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3540
Anders Carlsson9f853df2009-11-17 04:44:12 +00003541 // Bases.
3542 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3543 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003544 // Bases are always records in a well-formed non-dependent class.
3545 const RecordType *RT = Base->getType()->getAs<RecordType>();
3546
3547 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003548 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003549 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003550
John McCall58e6f342010-03-16 05:22:47 +00003551 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003552 // If our base class is invalid, we probably can't get its dtor anyway.
3553 if (BaseClassDecl->isInvalidDecl())
3554 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003555 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003556 continue;
John McCall58e6f342010-03-16 05:22:47 +00003557
Douglas Gregordb89f282010-07-01 22:47:18 +00003558 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003559 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003560
3561 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003562 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003563 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003564 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003565 << Base->getSourceRange(),
3566 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003567
Eli Friedman5f2987c2012-02-02 03:46:19 +00003568 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003569 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003570 }
3571
3572 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003573 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3574 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003575
3576 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003577 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003578
3579 // Ignore direct virtual bases.
3580 if (DirectVirtualBases.count(RT))
3581 continue;
3582
John McCall58e6f342010-03-16 05:22:47 +00003583 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003584 // If our base class is invalid, we probably can't get its dtor anyway.
3585 if (BaseClassDecl->isInvalidDecl())
3586 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003587 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003588 continue;
John McCall58e6f342010-03-16 05:22:47 +00003589
Douglas Gregordb89f282010-07-01 22:47:18 +00003590 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003591 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003592 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003593 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003594 << VBase->getType(),
3595 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003596
Eli Friedman5f2987c2012-02-02 03:46:19 +00003597 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003598 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003599 }
3600}
3601
John McCalld226f652010-08-21 09:40:31 +00003602void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003603 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003604 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003605
Mike Stump1eb44332009-09-09 15:08:12 +00003606 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003607 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003608 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003609}
3610
Mike Stump1eb44332009-09-09 15:08:12 +00003611bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003612 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003613 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3614 unsigned DiagID;
3615 AbstractDiagSelID SelID;
3616
3617 public:
3618 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3619 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3620
3621 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003622 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003623 if (SelID == -1)
3624 S.Diag(Loc, DiagID) << T;
3625 else
3626 S.Diag(Loc, DiagID) << SelID << T;
3627 }
3628 } Diagnoser(DiagID, SelID);
3629
3630 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003631}
3632
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003633bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003634 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003635 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003636 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003637
Anders Carlsson11f21a02009-03-23 19:10:31 +00003638 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003639 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003640
Ted Kremenek6217b802009-07-29 21:53:49 +00003641 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003642 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003643 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003644 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003645
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003646 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003647 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003648 }
Mike Stump1eb44332009-09-09 15:08:12 +00003649
Ted Kremenek6217b802009-07-29 21:53:49 +00003650 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003651 if (!RT)
3652 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003653
John McCall86ff3082010-02-04 22:26:26 +00003654 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003655
John McCall94c3b562010-08-18 09:41:07 +00003656 // We can't answer whether something is abstract until it has a
3657 // definition. If it's currently being defined, we'll walk back
3658 // over all the declarations when we have a full definition.
3659 const CXXRecordDecl *Def = RD->getDefinition();
3660 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003661 return false;
3662
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003663 if (!RD->isAbstract())
3664 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003665
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003666 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003667 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003668
John McCall94c3b562010-08-18 09:41:07 +00003669 return true;
3670}
3671
3672void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3673 // Check if we've already emitted the list of pure virtual functions
3674 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003675 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003676 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003677
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003678 CXXFinalOverriderMap FinalOverriders;
3679 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003680
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003681 // Keep a set of seen pure methods so we won't diagnose the same method
3682 // more than once.
3683 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3684
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003685 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3686 MEnd = FinalOverriders.end();
3687 M != MEnd;
3688 ++M) {
3689 for (OverridingMethods::iterator SO = M->second.begin(),
3690 SOEnd = M->second.end();
3691 SO != SOEnd; ++SO) {
3692 // C++ [class.abstract]p4:
3693 // A class is abstract if it contains or inherits at least one
3694 // pure virtual function for which the final overrider is pure
3695 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003696
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003697 //
3698 if (SO->second.size() != 1)
3699 continue;
3700
3701 if (!SO->second.front().Method->isPure())
3702 continue;
3703
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003704 if (!SeenPureMethods.insert(SO->second.front().Method))
3705 continue;
3706
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003707 Diag(SO->second.front().Method->getLocation(),
3708 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003709 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003710 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003711 }
3712
3713 if (!PureVirtualClassDiagSet)
3714 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3715 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003716}
3717
Anders Carlsson8211eff2009-03-24 01:19:16 +00003718namespace {
John McCall94c3b562010-08-18 09:41:07 +00003719struct AbstractUsageInfo {
3720 Sema &S;
3721 CXXRecordDecl *Record;
3722 CanQualType AbstractType;
3723 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003724
John McCall94c3b562010-08-18 09:41:07 +00003725 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3726 : S(S), Record(Record),
3727 AbstractType(S.Context.getCanonicalType(
3728 S.Context.getTypeDeclType(Record))),
3729 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003730
John McCall94c3b562010-08-18 09:41:07 +00003731 void DiagnoseAbstractType() {
3732 if (Invalid) return;
3733 S.DiagnoseAbstractType(Record);
3734 Invalid = true;
3735 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003736
John McCall94c3b562010-08-18 09:41:07 +00003737 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3738};
3739
3740struct CheckAbstractUsage {
3741 AbstractUsageInfo &Info;
3742 const NamedDecl *Ctx;
3743
3744 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3745 : Info(Info), Ctx(Ctx) {}
3746
3747 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3748 switch (TL.getTypeLocClass()) {
3749#define ABSTRACT_TYPELOC(CLASS, PARENT)
3750#define TYPELOC(CLASS, PARENT) \
3751 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3752#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003753 }
John McCall94c3b562010-08-18 09:41:07 +00003754 }
Mike Stump1eb44332009-09-09 15:08:12 +00003755
John McCall94c3b562010-08-18 09:41:07 +00003756 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3757 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3758 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003759 if (!TL.getArg(I))
3760 continue;
3761
John McCall94c3b562010-08-18 09:41:07 +00003762 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3763 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003764 }
John McCall94c3b562010-08-18 09:41:07 +00003765 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003766
John McCall94c3b562010-08-18 09:41:07 +00003767 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3768 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3769 }
Mike Stump1eb44332009-09-09 15:08:12 +00003770
John McCall94c3b562010-08-18 09:41:07 +00003771 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3772 // Visit the type parameters from a permissive context.
3773 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3774 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3775 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3776 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3777 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3778 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003779 }
John McCall94c3b562010-08-18 09:41:07 +00003780 }
Mike Stump1eb44332009-09-09 15:08:12 +00003781
John McCall94c3b562010-08-18 09:41:07 +00003782 // Visit pointee types from a permissive context.
3783#define CheckPolymorphic(Type) \
3784 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3785 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3786 }
3787 CheckPolymorphic(PointerTypeLoc)
3788 CheckPolymorphic(ReferenceTypeLoc)
3789 CheckPolymorphic(MemberPointerTypeLoc)
3790 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003791 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003792
John McCall94c3b562010-08-18 09:41:07 +00003793 /// Handle all the types we haven't given a more specific
3794 /// implementation for above.
3795 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3796 // Every other kind of type that we haven't called out already
3797 // that has an inner type is either (1) sugar or (2) contains that
3798 // inner type in some way as a subobject.
3799 if (TypeLoc Next = TL.getNextTypeLoc())
3800 return Visit(Next, Sel);
3801
3802 // If there's no inner type and we're in a permissive context,
3803 // don't diagnose.
3804 if (Sel == Sema::AbstractNone) return;
3805
3806 // Check whether the type matches the abstract type.
3807 QualType T = TL.getType();
3808 if (T->isArrayType()) {
3809 Sel = Sema::AbstractArrayType;
3810 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003811 }
John McCall94c3b562010-08-18 09:41:07 +00003812 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3813 if (CT != Info.AbstractType) return;
3814
3815 // It matched; do some magic.
3816 if (Sel == Sema::AbstractArrayType) {
3817 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3818 << T << TL.getSourceRange();
3819 } else {
3820 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3821 << Sel << T << TL.getSourceRange();
3822 }
3823 Info.DiagnoseAbstractType();
3824 }
3825};
3826
3827void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3828 Sema::AbstractDiagSelID Sel) {
3829 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3830}
3831
3832}
3833
3834/// Check for invalid uses of an abstract type in a method declaration.
3835static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3836 CXXMethodDecl *MD) {
3837 // No need to do the check on definitions, which require that
3838 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003839 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003840 return;
3841
3842 // For safety's sake, just ignore it if we don't have type source
3843 // information. This should never happen for non-implicit methods,
3844 // but...
3845 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3846 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3847}
3848
3849/// Check for invalid uses of an abstract type within a class definition.
3850static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3851 CXXRecordDecl *RD) {
3852 for (CXXRecordDecl::decl_iterator
3853 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3854 Decl *D = *I;
3855 if (D->isImplicit()) continue;
3856
3857 // Methods and method templates.
3858 if (isa<CXXMethodDecl>(D)) {
3859 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3860 } else if (isa<FunctionTemplateDecl>(D)) {
3861 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3862 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3863
3864 // Fields and static variables.
3865 } else if (isa<FieldDecl>(D)) {
3866 FieldDecl *FD = cast<FieldDecl>(D);
3867 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3868 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3869 } else if (isa<VarDecl>(D)) {
3870 VarDecl *VD = cast<VarDecl>(D);
3871 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3872 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3873
3874 // Nested classes and class templates.
3875 } else if (isa<CXXRecordDecl>(D)) {
3876 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3877 } else if (isa<ClassTemplateDecl>(D)) {
3878 CheckAbstractClassUsage(Info,
3879 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3880 }
3881 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003882}
3883
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003884/// \brief Perform semantic checks on a class definition that has been
3885/// completing, introducing implicitly-declared members, checking for
3886/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003887void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003888 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003889 return;
3890
John McCall94c3b562010-08-18 09:41:07 +00003891 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3892 AbstractUsageInfo Info(*this, Record);
3893 CheckAbstractClassUsage(Info, Record);
3894 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003895
3896 // If this is not an aggregate type and has no user-declared constructor,
3897 // complain about any non-static data members of reference or const scalar
3898 // type, since they will never get initializers.
3899 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003900 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3901 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003902 bool Complained = false;
3903 for (RecordDecl::field_iterator F = Record->field_begin(),
3904 FEnd = Record->field_end();
3905 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003906 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003907 continue;
3908
Douglas Gregor325e5932010-04-15 00:00:53 +00003909 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003910 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003911 if (!Complained) {
3912 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3913 << Record->getTagKind() << Record;
3914 Complained = true;
3915 }
3916
3917 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3918 << F->getType()->isReferenceType()
3919 << F->getDeclName();
3920 }
3921 }
3922 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003923
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003924 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003925 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003926
3927 if (Record->getIdentifier()) {
3928 // C++ [class.mem]p13:
3929 // If T is the name of a class, then each of the following shall have a
3930 // name different from T:
3931 // - every member of every anonymous union that is a member of class T.
3932 //
3933 // C++ [class.mem]p14:
3934 // In addition, if class T has a user-declared constructor (12.1), every
3935 // non-static data member of class T shall have a name different from T.
3936 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00003937 R.first != R.second; ++R.first) {
3938 NamedDecl *D = *R.first;
3939 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3940 isa<IndirectFieldDecl>(D)) {
3941 Diag(D->getLocation(), diag::err_member_name_of_class)
3942 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003943 break;
3944 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003945 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003946 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003947
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003948 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003949 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003950 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003951 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003952 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3953 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3954 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003955
David Blaikieb6b5b972012-09-21 03:21:07 +00003956 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3957 Diag(Record->getLocation(), diag::warn_abstract_final_class);
3958 DiagnoseAbstractType(Record);
3959 }
3960
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003961 // See if a method overloads virtual methods in a base
3962 /// class without overriding any.
3963 if (!Record->isDependentType()) {
3964 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3965 MEnd = Record->method_end();
3966 M != MEnd; ++M) {
David Blaikie262bc182012-04-30 02:36:29 +00003967 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003968 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003969 }
3970 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00003971
Richard Smith9f569cc2011-10-01 02:31:28 +00003972 // C++0x [dcl.constexpr]p8: A constexpr specifier for a non-static member
3973 // function that is not a constructor declares that member function to be
3974 // const. [...] The class of which that function is a member shall be
3975 // a literal type.
3976 //
Richard Smith9f569cc2011-10-01 02:31:28 +00003977 // If the class has virtual bases, any constexpr members will already have
3978 // been diagnosed by the checks performed on the member declaration, so
3979 // suppress this (less useful) diagnostic.
3980 if (LangOpts.CPlusPlus0x && !Record->isDependentType() &&
3981 !Record->isLiteral() && !Record->getNumVBases()) {
3982 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3983 MEnd = Record->method_end();
3984 M != MEnd; ++M) {
Richard Smith86c3ae42012-02-13 03:54:03 +00003985 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
Richard Smith9f569cc2011-10-01 02:31:28 +00003986 switch (Record->getTemplateSpecializationKind()) {
3987 case TSK_ImplicitInstantiation:
3988 case TSK_ExplicitInstantiationDeclaration:
3989 case TSK_ExplicitInstantiationDefinition:
3990 // If a template instantiates to a non-literal type, but its members
3991 // instantiate to constexpr functions, the template is technically
Richard Smith86c3ae42012-02-13 03:54:03 +00003992 // ill-formed, but we allow it for sanity.
Richard Smith9f569cc2011-10-01 02:31:28 +00003993 continue;
3994
3995 case TSK_Undeclared:
3996 case TSK_ExplicitSpecialization:
David Blaikie262bc182012-04-30 02:36:29 +00003997 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
Douglas Gregorf502d8e2012-05-04 16:48:41 +00003998 diag::err_constexpr_method_non_literal);
Richard Smith9f569cc2011-10-01 02:31:28 +00003999 break;
4000 }
4001
4002 // Only produce one error per class.
4003 break;
4004 }
4005 }
4006 }
4007
Sebastian Redlf677ea32011-02-05 19:23:19 +00004008 // Declare inherited constructors. We do this eagerly here because:
4009 // - The standard requires an eager diagnostic for conflicting inherited
4010 // constructors from different classes.
4011 // - The lazy declaration of the other implicit constructors is so as to not
4012 // waste space and performance on classes that are not meant to be
4013 // instantiated (e.g. meta-functions). This doesn't apply to classes that
4014 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004015 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004016}
4017
4018void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Sean Huntcb45a0f2011-05-12 22:46:25 +00004019 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
4020 ME = Record->method_end();
Richard Smith3003e1d2012-05-15 04:39:51 +00004021 MI != ME; ++MI)
4022 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted())
David Blaikie581deb32012-06-06 20:45:41 +00004023 CheckExplicitlyDefaultedSpecialMember(*MI);
Sean Hunt001cad92011-05-10 00:49:42 +00004024}
4025
Richard Smith7756afa2012-06-10 05:43:50 +00004026/// Is the special member function which would be selected to perform the
4027/// specified operation on the specified class type a constexpr constructor?
4028static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4029 Sema::CXXSpecialMember CSM,
4030 bool ConstArg) {
4031 Sema::SpecialMemberOverloadResult *SMOR =
4032 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4033 false, false, false, false);
4034 if (!SMOR || !SMOR->getMethod())
4035 // A constructor we wouldn't select can't be "involved in initializing"
4036 // anything.
4037 return true;
4038 return SMOR->getMethod()->isConstexpr();
4039}
4040
4041/// Determine whether the specified special member function would be constexpr
4042/// if it were implicitly defined.
4043static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4044 Sema::CXXSpecialMember CSM,
4045 bool ConstArg) {
4046 if (!S.getLangOpts().CPlusPlus0x)
4047 return false;
4048
4049 // C++11 [dcl.constexpr]p4:
4050 // In the definition of a constexpr constructor [...]
4051 switch (CSM) {
4052 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004053 // Since default constructor lookup is essentially trivial (and cannot
4054 // involve, for instance, template instantiation), we compute whether a
4055 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4056 //
4057 // This is important for performance; we need to know whether the default
4058 // constructor is constexpr to determine whether the type is a literal type.
4059 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4060
Richard Smith7756afa2012-06-10 05:43:50 +00004061 case Sema::CXXCopyConstructor:
4062 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004063 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004064 break;
4065
4066 case Sema::CXXCopyAssignment:
4067 case Sema::CXXMoveAssignment:
4068 case Sema::CXXDestructor:
4069 case Sema::CXXInvalid:
4070 return false;
4071 }
4072
4073 // -- if the class is a non-empty union, or for each non-empty anonymous
4074 // union member of a non-union class, exactly one non-static data member
4075 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004076 //
4077 // If we squint, this is guaranteed, since exactly one non-static data member
4078 // will be initialized (if the constructor isn't deleted), we just don't know
4079 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00004080 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004081 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004082
4083 // -- the class shall not have any virtual base classes;
4084 if (ClassDecl->getNumVBases())
4085 return false;
4086
4087 // -- every constructor involved in initializing [...] base class
4088 // sub-objects shall be a constexpr constructor;
4089 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4090 BEnd = ClassDecl->bases_end();
4091 B != BEnd; ++B) {
4092 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4093 if (!BaseType) continue;
4094
4095 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4096 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4097 return false;
4098 }
4099
4100 // -- every constructor involved in initializing non-static data members
4101 // [...] shall be a constexpr constructor;
4102 // -- every non-static data member and base class sub-object shall be
4103 // initialized
4104 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4105 FEnd = ClassDecl->field_end();
4106 F != FEnd; ++F) {
4107 if (F->isInvalidDecl())
4108 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004109 if (const RecordType *RecordTy =
4110 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004111 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4112 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4113 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004114 }
4115 }
4116
4117 // All OK, it's constexpr!
4118 return true;
4119}
4120
Richard Smithb9d0b762012-07-27 04:22:15 +00004121static Sema::ImplicitExceptionSpecification
4122computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4123 switch (S.getSpecialMember(MD)) {
4124 case Sema::CXXDefaultConstructor:
4125 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4126 case Sema::CXXCopyConstructor:
4127 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4128 case Sema::CXXCopyAssignment:
4129 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4130 case Sema::CXXMoveConstructor:
4131 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4132 case Sema::CXXMoveAssignment:
4133 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4134 case Sema::CXXDestructor:
4135 return S.ComputeDefaultedDtorExceptionSpec(MD);
4136 case Sema::CXXInvalid:
4137 break;
4138 }
4139 llvm_unreachable("only special members have implicit exception specs");
4140}
4141
Richard Smithdd25e802012-07-30 23:48:14 +00004142static void
4143updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4144 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4145 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4146 ExceptSpec.getEPI(EPI);
4147 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4148 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4149 FPT->getNumArgs(), EPI));
4150 FD->setType(QualType(NewFPT, 0));
4151}
4152
Richard Smithb9d0b762012-07-27 04:22:15 +00004153void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4154 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4155 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4156 return;
4157
Richard Smithdd25e802012-07-30 23:48:14 +00004158 // Evaluate the exception specification.
4159 ImplicitExceptionSpecification ExceptSpec =
4160 computeImplicitExceptionSpec(*this, Loc, MD);
4161
4162 // Update the type of the special member to use it.
4163 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4164
4165 // A user-provided destructor can be defined outside the class. When that
4166 // happens, be sure to update the exception specification on both
4167 // declarations.
4168 const FunctionProtoType *CanonicalFPT =
4169 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4170 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4171 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4172 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004173}
4174
4175static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4176static bool isImplicitCopyAssignmentArgConst(Sema &S, CXXRecordDecl *ClassDecl);
4177
Richard Smith3003e1d2012-05-15 04:39:51 +00004178void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4179 CXXRecordDecl *RD = MD->getParent();
4180 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004181
Richard Smith3003e1d2012-05-15 04:39:51 +00004182 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4183 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004184
4185 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004186 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004187 bool First = MD == MD->getCanonicalDecl();
4188
4189 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004190
4191 // C++11 [dcl.fct.def.default]p1:
4192 // A function that is explicitly defaulted shall
4193 // -- be a special member function (checked elsewhere),
4194 // -- have the same type (except for ref-qualifiers, and except that a
4195 // copy operation can take a non-const reference) as an implicit
4196 // declaration, and
4197 // -- not have default arguments.
4198 unsigned ExpectedParams = 1;
4199 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4200 ExpectedParams = 0;
4201 if (MD->getNumParams() != ExpectedParams) {
4202 // This also checks for default arguments: a copy or move constructor with a
4203 // default argument is classified as a default constructor, and assignment
4204 // operations and destructors can't have default arguments.
4205 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4206 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004207 HadError = true;
4208 }
4209
Richard Smith3003e1d2012-05-15 04:39:51 +00004210 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004211
Richard Smithb9d0b762012-07-27 04:22:15 +00004212 // Compute argument constness, constexpr, and triviality.
Richard Smith7756afa2012-06-10 05:43:50 +00004213 bool CanHaveConstParam = false;
Axel Naumann8f411c32012-09-17 14:26:53 +00004214 bool Trivial = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004215 switch (CSM) {
4216 case CXXDefaultConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004217 Trivial = RD->hasTrivialDefaultConstructor();
4218 break;
4219 case CXXCopyConstructor:
Richard Smithb9d0b762012-07-27 04:22:15 +00004220 CanHaveConstParam = isImplicitCopyCtorArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004221 Trivial = RD->hasTrivialCopyConstructor();
4222 break;
4223 case CXXCopyAssignment:
Richard Smithb9d0b762012-07-27 04:22:15 +00004224 CanHaveConstParam = isImplicitCopyAssignmentArgConst(*this, RD);
Richard Smith3003e1d2012-05-15 04:39:51 +00004225 Trivial = RD->hasTrivialCopyAssignment();
4226 break;
4227 case CXXMoveConstructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004228 Trivial = RD->hasTrivialMoveConstructor();
4229 break;
4230 case CXXMoveAssignment:
Richard Smith3003e1d2012-05-15 04:39:51 +00004231 Trivial = RD->hasTrivialMoveAssignment();
4232 break;
4233 case CXXDestructor:
Richard Smith3003e1d2012-05-15 04:39:51 +00004234 Trivial = RD->hasTrivialDestructor();
4235 break;
4236 case CXXInvalid:
4237 llvm_unreachable("non-special member explicitly defaulted!");
4238 }
Sean Hunt2b188082011-05-14 05:23:28 +00004239
Richard Smith3003e1d2012-05-15 04:39:51 +00004240 QualType ReturnType = Context.VoidTy;
4241 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4242 // Check for return type matching.
4243 ReturnType = Type->getResultType();
4244 QualType ExpectedReturnType =
4245 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4246 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4247 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4248 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4249 HadError = true;
4250 }
4251
4252 // A defaulted special member cannot have cv-qualifiers.
4253 if (Type->getTypeQuals()) {
4254 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4255 << (CSM == CXXMoveAssignment);
4256 HadError = true;
4257 }
4258 }
4259
4260 // Check for parameter type matching.
4261 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004262 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004263 if (ExpectedParams && ArgType->isReferenceType()) {
4264 // Argument must be reference to possibly-const T.
4265 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004266 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004267
4268 if (ReferentType.isVolatileQualified()) {
4269 Diag(MD->getLocation(),
4270 diag::err_defaulted_special_member_volatile_param) << CSM;
4271 HadError = true;
4272 }
4273
Richard Smith7756afa2012-06-10 05:43:50 +00004274 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004275 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4276 Diag(MD->getLocation(),
4277 diag::err_defaulted_special_member_copy_const_param)
4278 << (CSM == CXXCopyAssignment);
4279 // FIXME: Explain why this special member can't be const.
4280 } else {
4281 Diag(MD->getLocation(),
4282 diag::err_defaulted_special_member_move_const_param)
4283 << (CSM == CXXMoveAssignment);
4284 }
4285 HadError = true;
4286 }
4287
4288 // If a function is explicitly defaulted on its first declaration, it shall
4289 // have the same parameter type as if it had been implicitly declared.
4290 // (Presumably this is to prevent it from being trivial?)
Richard Smith7756afa2012-06-10 05:43:50 +00004291 if (!HasConstParam && CanHaveConstParam && First)
Richard Smith3003e1d2012-05-15 04:39:51 +00004292 Diag(MD->getLocation(),
4293 diag::err_defaulted_special_member_copy_non_const_param)
4294 << (CSM == CXXCopyAssignment);
4295 } else if (ExpectedParams) {
4296 // A copy assignment operator can take its argument by value, but a
4297 // defaulted one cannot.
4298 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004299 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004300 HadError = true;
4301 }
Sean Huntbe631222011-05-17 20:44:43 +00004302
Richard Smithb9d0b762012-07-27 04:22:15 +00004303 // Rebuild the type with the implicit exception specification added, if we
4304 // are going to need it.
4305 const FunctionProtoType *ImplicitType = 0;
4306 if (First || Type->hasExceptionSpec()) {
4307 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4308 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4309 ImplicitType = cast<FunctionProtoType>(
4310 Context.getFunctionType(ReturnType, &ArgType, ExpectedParams, EPI));
4311 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004312
Richard Smith61802452011-12-22 02:22:31 +00004313 // C++11 [dcl.fct.def.default]p2:
4314 // An explicitly-defaulted function may be declared constexpr only if it
4315 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004316 // Do not apply this rule to members of class templates, since core issue 1358
4317 // makes such functions always instantiate to constexpr functions. For
4318 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004319 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4320 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004321 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4322 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4323 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004324 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004325 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004326 }
4327 // and may have an explicit exception-specification only if it is compatible
4328 // with the exception-specification on the implicit declaration.
Richard Smith3003e1d2012-05-15 04:39:51 +00004329 if (Type->hasExceptionSpec() &&
4330 CheckEquivalentExceptionSpec(
4331 PDiag(diag::err_incorrect_defaulted_exception_spec) << CSM,
4332 PDiag(), ImplicitType, SourceLocation(), Type, MD->getLocation()))
4333 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004334
4335 // If a function is explicitly defaulted on its first declaration,
4336 if (First) {
4337 // -- it is implicitly considered to be constexpr if the implicit
4338 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004339 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004340
Richard Smith3003e1d2012-05-15 04:39:51 +00004341 // -- it is implicitly considered to have the same exception-specification
4342 // as if it had been implicitly declared,
4343 MD->setType(QualType(ImplicitType, 0));
Richard Smithe653ba22012-02-26 00:31:33 +00004344
4345 // Such a function is also trivial if the implicitly-declared function
4346 // would have been.
Richard Smith3003e1d2012-05-15 04:39:51 +00004347 MD->setTrivial(Trivial);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004348 }
4349
Richard Smith3003e1d2012-05-15 04:39:51 +00004350 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004351 if (First) {
4352 MD->setDeletedAsWritten();
4353 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004354 // C++11 [dcl.fct.def.default]p4:
4355 // [For a] user-provided explicitly-defaulted function [...] if such a
4356 // function is implicitly defined as deleted, the program is ill-formed.
4357 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4358 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004359 }
4360 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004361
Richard Smith3003e1d2012-05-15 04:39:51 +00004362 if (HadError)
4363 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004364}
4365
Richard Smith7d5088a2012-02-18 02:02:13 +00004366namespace {
4367struct SpecialMemberDeletionInfo {
4368 Sema &S;
4369 CXXMethodDecl *MD;
4370 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004371 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004372
4373 // Properties of the special member, computed for convenience.
4374 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4375 SourceLocation Loc;
4376
4377 bool AllFieldsAreConst;
4378
4379 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004380 Sema::CXXSpecialMember CSM, bool Diagnose)
4381 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004382 IsConstructor(false), IsAssignment(false), IsMove(false),
4383 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4384 AllFieldsAreConst(true) {
4385 switch (CSM) {
4386 case Sema::CXXDefaultConstructor:
4387 case Sema::CXXCopyConstructor:
4388 IsConstructor = true;
4389 break;
4390 case Sema::CXXMoveConstructor:
4391 IsConstructor = true;
4392 IsMove = true;
4393 break;
4394 case Sema::CXXCopyAssignment:
4395 IsAssignment = true;
4396 break;
4397 case Sema::CXXMoveAssignment:
4398 IsAssignment = true;
4399 IsMove = true;
4400 break;
4401 case Sema::CXXDestructor:
4402 break;
4403 case Sema::CXXInvalid:
4404 llvm_unreachable("invalid special member kind");
4405 }
4406
4407 if (MD->getNumParams()) {
4408 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4409 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4410 }
4411 }
4412
4413 bool inUnion() const { return MD->getParent()->isUnion(); }
4414
4415 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004416 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4417 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004418 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004419 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4420 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4421 Quals = 0;
4422 return S.LookupSpecialMember(Class, CSM,
4423 ConstArg || (Quals & Qualifiers::Const),
4424 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004425 MD->getRefQualifier() == RQ_RValue,
4426 TQ & Qualifiers::Const,
4427 TQ & Qualifiers::Volatile);
4428 }
4429
Richard Smith6c4c36c2012-03-30 20:53:28 +00004430 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004431
Richard Smith6c4c36c2012-03-30 20:53:28 +00004432 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004433 bool shouldDeleteForField(FieldDecl *FD);
4434 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004435
Richard Smith517bb842012-07-18 03:51:16 +00004436 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4437 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004438 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4439 Sema::SpecialMemberOverloadResult *SMOR,
4440 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004441
4442 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004443};
4444}
4445
John McCall12d8d802012-04-09 20:53:23 +00004446/// Is the given special member inaccessible when used on the given
4447/// sub-object.
4448bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4449 CXXMethodDecl *target) {
4450 /// If we're operating on a base class, the object type is the
4451 /// type of this special member.
4452 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004453 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004454 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4455 objectTy = S.Context.getTypeDeclType(MD->getParent());
4456 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4457
4458 // If we're operating on a field, the object type is the type of the field.
4459 } else {
4460 objectTy = S.Context.getTypeDeclType(target->getParent());
4461 }
4462
4463 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4464}
4465
Richard Smith6c4c36c2012-03-30 20:53:28 +00004466/// Check whether we should delete a special member due to the implicit
4467/// definition containing a call to a special member of a subobject.
4468bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4469 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4470 bool IsDtorCallInCtor) {
4471 CXXMethodDecl *Decl = SMOR->getMethod();
4472 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4473
4474 int DiagKind = -1;
4475
4476 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4477 DiagKind = !Decl ? 0 : 1;
4478 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4479 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004480 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004481 DiagKind = 3;
4482 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4483 !Decl->isTrivial()) {
4484 // A member of a union must have a trivial corresponding special member.
4485 // As a weird special case, a destructor call from a union's constructor
4486 // must be accessible and non-deleted, but need not be trivial. Such a
4487 // destructor is never actually called, but is semantically checked as
4488 // if it were.
4489 DiagKind = 4;
4490 }
4491
4492 if (DiagKind == -1)
4493 return false;
4494
4495 if (Diagnose) {
4496 if (Field) {
4497 S.Diag(Field->getLocation(),
4498 diag::note_deleted_special_member_class_subobject)
4499 << CSM << MD->getParent() << /*IsField*/true
4500 << Field << DiagKind << IsDtorCallInCtor;
4501 } else {
4502 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4503 S.Diag(Base->getLocStart(),
4504 diag::note_deleted_special_member_class_subobject)
4505 << CSM << MD->getParent() << /*IsField*/false
4506 << Base->getType() << DiagKind << IsDtorCallInCtor;
4507 }
4508
4509 if (DiagKind == 1)
4510 S.NoteDeletedFunction(Decl);
4511 // FIXME: Explain inaccessibility if DiagKind == 3.
4512 }
4513
4514 return true;
4515}
4516
Richard Smith9a561d52012-02-26 09:11:52 +00004517/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004518/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004519bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004520 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004521 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004522
4523 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004524 // -- any direct or virtual base class, or non-static data member with no
4525 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004526 // either M has no default constructor or overload resolution as applied
4527 // to M's default constructor results in an ambiguity or in a function
4528 // that is deleted or inaccessible
4529 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4530 // -- a direct or virtual base class B that cannot be copied/moved because
4531 // overload resolution, as applied to B's corresponding special member,
4532 // results in an ambiguity or a function that is deleted or inaccessible
4533 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004534 // C++11 [class.dtor]p5:
4535 // -- any direct or virtual base class [...] has a type with a destructor
4536 // that is deleted or inaccessible
4537 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004538 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004539 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004540 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004541
Richard Smith6c4c36c2012-03-30 20:53:28 +00004542 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4543 // -- any direct or virtual base class or non-static data member has a
4544 // type with a destructor that is deleted or inaccessible
4545 if (IsConstructor) {
4546 Sema::SpecialMemberOverloadResult *SMOR =
4547 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4548 false, false, false, false, false);
4549 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4550 return true;
4551 }
4552
Richard Smith9a561d52012-02-26 09:11:52 +00004553 return false;
4554}
4555
4556/// Check whether we should delete a special member function due to the class
4557/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004558bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004559 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004560 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004561}
4562
4563/// Check whether we should delete a special member function due to the class
4564/// having a particular non-static data member.
4565bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4566 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4567 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4568
4569 if (CSM == Sema::CXXDefaultConstructor) {
4570 // For a default constructor, all references must be initialized in-class
4571 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004572 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4573 if (Diagnose)
4574 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4575 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004576 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004577 }
Richard Smith79363f52012-02-27 06:07:25 +00004578 // C++11 [class.ctor]p5: any non-variant non-static data member of
4579 // const-qualified type (or array thereof) with no
4580 // brace-or-equal-initializer does not have a user-provided default
4581 // constructor.
4582 if (!inUnion() && FieldType.isConstQualified() &&
4583 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004584 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4585 if (Diagnose)
4586 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004587 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004588 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004589 }
4590
4591 if (inUnion() && !FieldType.isConstQualified())
4592 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004593 } else if (CSM == Sema::CXXCopyConstructor) {
4594 // For a copy constructor, data members must not be of rvalue reference
4595 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004596 if (FieldType->isRValueReferenceType()) {
4597 if (Diagnose)
4598 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4599 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004600 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004601 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004602 } else if (IsAssignment) {
4603 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004604 if (FieldType->isReferenceType()) {
4605 if (Diagnose)
4606 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4607 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004608 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004609 }
4610 if (!FieldRecord && FieldType.isConstQualified()) {
4611 // C++11 [class.copy]p23:
4612 // -- a non-static data member of const non-class type (or array thereof)
4613 if (Diagnose)
4614 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004615 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004616 return true;
4617 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004618 }
4619
4620 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004621 // Some additional restrictions exist on the variant members.
4622 if (!inUnion() && FieldRecord->isUnion() &&
4623 FieldRecord->isAnonymousStructOrUnion()) {
4624 bool AllVariantFieldsAreConst = true;
4625
Richard Smithdf8dc862012-03-29 19:00:10 +00004626 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004627 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4628 UE = FieldRecord->field_end();
4629 UI != UE; ++UI) {
4630 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004631
4632 if (!UnionFieldType.isConstQualified())
4633 AllVariantFieldsAreConst = false;
4634
Richard Smith9a561d52012-02-26 09:11:52 +00004635 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4636 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004637 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4638 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004639 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004640 }
4641
4642 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004643 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004644 FieldRecord->field_begin() != FieldRecord->field_end()) {
4645 if (Diagnose)
4646 S.Diag(FieldRecord->getLocation(),
4647 diag::note_deleted_default_ctor_all_const)
4648 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004649 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004650 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004651
Richard Smithdf8dc862012-03-29 19:00:10 +00004652 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004653 // This is technically non-conformant, but sanity demands it.
4654 return false;
4655 }
4656
Richard Smith517bb842012-07-18 03:51:16 +00004657 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4658 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004659 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004660 }
4661
4662 return false;
4663}
4664
4665/// C++11 [class.ctor] p5:
4666/// A defaulted default constructor for a class X is defined as deleted if
4667/// X is a union and all of its variant members are of const-qualified type.
4668bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004669 // This is a silly definition, because it gives an empty union a deleted
4670 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004671 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4672 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4673 if (Diagnose)
4674 S.Diag(MD->getParent()->getLocation(),
4675 diag::note_deleted_default_ctor_all_const)
4676 << MD->getParent() << /*not anonymous union*/0;
4677 return true;
4678 }
4679 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004680}
4681
4682/// Determine whether a defaulted special member function should be defined as
4683/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4684/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004685bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4686 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004687 if (MD->isInvalidDecl())
4688 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004689 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004690 assert(!RD->isDependentType() && "do deletion after instantiation");
Abramo Bagnaracdb80762011-07-11 08:52:40 +00004691 if (!LangOpts.CPlusPlus0x || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004692 return false;
4693
Richard Smith7d5088a2012-02-18 02:02:13 +00004694 // C++11 [expr.lambda.prim]p19:
4695 // The closure type associated with a lambda-expression has a
4696 // deleted (8.4.3) default constructor and a deleted copy
4697 // assignment operator.
4698 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004699 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4700 if (Diagnose)
4701 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004702 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004703 }
4704
Richard Smith5bdaac52012-04-02 20:59:25 +00004705 // For an anonymous struct or union, the copy and assignment special members
4706 // will never be used, so skip the check. For an anonymous union declared at
4707 // namespace scope, the constructor and destructor are used.
4708 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4709 RD->isAnonymousStructOrUnion())
4710 return false;
4711
Richard Smith6c4c36c2012-03-30 20:53:28 +00004712 // C++11 [class.copy]p7, p18:
4713 // If the class definition declares a move constructor or move assignment
4714 // operator, an implicitly declared copy constructor or copy assignment
4715 // operator is defined as deleted.
4716 if (MD->isImplicit() &&
4717 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4718 CXXMethodDecl *UserDeclaredMove = 0;
4719
4720 // In Microsoft mode, a user-declared move only causes the deletion of the
4721 // corresponding copy operation, not both copy operations.
4722 if (RD->hasUserDeclaredMoveConstructor() &&
4723 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4724 if (!Diagnose) return true;
4725 UserDeclaredMove = RD->getMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00004726 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004727 } else if (RD->hasUserDeclaredMoveAssignment() &&
4728 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4729 if (!Diagnose) return true;
4730 UserDeclaredMove = RD->getMoveAssignmentOperator();
Richard Smith1c931be2012-04-02 18:40:40 +00004731 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004732 }
4733
4734 if (UserDeclaredMove) {
4735 Diag(UserDeclaredMove->getLocation(),
4736 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004737 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004738 << UserDeclaredMove->isMoveAssignmentOperator();
4739 return true;
4740 }
4741 }
Sean Hunte16da072011-10-10 06:18:57 +00004742
Richard Smith5bdaac52012-04-02 20:59:25 +00004743 // Do access control from the special member function
4744 ContextRAII MethodContext(*this, MD);
4745
Richard Smith9a561d52012-02-26 09:11:52 +00004746 // C++11 [class.dtor]p5:
4747 // -- for a virtual destructor, lookup of the non-array deallocation function
4748 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004749 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004750 FunctionDecl *OperatorDelete = 0;
4751 DeclarationName Name =
4752 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4753 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004754 OperatorDelete, false)) {
4755 if (Diagnose)
4756 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004757 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004758 }
Richard Smith9a561d52012-02-26 09:11:52 +00004759 }
4760
Richard Smith6c4c36c2012-03-30 20:53:28 +00004761 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004762
Sean Huntcdee3fe2011-05-11 22:34:38 +00004763 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004764 BE = RD->bases_end(); BI != BE; ++BI)
4765 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004766 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004767 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004768
4769 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004770 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004771 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004772 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004773
4774 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004775 FE = RD->field_end(); FI != FE; ++FI)
4776 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004777 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004778 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004779
Richard Smith7d5088a2012-02-18 02:02:13 +00004780 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004781 return true;
4782
4783 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004784}
4785
4786/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004787namespace {
4788 struct FindHiddenVirtualMethodData {
4789 Sema *S;
4790 CXXMethodDecl *Method;
4791 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004792 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00004793 };
4794}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004795
David Blaikie5f750682012-10-19 00:53:08 +00004796/// \brief Check whether any most overriden method from MD in Methods
4797static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
4798 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4799 if (MD->size_overridden_methods() == 0)
4800 return Methods.count(MD->getCanonicalDecl());
4801 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4802 E = MD->end_overridden_methods();
4803 I != E; ++I)
4804 if (CheckMostOverridenMethods(*I, Methods))
4805 return true;
4806 return false;
4807}
4808
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004809/// \brief Member lookup function that determines whether a given C++
4810/// method overloads virtual methods in a base class without overriding any,
4811/// to be used with CXXRecordDecl::lookupInBases().
4812static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
4813 CXXBasePath &Path,
4814 void *UserData) {
4815 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
4816
4817 FindHiddenVirtualMethodData &Data
4818 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
4819
4820 DeclarationName Name = Data.Method->getDeclName();
4821 assert(Name.getNameKind() == DeclarationName::Identifier);
4822
4823 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00004824 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004825 for (Path.Decls = BaseRecord->lookup(Name);
4826 Path.Decls.first != Path.Decls.second;
4827 ++Path.Decls.first) {
4828 NamedDecl *D = *Path.Decls.first;
4829 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00004830 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004831 foundSameNameMethod = true;
4832 // Interested only in hidden virtual methods.
4833 if (!MD->isVirtual())
4834 continue;
4835 // If the method we are checking overrides a method from its base
4836 // don't warn about the other overloaded methods.
4837 if (!Data.S->IsOverload(Data.Method, MD, false))
4838 return true;
4839 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00004840 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004841 overloadedMethods.push_back(MD);
4842 }
4843 }
4844
4845 if (foundSameNameMethod)
4846 Data.OverloadedMethods.append(overloadedMethods.begin(),
4847 overloadedMethods.end());
4848 return foundSameNameMethod;
4849}
4850
David Blaikie5f750682012-10-19 00:53:08 +00004851/// \brief Add the most overriden methods from MD to Methods
4852static void AddMostOverridenMethods(const CXXMethodDecl *MD,
4853 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
4854 if (MD->size_overridden_methods() == 0)
4855 Methods.insert(MD->getCanonicalDecl());
4856 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4857 E = MD->end_overridden_methods();
4858 I != E; ++I)
4859 AddMostOverridenMethods(*I, Methods);
4860}
4861
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004862/// \brief See if a method overloads virtual methods in a base class without
4863/// overriding any.
4864void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4865 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00004866 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004867 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00004868 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004869 return;
4870
4871 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4872 /*bool RecordPaths=*/false,
4873 /*bool DetectVirtual=*/false);
4874 FindHiddenVirtualMethodData Data;
4875 Data.Method = MD;
4876 Data.S = this;
4877
4878 // Keep the base methods that were overriden or introduced in the subclass
4879 // by 'using' in a set. A base method not in this set is hidden.
4880 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4881 res.first != res.second; ++res.first) {
David Blaikie5f750682012-10-19 00:53:08 +00004882 NamedDecl *ND = *res.first;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004883 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
David Blaikie5f750682012-10-19 00:53:08 +00004884 ND = shad->getTargetDecl();
4885 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
4886 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004887 }
4888
4889 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4890 !Data.OverloadedMethods.empty()) {
4891 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4892 << MD << (Data.OverloadedMethods.size() > 1);
4893
4894 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4895 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4896 Diag(overloadedMD->getLocation(),
4897 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4898 }
4899 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004900}
4901
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004902void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00004903 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004904 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00004905 SourceLocation RBrac,
4906 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00004907 if (!TagDecl)
4908 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004909
Douglas Gregor42af25f2009-05-11 19:58:34 +00004910 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00004911
Rafael Espindolaf729ce02012-07-12 04:32:30 +00004912 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4913 if (l->getKind() != AttributeList::AT_Visibility)
4914 continue;
4915 l->setInvalid();
4916 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
4917 l->getName();
4918 }
4919
David Blaikie77b6de02011-09-22 02:58:26 +00004920 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00004921 // strict aliasing violation!
4922 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00004923 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00004924
Douglas Gregor23c94db2010-07-02 17:43:08 +00004925 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00004926 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00004927}
4928
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004929/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4930/// special functions, such as the default constructor, copy
4931/// constructor, or destructor, to the given C++ class (C++
4932/// [special]p1). This routine can only be executed just before the
4933/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004934void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004935 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00004936 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004937
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00004938 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00004939 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004940
David Blaikie4e4d0842012-03-11 07:00:24 +00004941 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveConstructor())
Richard Smithb701d3d2011-12-24 21:56:24 +00004942 ++ASTContext::NumImplicitMoveConstructors;
4943
Douglas Gregora376d102010-07-02 21:50:04 +00004944 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4945 ++ASTContext::NumImplicitCopyAssignmentOperators;
4946
4947 // If we have a dynamic class, then the copy assignment operator may be
4948 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4949 // it shows up in the right place in the vtable and that we diagnose
4950 // problems with the implicit exception specification.
4951 if (ClassDecl->isDynamicClass())
4952 DeclareImplicitCopyAssignment(ClassDecl);
4953 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004954
Richard Smith1c931be2012-04-02 18:40:40 +00004955 if (getLangOpts().CPlusPlus0x && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00004956 ++ASTContext::NumImplicitMoveAssignmentOperators;
4957
4958 // Likewise for the move assignment operator.
4959 if (ClassDecl->isDynamicClass())
4960 DeclareImplicitMoveAssignment(ClassDecl);
4961 }
4962
Douglas Gregor4923aa22010-07-02 20:37:36 +00004963 if (!ClassDecl->hasUserDeclaredDestructor()) {
4964 ++ASTContext::NumImplicitDestructors;
4965
4966 // If we have a dynamic class, then the destructor may be virtual, so we
4967 // have to declare the destructor immediately. This ensures that, e.g., it
4968 // shows up in the right place in the vtable and that we diagnose problems
4969 // with the implicit exception specification.
4970 if (ClassDecl->isDynamicClass())
4971 DeclareImplicitDestructor(ClassDecl);
4972 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00004973}
4974
Francois Pichet8387e2a2011-04-22 22:18:13 +00004975void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4976 if (!D)
4977 return;
4978
4979 int NumParamList = D->getNumTemplateParameterLists();
4980 for (int i = 0; i < NumParamList; i++) {
4981 TemplateParameterList* Params = D->getTemplateParameterList(i);
4982 for (TemplateParameterList::iterator Param = Params->begin(),
4983 ParamEnd = Params->end();
4984 Param != ParamEnd; ++Param) {
4985 NamedDecl *Named = cast<NamedDecl>(*Param);
4986 if (Named->getDeclName()) {
4987 S->AddDecl(Named);
4988 IdResolver.AddDecl(Named);
4989 }
4990 }
4991 }
4992}
4993
John McCalld226f652010-08-21 09:40:31 +00004994void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00004995 if (!D)
4996 return;
4997
4998 TemplateParameterList *Params = 0;
4999 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5000 Params = Template->getTemplateParameters();
5001 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5002 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5003 Params = PartialSpec->getTemplateParameters();
5004 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005005 return;
5006
Douglas Gregor6569d682009-05-27 23:11:45 +00005007 for (TemplateParameterList::iterator Param = Params->begin(),
5008 ParamEnd = Params->end();
5009 Param != ParamEnd; ++Param) {
5010 NamedDecl *Named = cast<NamedDecl>(*Param);
5011 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005012 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005013 IdResolver.AddDecl(Named);
5014 }
5015 }
5016}
5017
John McCalld226f652010-08-21 09:40:31 +00005018void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005019 if (!RecordD) return;
5020 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005021 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005022 PushDeclContext(S, Record);
5023}
5024
John McCalld226f652010-08-21 09:40:31 +00005025void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005026 if (!RecordD) return;
5027 PopDeclContext();
5028}
5029
Douglas Gregor72b505b2008-12-16 21:30:33 +00005030/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5031/// parsing a top-level (non-nested) C++ class, and we are now
5032/// parsing those parts of the given Method declaration that could
5033/// not be parsed earlier (C++ [class.mem]p2), such as default
5034/// arguments. This action should enter the scope of the given
5035/// Method declaration as if we had just parsed the qualified method
5036/// name. However, it should not bring the parameters into scope;
5037/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005038void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005039}
5040
5041/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5042/// C++ method declaration. We're (re-)introducing the given
5043/// function parameter into scope for use in parsing later parts of
5044/// the method declaration. For example, we could see an
5045/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005046void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005047 if (!ParamD)
5048 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005049
John McCalld226f652010-08-21 09:40:31 +00005050 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005051
5052 // If this parameter has an unparsed default argument, clear it out
5053 // to make way for the parsed default argument.
5054 if (Param->hasUnparsedDefaultArg())
5055 Param->setDefaultArg(0);
5056
John McCalld226f652010-08-21 09:40:31 +00005057 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005058 if (Param->getDeclName())
5059 IdResolver.AddDecl(Param);
5060}
5061
5062/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5063/// processing the delayed method declaration for Method. The method
5064/// declaration is now considered finished. There may be a separate
5065/// ActOnStartOfFunctionDef action later (not necessarily
5066/// immediately!) for this method, if it was also defined inside the
5067/// class body.
John McCalld226f652010-08-21 09:40:31 +00005068void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005069 if (!MethodD)
5070 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005071
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005072 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005073
John McCalld226f652010-08-21 09:40:31 +00005074 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005075
5076 // Now that we have our default arguments, check the constructor
5077 // again. It could produce additional diagnostics or affect whether
5078 // the class has implicitly-declared destructors, among other
5079 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005080 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5081 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005082
5083 // Check the default arguments, which we may have added.
5084 if (!Method->isInvalidDecl())
5085 CheckCXXDefaultArguments(Method);
5086}
5087
Douglas Gregor42a552f2008-11-05 20:51:48 +00005088/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005089/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005090/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005091/// emit diagnostics and set the invalid bit to true. In any case, the type
5092/// will be updated to reflect a well-formed type for the constructor and
5093/// returned.
5094QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005095 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005096 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005097
5098 // C++ [class.ctor]p3:
5099 // A constructor shall not be virtual (10.3) or static (9.4). A
5100 // constructor can be invoked for a const, volatile or const
5101 // volatile object. A constructor shall not be declared const,
5102 // volatile, or const volatile (9.3.2).
5103 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005104 if (!D.isInvalidType())
5105 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5106 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5107 << SourceRange(D.getIdentifierLoc());
5108 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005109 }
John McCalld931b082010-08-26 03:08:43 +00005110 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005111 if (!D.isInvalidType())
5112 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5113 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5114 << SourceRange(D.getIdentifierLoc());
5115 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005116 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005117 }
Mike Stump1eb44332009-09-09 15:08:12 +00005118
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005119 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005120 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005121 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005122 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5123 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005124 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005125 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5126 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005127 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005128 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5129 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005130 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005131 }
Mike Stump1eb44332009-09-09 15:08:12 +00005132
Douglas Gregorc938c162011-01-26 05:01:58 +00005133 // C++0x [class.ctor]p4:
5134 // A constructor shall not be declared with a ref-qualifier.
5135 if (FTI.hasRefQualifier()) {
5136 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5137 << FTI.RefQualifierIsLValueRef
5138 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5139 D.setInvalidType();
5140 }
5141
Douglas Gregor42a552f2008-11-05 20:51:48 +00005142 // Rebuild the function type "R" without any type qualifiers (in
5143 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005144 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005145 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005146 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5147 return R;
5148
5149 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5150 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005151 EPI.RefQualifier = RQ_None;
5152
Chris Lattner65401802009-04-25 08:28:21 +00005153 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005154 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005155}
5156
Douglas Gregor72b505b2008-12-16 21:30:33 +00005157/// CheckConstructor - Checks a fully-formed constructor for
5158/// well-formedness, issuing any diagnostics required. Returns true if
5159/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005160void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005161 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005162 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5163 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005164 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005165
5166 // C++ [class.copy]p3:
5167 // A declaration of a constructor for a class X is ill-formed if
5168 // its first parameter is of type (optionally cv-qualified) X and
5169 // either there are no other parameters or else all other
5170 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005171 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005172 ((Constructor->getNumParams() == 1) ||
5173 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005174 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5175 Constructor->getTemplateSpecializationKind()
5176 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005177 QualType ParamType = Constructor->getParamDecl(0)->getType();
5178 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5179 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005180 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005181 const char *ConstRef
5182 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5183 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005184 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005185 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005186
5187 // FIXME: Rather that making the constructor invalid, we should endeavor
5188 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005189 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005190 }
5191 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005192}
5193
John McCall15442822010-08-04 01:04:25 +00005194/// CheckDestructor - Checks a fully-formed destructor definition for
5195/// well-formedness, issuing any diagnostics required. Returns true
5196/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005197bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005198 CXXRecordDecl *RD = Destructor->getParent();
5199
5200 if (Destructor->isVirtual()) {
5201 SourceLocation Loc;
5202
5203 if (!Destructor->isImplicit())
5204 Loc = Destructor->getLocation();
5205 else
5206 Loc = RD->getLocation();
5207
5208 // If we have a virtual destructor, look up the deallocation function
5209 FunctionDecl *OperatorDelete = 0;
5210 DeclarationName Name =
5211 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005212 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005213 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005214
Eli Friedman5f2987c2012-02-02 03:46:19 +00005215 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005216
5217 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005218 }
Anders Carlsson37909802009-11-30 21:24:50 +00005219
5220 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005221}
5222
Mike Stump1eb44332009-09-09 15:08:12 +00005223static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005224FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5225 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5226 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005227 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005228}
5229
Douglas Gregor42a552f2008-11-05 20:51:48 +00005230/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5231/// the well-formednes of the destructor declarator @p D with type @p
5232/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005233/// emit diagnostics and set the declarator to invalid. Even if this happens,
5234/// will be updated to reflect a well-formed type for the destructor and
5235/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005236QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005237 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005238 // C++ [class.dtor]p1:
5239 // [...] A typedef-name that names a class is a class-name
5240 // (7.1.3); however, a typedef-name that names a class shall not
5241 // be used as the identifier in the declarator for a destructor
5242 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005243 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005244 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005245 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005246 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005247 else if (const TemplateSpecializationType *TST =
5248 DeclaratorType->getAs<TemplateSpecializationType>())
5249 if (TST->isTypeAlias())
5250 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5251 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005252
5253 // C++ [class.dtor]p2:
5254 // A destructor is used to destroy objects of its class type. A
5255 // destructor takes no parameters, and no return type can be
5256 // specified for it (not even void). The address of a destructor
5257 // shall not be taken. A destructor shall not be static. A
5258 // destructor can be invoked for a const, volatile or const
5259 // volatile object. A destructor shall not be declared const,
5260 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005261 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005262 if (!D.isInvalidType())
5263 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5264 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005265 << SourceRange(D.getIdentifierLoc())
5266 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5267
John McCalld931b082010-08-26 03:08:43 +00005268 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005269 }
Chris Lattner65401802009-04-25 08:28:21 +00005270 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005271 // Destructors don't have return types, but the parser will
5272 // happily parse something like:
5273 //
5274 // class X {
5275 // float ~X();
5276 // };
5277 //
5278 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005279 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5280 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5281 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005282 }
Mike Stump1eb44332009-09-09 15:08:12 +00005283
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005284 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005285 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005286 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005287 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5288 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005289 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005290 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5291 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005292 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005293 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5294 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005295 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005296 }
5297
Douglas Gregorc938c162011-01-26 05:01:58 +00005298 // C++0x [class.dtor]p2:
5299 // A destructor shall not be declared with a ref-qualifier.
5300 if (FTI.hasRefQualifier()) {
5301 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5302 << FTI.RefQualifierIsLValueRef
5303 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5304 D.setInvalidType();
5305 }
5306
Douglas Gregor42a552f2008-11-05 20:51:48 +00005307 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005308 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005309 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5310
5311 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005312 FTI.freeArgs();
5313 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005314 }
5315
Mike Stump1eb44332009-09-09 15:08:12 +00005316 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005317 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005318 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005319 D.setInvalidType();
5320 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005321
5322 // Rebuild the function type "R" without any type qualifiers or
5323 // parameters (in case any of the errors above fired) and with
5324 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005325 // types.
John McCalle23cf432010-12-14 08:05:40 +00005326 if (!D.isInvalidType())
5327 return R;
5328
Douglas Gregord92ec472010-07-01 05:10:53 +00005329 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005330 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5331 EPI.Variadic = false;
5332 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005333 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005334 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005335}
5336
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005337/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5338/// well-formednes of the conversion function declarator @p D with
5339/// type @p R. If there are any errors in the declarator, this routine
5340/// will emit diagnostics and return true. Otherwise, it will return
5341/// false. Either way, the type @p R will be updated to reflect a
5342/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005343void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005344 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005345 // C++ [class.conv.fct]p1:
5346 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005347 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005348 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005349 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005350 if (!D.isInvalidType())
5351 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5352 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5353 << SourceRange(D.getIdentifierLoc());
5354 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005355 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005356 }
John McCalla3f81372010-04-13 00:04:31 +00005357
5358 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5359
Chris Lattner6e475012009-04-25 08:35:12 +00005360 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005361 // Conversion functions don't have return types, but the parser will
5362 // happily parse something like:
5363 //
5364 // class X {
5365 // float operator bool();
5366 // };
5367 //
5368 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005369 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5370 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5371 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005372 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005373 }
5374
John McCalla3f81372010-04-13 00:04:31 +00005375 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5376
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005377 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005378 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005379 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5380
5381 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005382 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005383 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005384 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005385 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005386 D.setInvalidType();
5387 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005388
John McCalla3f81372010-04-13 00:04:31 +00005389 // Diagnose "&operator bool()" and other such nonsense. This
5390 // is actually a gcc extension which we don't support.
5391 if (Proto->getResultType() != ConvType) {
5392 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5393 << Proto->getResultType();
5394 D.setInvalidType();
5395 ConvType = Proto->getResultType();
5396 }
5397
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005398 // C++ [class.conv.fct]p4:
5399 // The conversion-type-id shall not represent a function type nor
5400 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005401 if (ConvType->isArrayType()) {
5402 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5403 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005404 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005405 } else if (ConvType->isFunctionType()) {
5406 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5407 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005408 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005409 }
5410
5411 // Rebuild the function type "R" without any parameters (in case any
5412 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005413 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005414 if (D.isInvalidType())
5415 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005416
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005417 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005418 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005419 Diag(D.getDeclSpec().getExplicitSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +00005420 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005421 diag::warn_cxx98_compat_explicit_conversion_functions :
5422 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005423 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005424}
5425
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005426/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5427/// the declaration of the given C++ conversion function. This routine
5428/// is responsible for recording the conversion function in the C++
5429/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005430Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005431 assert(Conversion && "Expected to receive a conversion function declaration");
5432
Douglas Gregor9d350972008-12-12 08:25:50 +00005433 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005434
5435 // Make sure we aren't redeclaring the conversion function.
5436 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005437
5438 // C++ [class.conv.fct]p1:
5439 // [...] A conversion function is never used to convert a
5440 // (possibly cv-qualified) object to the (possibly cv-qualified)
5441 // same object type (or a reference to it), to a (possibly
5442 // cv-qualified) base class of that type (or a reference to it),
5443 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005444 // FIXME: Suppress this warning if the conversion function ends up being a
5445 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005446 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005447 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005448 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005449 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005450 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5451 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005452 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005453 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005454 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5455 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005456 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005457 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005458 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005459 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005460 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005461 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005462 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005463 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005464 }
5465
Douglas Gregore80622f2010-09-29 04:25:11 +00005466 if (FunctionTemplateDecl *ConversionTemplate
5467 = Conversion->getDescribedFunctionTemplate())
5468 return ConversionTemplate;
5469
John McCalld226f652010-08-21 09:40:31 +00005470 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005471}
5472
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005473//===----------------------------------------------------------------------===//
5474// Namespace Handling
5475//===----------------------------------------------------------------------===//
5476
Richard Smithd1a55a62012-10-04 22:13:39 +00005477/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5478/// reopened.
5479static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5480 SourceLocation Loc,
5481 IdentifierInfo *II, bool *IsInline,
5482 NamespaceDecl *PrevNS) {
5483 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005484
Richard Smithc969e6a2012-10-05 01:46:25 +00005485 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5486 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5487 // inline namespaces, with the intention of bringing names into namespace std.
5488 //
5489 // We support this just well enough to get that case working; this is not
5490 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005491 if (*IsInline && II && II->getName().startswith("__atomic") &&
5492 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005493 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005494 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5495 NS = NS->getPreviousDecl())
5496 NS->setInline(*IsInline);
5497 // Patch up the lookup table for the containing namespace. This isn't really
5498 // correct, but it's good enough for this particular case.
5499 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5500 E = PrevNS->decls_end(); I != E; ++I)
5501 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5502 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5503 return;
5504 }
5505
5506 if (PrevNS->isInline())
5507 // The user probably just forgot the 'inline', so suggest that it
5508 // be added back.
5509 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5510 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5511 else
5512 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5513 << IsInline;
5514
5515 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5516 *IsInline = PrevNS->isInline();
5517}
John McCallea318642010-08-26 09:15:37 +00005518
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005519/// ActOnStartNamespaceDef - This is called at the start of a namespace
5520/// definition.
John McCalld226f652010-08-21 09:40:31 +00005521Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005522 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005523 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005524 SourceLocation IdentLoc,
5525 IdentifierInfo *II,
5526 SourceLocation LBrace,
5527 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005528 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5529 // For anonymous namespace, take the location of the left brace.
5530 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005531 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005532 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005533 bool IsStd = false;
5534 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005535 Scope *DeclRegionScope = NamespcScope->getParent();
5536
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005537 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005538 if (II) {
5539 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005540 // The identifier in an original-namespace-definition shall not
5541 // have been previously defined in the declarative region in
5542 // which the original-namespace-definition appears. The
5543 // identifier in an original-namespace-definition is the name of
5544 // the namespace. Subsequently in that declarative region, it is
5545 // treated as an original-namespace-name.
5546 //
5547 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00005548 // look through using directives, just look for any ordinary names.
5549
5550 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005551 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
5552 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00005553 NamedDecl *PrevDecl = 0;
5554 for (DeclContext::lookup_result R
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005555 = CurContext->getRedeclContext()->lookup(II);
Douglas Gregor010157f2011-05-06 23:28:47 +00005556 R.first != R.second; ++R.first) {
5557 if ((*R.first)->getIdentifierNamespace() & IDNS) {
5558 PrevDecl = *R.first;
5559 break;
5560 }
5561 }
5562
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005563 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
5564
5565 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00005566 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00005567 if (IsInline != PrevNS->isInline())
5568 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
5569 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00005570 } else if (PrevDecl) {
5571 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005572 Diag(Loc, diag::err_redefinition_different_kind)
5573 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00005574 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00005575 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00005576 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005577 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00005578 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00005579 // This is the first "real" definition of the namespace "std", so update
5580 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005581 PrevNS = getStdNamespace();
5582 IsStd = true;
5583 AddToKnown = !IsInline;
5584 } else {
5585 // We've seen this namespace for the first time.
5586 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00005587 }
Douglas Gregor44b43212008-12-11 16:49:14 +00005588 } else {
John McCall9aeed322009-10-01 00:25:31 +00005589 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005590
5591 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00005592 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00005593 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005594 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005595 } else {
5596 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005597 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00005598 }
5599
Richard Smithd1a55a62012-10-04 22:13:39 +00005600 if (PrevNS && IsInline != PrevNS->isInline())
5601 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
5602 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005603 }
5604
5605 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
5606 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00005607 if (IsInvalid)
5608 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005609
5610 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00005611
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005612 // FIXME: Should we be merging attributes?
5613 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005614 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005615
5616 if (IsStd)
5617 StdNamespace = Namespc;
5618 if (AddToKnown)
5619 KnownNamespaces[Namespc] = false;
5620
5621 if (II) {
5622 PushOnScopeChains(Namespc, DeclRegionScope);
5623 } else {
5624 // Link the anonymous namespace into its parent.
5625 DeclContext *Parent = CurContext->getRedeclContext();
5626 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
5627 TU->setAnonymousNamespace(Namespc);
5628 } else {
5629 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00005630 }
John McCall9aeed322009-10-01 00:25:31 +00005631
Douglas Gregora4181472010-03-24 00:46:35 +00005632 CurContext->addDecl(Namespc);
5633
John McCall9aeed322009-10-01 00:25:31 +00005634 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
5635 // behaves as if it were replaced by
5636 // namespace unique { /* empty body */ }
5637 // using namespace unique;
5638 // namespace unique { namespace-body }
5639 // where all occurrences of 'unique' in a translation unit are
5640 // replaced by the same identifier and this identifier differs
5641 // from all other identifiers in the entire program.
5642
5643 // We just create the namespace with an empty name and then add an
5644 // implicit using declaration, just like the standard suggests.
5645 //
5646 // CodeGen enforces the "universally unique" aspect by giving all
5647 // declarations semantically contained within an anonymous
5648 // namespace internal linkage.
5649
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005650 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00005651 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005652 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00005653 /* 'using' */ LBrace,
5654 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00005655 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00005656 /* identifier */ SourceLocation(),
5657 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005658 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00005659 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00005660 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00005661 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005662 }
5663
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00005664 ActOnDocumentableDecl(Namespc);
5665
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005666 // Although we could have an invalid decl (i.e. the namespace name is a
5667 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00005668 // FIXME: We should be able to push Namespc here, so that the each DeclContext
5669 // for the namespace has the declarations that showed up in that particular
5670 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00005671 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00005672 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005673}
5674
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005675/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
5676/// is a namespace alias, returns the namespace it points to.
5677static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
5678 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
5679 return AD->getNamespace();
5680 return dyn_cast_or_null<NamespaceDecl>(D);
5681}
5682
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005683/// ActOnFinishNamespaceDef - This callback is called after a namespace is
5684/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00005685void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005686 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
5687 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005688 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005689 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00005690 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00005691 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005692}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005693
John McCall384aff82010-08-25 07:42:41 +00005694CXXRecordDecl *Sema::getStdBadAlloc() const {
5695 return cast_or_null<CXXRecordDecl>(
5696 StdBadAlloc.get(Context.getExternalSource()));
5697}
5698
5699NamespaceDecl *Sema::getStdNamespace() const {
5700 return cast_or_null<NamespaceDecl>(
5701 StdNamespace.get(Context.getExternalSource()));
5702}
5703
Douglas Gregor66992202010-06-29 17:53:46 +00005704/// \brief Retrieve the special "std" namespace, which may require us to
5705/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005706NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00005707 if (!StdNamespace) {
5708 // The "std" namespace has not yet been defined, so build one implicitly.
5709 StdNamespace = NamespaceDecl::Create(Context,
5710 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005711 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005712 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005713 &PP.getIdentifierTable().get("std"),
5714 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005715 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00005716 }
5717
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005718 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00005719}
5720
Sebastian Redl395e04d2012-01-17 22:49:33 +00005721bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005722 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00005723 "Looking for std::initializer_list outside of C++.");
5724
5725 // We're looking for implicit instantiations of
5726 // template <typename E> class std::initializer_list.
5727
5728 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
5729 return false;
5730
Sebastian Redl84760e32012-01-17 22:49:58 +00005731 ClassTemplateDecl *Template = 0;
5732 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005733
Sebastian Redl84760e32012-01-17 22:49:58 +00005734 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00005735
Sebastian Redl84760e32012-01-17 22:49:58 +00005736 ClassTemplateSpecializationDecl *Specialization =
5737 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5738 if (!Specialization)
5739 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005740
Sebastian Redl84760e32012-01-17 22:49:58 +00005741 Template = Specialization->getSpecializedTemplate();
5742 Arguments = Specialization->getTemplateArgs().data();
5743 } else if (const TemplateSpecializationType *TST =
5744 Ty->getAs<TemplateSpecializationType>()) {
5745 Template = dyn_cast_or_null<ClassTemplateDecl>(
5746 TST->getTemplateName().getAsTemplateDecl());
5747 Arguments = TST->getArgs();
5748 }
5749 if (!Template)
5750 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00005751
5752 if (!StdInitializerList) {
5753 // Haven't recognized std::initializer_list yet, maybe this is it.
5754 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
5755 if (TemplateClass->getIdentifier() !=
5756 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005757 !getStdNamespace()->InEnclosingNamespaceSetOf(
5758 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00005759 return false;
5760 // This is a template called std::initializer_list, but is it the right
5761 // template?
5762 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005763 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00005764 return false;
5765 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
5766 return false;
5767
5768 // It's the right template.
5769 StdInitializerList = Template;
5770 }
5771
5772 if (Template != StdInitializerList)
5773 return false;
5774
5775 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00005776 if (Element)
5777 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00005778 return true;
5779}
5780
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005781static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
5782 NamespaceDecl *Std = S.getStdNamespace();
5783 if (!Std) {
5784 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5785 return 0;
5786 }
5787
5788 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
5789 Loc, Sema::LookupOrdinaryName);
5790 if (!S.LookupQualifiedName(Result, Std)) {
5791 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
5792 return 0;
5793 }
5794 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
5795 if (!Template) {
5796 Result.suppressDiagnostics();
5797 // We found something weird. Complain about the first thing we found.
5798 NamedDecl *Found = *Result.begin();
5799 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
5800 return 0;
5801 }
5802
5803 // We found some template called std::initializer_list. Now verify that it's
5804 // correct.
5805 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00005806 if (Params->getMinRequiredArguments() != 1 ||
5807 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00005808 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
5809 return 0;
5810 }
5811
5812 return Template;
5813}
5814
5815QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
5816 if (!StdInitializerList) {
5817 StdInitializerList = LookupStdInitializerList(*this, Loc);
5818 if (!StdInitializerList)
5819 return QualType();
5820 }
5821
5822 TemplateArgumentListInfo Args(Loc, Loc);
5823 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
5824 Context.getTrivialTypeSourceInfo(Element,
5825 Loc)));
5826 return Context.getCanonicalType(
5827 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
5828}
5829
Sebastian Redl98d36062012-01-17 22:50:14 +00005830bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
5831 // C++ [dcl.init.list]p2:
5832 // A constructor is an initializer-list constructor if its first parameter
5833 // is of type std::initializer_list<E> or reference to possibly cv-qualified
5834 // std::initializer_list<E> for some type E, and either there are no other
5835 // parameters or else all other parameters have default arguments.
5836 if (Ctor->getNumParams() < 1 ||
5837 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
5838 return false;
5839
5840 QualType ArgType = Ctor->getParamDecl(0)->getType();
5841 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
5842 ArgType = RT->getPointeeType().getUnqualifiedType();
5843
5844 return isStdInitializerList(ArgType, 0);
5845}
5846
Douglas Gregor9172aa62011-03-26 22:25:30 +00005847/// \brief Determine whether a using statement is in a context where it will be
5848/// apply in all contexts.
5849static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
5850 switch (CurContext->getDeclKind()) {
5851 case Decl::TranslationUnit:
5852 return true;
5853 case Decl::LinkageSpec:
5854 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
5855 default:
5856 return false;
5857 }
5858}
5859
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005860namespace {
5861
5862// Callback to only accept typo corrections that are namespaces.
5863class NamespaceValidatorCCC : public CorrectionCandidateCallback {
5864 public:
5865 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
5866 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
5867 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
5868 }
5869 return false;
5870 }
5871};
5872
5873}
5874
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005875static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
5876 CXXScopeSpec &SS,
5877 SourceLocation IdentLoc,
5878 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005879 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005880 R.clear();
5881 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005882 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00005883 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005884 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
5885 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005886 if (DeclContext *DC = S.computeDeclContext(SS, false))
5887 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
5888 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00005889 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
5890 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005891 else
5892 S.Diag(IdentLoc, diag::err_using_directive_suggest)
5893 << Ident << CorrectedQuotedStr
5894 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005895
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005896 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
5897 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005898
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00005899 R.addDecl(Corrected.getCorrectionDecl());
5900 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005901 }
5902 return false;
5903}
5904
John McCalld226f652010-08-21 09:40:31 +00005905Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005906 SourceLocation UsingLoc,
5907 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00005908 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005909 SourceLocation IdentLoc,
5910 IdentifierInfo *NamespcName,
5911 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00005912 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
5913 assert(NamespcName && "Invalid NamespcName.");
5914 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00005915
5916 // This can only happen along a recovery path.
5917 while (S->getFlags() & Scope::TemplateParamScope)
5918 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005919 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00005920
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005921 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00005922 NestedNameSpecifier *Qualifier = 0;
5923 if (SS.isSet())
5924 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
5925
Douglas Gregoreb11cd02009-01-14 22:20:51 +00005926 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00005927 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
5928 LookupParsedName(R, S, &SS);
5929 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00005930 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00005931
Douglas Gregor66992202010-06-29 17:53:46 +00005932 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005933 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00005934 // Allow "using namespace std;" or "using namespace ::std;" even if
5935 // "std" hasn't been defined yet, for GCC compatibility.
5936 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
5937 NamespcName->isStr("std")) {
5938 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00005939 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00005940 R.resolveKind();
5941 }
5942 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005943 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00005944 }
5945
John McCallf36e02d2009-10-09 21:13:30 +00005946 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005947 NamedDecl *Named = R.getFoundDecl();
5948 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
5949 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005950 // C++ [namespace.udir]p1:
5951 // A using-directive specifies that the names in the nominated
5952 // namespace can be used in the scope in which the
5953 // using-directive appears after the using-directive. During
5954 // unqualified name lookup (3.4.1), the names appear as if they
5955 // were declared in the nearest enclosing namespace which
5956 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00005957 // namespace. [Note: in this context, "contains" means "contains
5958 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005959
5960 // Find enclosing context containing both using-directive and
5961 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005962 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005963 DeclContext *CommonAncestor = cast<DeclContext>(NS);
5964 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
5965 CommonAncestor = CommonAncestor->getParent();
5966
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005967 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00005968 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00005969 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005970
Douglas Gregor9172aa62011-03-26 22:25:30 +00005971 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00005972 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00005973 Diag(IdentLoc, diag::warn_using_directive_in_header);
5974 }
5975
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005976 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005977 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00005978 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00005979 }
5980
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005981 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00005982 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005983}
5984
5985void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005986 // If the scope has an associated entity and the using directive is at
5987 // namespace or translation unit scope, add the UsingDirectiveDecl into
5988 // its lookup structure so qualified name lookup can find it.
5989 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
5990 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005991 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00005992 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00005993 // Otherwise, it is at block sope. The using-directives will affect lookup
5994 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00005995 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00005996}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005997
Douglas Gregor9cfbe482009-06-20 00:51:54 +00005998
John McCalld226f652010-08-21 09:40:31 +00005999Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006000 AccessSpecifier AS,
6001 bool HasUsingKeyword,
6002 SourceLocation UsingLoc,
6003 CXXScopeSpec &SS,
6004 UnqualifiedId &Name,
6005 AttributeList *AttrList,
6006 bool IsTypeName,
6007 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006008 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006009
Douglas Gregor12c118a2009-11-04 16:30:06 +00006010 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006011 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006012 case UnqualifiedId::IK_Identifier:
6013 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006014 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006015 case UnqualifiedId::IK_ConversionFunctionId:
6016 break;
6017
6018 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006019 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006020 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006021 Diag(Name.getLocStart(),
David Blaikie4e4d0842012-03-11 07:00:24 +00006022 getLangOpts().CPlusPlus0x ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006023 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6024 // instead once inheriting constructors work.
6025 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006026 diag::err_using_decl_constructor)
6027 << SS.getRange();
6028
David Blaikie4e4d0842012-03-11 07:00:24 +00006029 if (getLangOpts().CPlusPlus0x) break;
John McCall604e7f12009-12-08 07:46:18 +00006030
John McCalld226f652010-08-21 09:40:31 +00006031 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006032
6033 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006034 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006035 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006036 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006037
6038 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006039 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006040 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006041 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006042 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006043
6044 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6045 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006046 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006047 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006048
John McCall60fa3cf2009-12-11 02:10:03 +00006049 // Warn about using declarations.
6050 // TODO: store that the declaration was written without 'using' and
6051 // talk about access decls instead of using decls in the
6052 // diagnostics.
6053 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006054 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006055
6056 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006057 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006058 }
6059
Douglas Gregor56c04582010-12-16 00:46:58 +00006060 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6061 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6062 return 0;
6063
John McCall9488ea12009-11-17 05:59:44 +00006064 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006065 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006066 /* IsInstantiation */ false,
6067 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006068 if (UD)
6069 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006070
John McCalld226f652010-08-21 09:40:31 +00006071 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006072}
6073
Douglas Gregor09acc982010-07-07 23:08:52 +00006074/// \brief Determine whether a using declaration considers the given
6075/// declarations as "equivalent", e.g., if they are redeclarations of
6076/// the same entity or are both typedefs of the same type.
6077static bool
6078IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6079 bool &SuppressRedeclaration) {
6080 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6081 SuppressRedeclaration = false;
6082 return true;
6083 }
6084
Richard Smith162e1c12011-04-15 14:24:37 +00006085 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6086 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006087 SuppressRedeclaration = true;
6088 return Context.hasSameType(TD1->getUnderlyingType(),
6089 TD2->getUnderlyingType());
6090 }
6091
6092 return false;
6093}
6094
6095
John McCall9f54ad42009-12-10 09:41:52 +00006096/// Determines whether to create a using shadow decl for a particular
6097/// decl, given the set of decls existing prior to this using lookup.
6098bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6099 const LookupResult &Previous) {
6100 // Diagnose finding a decl which is not from a base class of the
6101 // current class. We do this now because there are cases where this
6102 // function will silently decide not to build a shadow decl, which
6103 // will pre-empt further diagnostics.
6104 //
6105 // We don't need to do this in C++0x because we do the check once on
6106 // the qualifier.
6107 //
6108 // FIXME: diagnose the following if we care enough:
6109 // struct A { int foo; };
6110 // struct B : A { using A::foo; };
6111 // template <class T> struct C : A {};
6112 // template <class T> struct D : C<T> { using B::foo; } // <---
6113 // This is invalid (during instantiation) in C++03 because B::foo
6114 // resolves to the using decl in B, which is not a base class of D<T>.
6115 // We can't diagnose it immediately because C<T> is an unknown
6116 // specialization. The UsingShadowDecl in D<T> then points directly
6117 // to A::foo, which will look well-formed when we instantiate.
6118 // The right solution is to not collapse the shadow-decl chain.
David Blaikie4e4d0842012-03-11 07:00:24 +00006119 if (!getLangOpts().CPlusPlus0x && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006120 DeclContext *OrigDC = Orig->getDeclContext();
6121
6122 // Handle enums and anonymous structs.
6123 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6124 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6125 while (OrigRec->isAnonymousStructOrUnion())
6126 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6127
6128 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6129 if (OrigDC == CurContext) {
6130 Diag(Using->getLocation(),
6131 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006132 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006133 Diag(Orig->getLocation(), diag::note_using_decl_target);
6134 return true;
6135 }
6136
Douglas Gregordc355712011-02-25 00:36:19 +00006137 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006138 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006139 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006140 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006141 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006142 Diag(Orig->getLocation(), diag::note_using_decl_target);
6143 return true;
6144 }
6145 }
6146
6147 if (Previous.empty()) return false;
6148
6149 NamedDecl *Target = Orig;
6150 if (isa<UsingShadowDecl>(Target))
6151 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6152
John McCalld7533ec2009-12-11 02:33:26 +00006153 // If the target happens to be one of the previous declarations, we
6154 // don't have a conflict.
6155 //
6156 // FIXME: but we might be increasing its access, in which case we
6157 // should redeclare it.
6158 NamedDecl *NonTag = 0, *Tag = 0;
6159 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6160 I != E; ++I) {
6161 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006162 bool Result;
6163 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6164 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006165
6166 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6167 }
6168
John McCall9f54ad42009-12-10 09:41:52 +00006169 if (Target->isFunctionOrFunctionTemplate()) {
6170 FunctionDecl *FD;
6171 if (isa<FunctionTemplateDecl>(Target))
6172 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6173 else
6174 FD = cast<FunctionDecl>(Target);
6175
6176 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006177 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006178 case Ovl_Overload:
6179 return false;
6180
6181 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006182 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006183 break;
6184
6185 // We found a decl with the exact signature.
6186 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006187 // If we're in a record, we want to hide the target, so we
6188 // return true (without a diagnostic) to tell the caller not to
6189 // build a shadow decl.
6190 if (CurContext->isRecord())
6191 return true;
6192
6193 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006194 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006195 break;
6196 }
6197
6198 Diag(Target->getLocation(), diag::note_using_decl_target);
6199 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6200 return true;
6201 }
6202
6203 // Target is not a function.
6204
John McCall9f54ad42009-12-10 09:41:52 +00006205 if (isa<TagDecl>(Target)) {
6206 // No conflict between a tag and a non-tag.
6207 if (!Tag) return false;
6208
John McCall41ce66f2009-12-10 19:51:03 +00006209 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006210 Diag(Target->getLocation(), diag::note_using_decl_target);
6211 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6212 return true;
6213 }
6214
6215 // No conflict between a tag and a non-tag.
6216 if (!NonTag) return false;
6217
John McCall41ce66f2009-12-10 19:51:03 +00006218 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006219 Diag(Target->getLocation(), diag::note_using_decl_target);
6220 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6221 return true;
6222}
6223
John McCall9488ea12009-11-17 05:59:44 +00006224/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006225UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006226 UsingDecl *UD,
6227 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006228
6229 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006230 NamedDecl *Target = Orig;
6231 if (isa<UsingShadowDecl>(Target)) {
6232 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6233 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006234 }
6235
6236 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006237 = UsingShadowDecl::Create(Context, CurContext,
6238 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006239 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006240
6241 Shadow->setAccess(UD->getAccess());
6242 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6243 Shadow->setInvalidDecl();
6244
John McCall9488ea12009-11-17 05:59:44 +00006245 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006246 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006247 else
John McCall604e7f12009-12-08 07:46:18 +00006248 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006249
John McCall604e7f12009-12-08 07:46:18 +00006250
John McCall9f54ad42009-12-10 09:41:52 +00006251 return Shadow;
6252}
John McCall604e7f12009-12-08 07:46:18 +00006253
John McCall9f54ad42009-12-10 09:41:52 +00006254/// Hides a using shadow declaration. This is required by the current
6255/// using-decl implementation when a resolvable using declaration in a
6256/// class is followed by a declaration which would hide or override
6257/// one or more of the using decl's targets; for example:
6258///
6259/// struct Base { void foo(int); };
6260/// struct Derived : Base {
6261/// using Base::foo;
6262/// void foo(int);
6263/// };
6264///
6265/// The governing language is C++03 [namespace.udecl]p12:
6266///
6267/// When a using-declaration brings names from a base class into a
6268/// derived class scope, member functions in the derived class
6269/// override and/or hide member functions with the same name and
6270/// parameter types in a base class (rather than conflicting).
6271///
6272/// There are two ways to implement this:
6273/// (1) optimistically create shadow decls when they're not hidden
6274/// by existing declarations, or
6275/// (2) don't create any shadow decls (or at least don't make them
6276/// visible) until we've fully parsed/instantiated the class.
6277/// The problem with (1) is that we might have to retroactively remove
6278/// a shadow decl, which requires several O(n) operations because the
6279/// decl structures are (very reasonably) not designed for removal.
6280/// (2) avoids this but is very fiddly and phase-dependent.
6281void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006282 if (Shadow->getDeclName().getNameKind() ==
6283 DeclarationName::CXXConversionFunctionName)
6284 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6285
John McCall9f54ad42009-12-10 09:41:52 +00006286 // Remove it from the DeclContext...
6287 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006288
John McCall9f54ad42009-12-10 09:41:52 +00006289 // ...and the scope, if applicable...
6290 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006291 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006292 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006293 }
6294
John McCall9f54ad42009-12-10 09:41:52 +00006295 // ...and the using decl.
6296 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6297
6298 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006299 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006300}
6301
John McCall7ba107a2009-11-18 02:36:19 +00006302/// Builds a using declaration.
6303///
6304/// \param IsInstantiation - Whether this call arises from an
6305/// instantiation of an unresolved using declaration. We treat
6306/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006307NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6308 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006309 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006310 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006311 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006312 bool IsInstantiation,
6313 bool IsTypeName,
6314 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006315 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006316 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006317 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006318
Anders Carlsson550b14b2009-08-28 05:49:21 +00006319 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006320
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006321 if (SS.isEmpty()) {
6322 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006323 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006324 }
Mike Stump1eb44332009-09-09 15:08:12 +00006325
John McCall9f54ad42009-12-10 09:41:52 +00006326 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006327 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006328 ForRedeclaration);
6329 Previous.setHideTags(false);
6330 if (S) {
6331 LookupName(Previous, S);
6332
6333 // It is really dumb that we have to do this.
6334 LookupResult::Filter F = Previous.makeFilter();
6335 while (F.hasNext()) {
6336 NamedDecl *D = F.next();
6337 if (!isDeclInScope(D, CurContext, S))
6338 F.erase();
6339 }
6340 F.done();
6341 } else {
6342 assert(IsInstantiation && "no scope in non-instantiation");
6343 assert(CurContext->isRecord() && "scope not record in instantiation");
6344 LookupQualifiedName(Previous, CurContext);
6345 }
6346
John McCall9f54ad42009-12-10 09:41:52 +00006347 // Check for invalid redeclarations.
6348 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6349 return 0;
6350
6351 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006352 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6353 return 0;
6354
John McCallaf8e6ed2009-11-12 03:15:40 +00006355 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006356 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006357 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006358 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006359 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006360 // FIXME: not all declaration name kinds are legal here
6361 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6362 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006363 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006364 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006365 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006366 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6367 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006368 }
John McCalled976492009-12-04 22:46:56 +00006369 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006370 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6371 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006372 }
John McCalled976492009-12-04 22:46:56 +00006373 D->setAccess(AS);
6374 CurContext->addDecl(D);
6375
6376 if (!LookupContext) return D;
6377 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006378
John McCall77bb1aa2010-05-01 00:40:08 +00006379 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006380 UD->setInvalidDecl();
6381 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006382 }
6383
Richard Smithc5a89a12012-04-02 01:30:27 +00006384 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006385 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006386 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006387 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006388 return UD;
6389 }
6390
6391 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006392
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006393 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006394
John McCall604e7f12009-12-08 07:46:18 +00006395 // Unlike most lookups, we don't always want to hide tag
6396 // declarations: tag names are visible through the using declaration
6397 // even if hidden by ordinary names, *except* in a dependent context
6398 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006399 if (!IsInstantiation)
6400 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006401
John McCallb9abd8722012-04-07 03:04:20 +00006402 // For the purposes of this lookup, we have a base object type
6403 // equal to that of the current context.
6404 if (CurContext->isRecord()) {
6405 R.setBaseObjectType(
6406 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6407 }
6408
John McCalla24dc2e2009-11-17 02:14:36 +00006409 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006410
John McCallf36e02d2009-10-09 21:13:30 +00006411 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006412 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006413 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006414 UD->setInvalidDecl();
6415 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006416 }
6417
John McCalled976492009-12-04 22:46:56 +00006418 if (R.isAmbiguous()) {
6419 UD->setInvalidDecl();
6420 return UD;
6421 }
Mike Stump1eb44332009-09-09 15:08:12 +00006422
John McCall7ba107a2009-11-18 02:36:19 +00006423 if (IsTypeName) {
6424 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006425 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006426 Diag(IdentLoc, diag::err_using_typename_non_type);
6427 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6428 Diag((*I)->getUnderlyingDecl()->getLocation(),
6429 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006430 UD->setInvalidDecl();
6431 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006432 }
6433 } else {
6434 // If we asked for a non-typename and we got a type, error out,
6435 // but only if this is an instantiation of an unresolved using
6436 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006437 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006438 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6439 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006440 UD->setInvalidDecl();
6441 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006442 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006443 }
6444
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006445 // C++0x N2914 [namespace.udecl]p6:
6446 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006447 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006448 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6449 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006450 UD->setInvalidDecl();
6451 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006452 }
Mike Stump1eb44332009-09-09 15:08:12 +00006453
John McCall9f54ad42009-12-10 09:41:52 +00006454 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6455 if (!CheckUsingShadowDecl(UD, *I, Previous))
6456 BuildUsingShadowDecl(S, UD, *I);
6457 }
John McCall9488ea12009-11-17 05:59:44 +00006458
6459 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006460}
6461
Sebastian Redlf677ea32011-02-05 19:23:19 +00006462/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006463bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6464 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006465
Douglas Gregordc355712011-02-25 00:36:19 +00006466 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006467 assert(SourceType &&
6468 "Using decl naming constructor doesn't have type in scope spec.");
6469 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6470
6471 // Check whether the named type is a direct base class.
6472 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6473 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6474 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6475 BaseIt != BaseE; ++BaseIt) {
6476 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6477 if (CanonicalSourceType == BaseType)
6478 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006479 if (BaseIt->getType()->isDependentType())
6480 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006481 }
6482
6483 if (BaseIt == BaseE) {
6484 // Did not find SourceType in the bases.
6485 Diag(UD->getUsingLocation(),
6486 diag::err_using_decl_constructor_not_in_direct_base)
6487 << UD->getNameInfo().getSourceRange()
6488 << QualType(SourceType, 0) << TargetClass;
6489 return true;
6490 }
6491
Richard Smithc5a89a12012-04-02 01:30:27 +00006492 if (!CurContext->isDependentContext())
6493 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006494
6495 return false;
6496}
6497
John McCall9f54ad42009-12-10 09:41:52 +00006498/// Checks that the given using declaration is not an invalid
6499/// redeclaration. Note that this is checking only for the using decl
6500/// itself, not for any ill-formedness among the UsingShadowDecls.
6501bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6502 bool isTypeName,
6503 const CXXScopeSpec &SS,
6504 SourceLocation NameLoc,
6505 const LookupResult &Prev) {
6506 // C++03 [namespace.udecl]p8:
6507 // C++0x [namespace.udecl]p10:
6508 // A using-declaration is a declaration and can therefore be used
6509 // repeatedly where (and only where) multiple declarations are
6510 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006511 //
John McCall8a726212010-11-29 18:01:58 +00006512 // That's in non-member contexts.
6513 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006514 return false;
6515
6516 NestedNameSpecifier *Qual
6517 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6518
6519 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6520 NamedDecl *D = *I;
6521
6522 bool DTypename;
6523 NestedNameSpecifier *DQual;
6524 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6525 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006526 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006527 } else if (UnresolvedUsingValueDecl *UD
6528 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6529 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006530 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006531 } else if (UnresolvedUsingTypenameDecl *UD
6532 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6533 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006534 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006535 } else continue;
6536
6537 // using decls differ if one says 'typename' and the other doesn't.
6538 // FIXME: non-dependent using decls?
6539 if (isTypeName != DTypename) continue;
6540
6541 // using decls differ if they name different scopes (but note that
6542 // template instantiation can cause this check to trigger when it
6543 // didn't before instantiation).
6544 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
6545 Context.getCanonicalNestedNameSpecifier(DQual))
6546 continue;
6547
6548 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00006549 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00006550 return true;
6551 }
6552
6553 return false;
6554}
6555
John McCall604e7f12009-12-08 07:46:18 +00006556
John McCalled976492009-12-04 22:46:56 +00006557/// Checks that the given nested-name qualifier used in a using decl
6558/// in the current context is appropriately related to the current
6559/// scope. If an error is found, diagnoses it and returns true.
6560bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
6561 const CXXScopeSpec &SS,
6562 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00006563 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006564
John McCall604e7f12009-12-08 07:46:18 +00006565 if (!CurContext->isRecord()) {
6566 // C++03 [namespace.udecl]p3:
6567 // C++0x [namespace.udecl]p8:
6568 // A using-declaration for a class member shall be a member-declaration.
6569
6570 // If we weren't able to compute a valid scope, it must be a
6571 // dependent class scope.
6572 if (!NamedContext || NamedContext->isRecord()) {
6573 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
6574 << SS.getRange();
6575 return true;
6576 }
6577
6578 // Otherwise, everything is known to be fine.
6579 return false;
6580 }
6581
6582 // The current scope is a record.
6583
6584 // If the named context is dependent, we can't decide much.
6585 if (!NamedContext) {
6586 // FIXME: in C++0x, we can diagnose if we can prove that the
6587 // nested-name-specifier does not refer to a base class, which is
6588 // still possible in some cases.
6589
6590 // Otherwise we have to conservatively report that things might be
6591 // okay.
6592 return false;
6593 }
6594
6595 if (!NamedContext->isRecord()) {
6596 // Ideally this would point at the last name in the specifier,
6597 // but we don't have that level of source info.
6598 Diag(SS.getRange().getBegin(),
6599 diag::err_using_decl_nested_name_specifier_is_not_class)
6600 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
6601 return true;
6602 }
6603
Douglas Gregor6fb07292010-12-21 07:41:49 +00006604 if (!NamedContext->isDependentContext() &&
6605 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
6606 return true;
6607
David Blaikie4e4d0842012-03-11 07:00:24 +00006608 if (getLangOpts().CPlusPlus0x) {
John McCall604e7f12009-12-08 07:46:18 +00006609 // C++0x [namespace.udecl]p3:
6610 // In a using-declaration used as a member-declaration, the
6611 // nested-name-specifier shall name a base class of the class
6612 // being defined.
6613
6614 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
6615 cast<CXXRecordDecl>(NamedContext))) {
6616 if (CurContext == NamedContext) {
6617 Diag(NameLoc,
6618 diag::err_using_decl_nested_name_specifier_is_current_class)
6619 << SS.getRange();
6620 return true;
6621 }
6622
6623 Diag(SS.getRange().getBegin(),
6624 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6625 << (NestedNameSpecifier*) SS.getScopeRep()
6626 << cast<CXXRecordDecl>(CurContext)
6627 << SS.getRange();
6628 return true;
6629 }
6630
6631 return false;
6632 }
6633
6634 // C++03 [namespace.udecl]p4:
6635 // A using-declaration used as a member-declaration shall refer
6636 // to a member of a base class of the class being defined [etc.].
6637
6638 // Salient point: SS doesn't have to name a base class as long as
6639 // lookup only finds members from base classes. Therefore we can
6640 // diagnose here only if we can prove that that can't happen,
6641 // i.e. if the class hierarchies provably don't intersect.
6642
6643 // TODO: it would be nice if "definitely valid" results were cached
6644 // in the UsingDecl and UsingShadowDecl so that these checks didn't
6645 // need to be repeated.
6646
6647 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00006648 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00006649
6650 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
6651 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6652 Data->Bases.insert(Base);
6653 return true;
6654 }
6655
6656 bool hasDependentBases(const CXXRecordDecl *Class) {
6657 return !Class->forallBases(collect, this);
6658 }
6659
6660 /// Returns true if the base is dependent or is one of the
6661 /// accumulated base classes.
6662 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
6663 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
6664 return !Data->Bases.count(Base);
6665 }
6666
6667 bool mightShareBases(const CXXRecordDecl *Class) {
6668 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
6669 }
6670 };
6671
6672 UserData Data;
6673
6674 // Returns false if we find a dependent base.
6675 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
6676 return false;
6677
6678 // Returns false if the class has a dependent base or if it or one
6679 // of its bases is present in the base set of the current context.
6680 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
6681 return false;
6682
6683 Diag(SS.getRange().getBegin(),
6684 diag::err_using_decl_nested_name_specifier_is_not_base_class)
6685 << (NestedNameSpecifier*) SS.getScopeRep()
6686 << cast<CXXRecordDecl>(CurContext)
6687 << SS.getRange();
6688
6689 return true;
John McCalled976492009-12-04 22:46:56 +00006690}
6691
Richard Smith162e1c12011-04-15 14:24:37 +00006692Decl *Sema::ActOnAliasDeclaration(Scope *S,
6693 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006694 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00006695 SourceLocation UsingLoc,
6696 UnqualifiedId &Name,
6697 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00006698 // Skip up to the relevant declaration scope.
6699 while (S->getFlags() & Scope::TemplateParamScope)
6700 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00006701 assert((S->getFlags() & Scope::DeclScope) &&
6702 "got alias-declaration outside of declaration scope");
6703
6704 if (Type.isInvalid())
6705 return 0;
6706
6707 bool Invalid = false;
6708 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
6709 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00006710 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00006711
6712 if (DiagnoseClassNameShadow(CurContext, NameInfo))
6713 return 0;
6714
6715 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00006716 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00006717 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006718 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6719 TInfo->getTypeLoc().getBeginLoc());
6720 }
Richard Smith162e1c12011-04-15 14:24:37 +00006721
6722 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
6723 LookupName(Previous, S);
6724
6725 // Warn about shadowing the name of a template parameter.
6726 if (Previous.isSingleResult() &&
6727 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00006728 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00006729 Previous.clear();
6730 }
6731
6732 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
6733 "name in alias declaration must be an identifier");
6734 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
6735 Name.StartLocation,
6736 Name.Identifier, TInfo);
6737
6738 NewTD->setAccess(AS);
6739
6740 if (Invalid)
6741 NewTD->setInvalidDecl();
6742
Richard Smith3e4c6c42011-05-05 21:57:07 +00006743 CheckTypedefForVariablyModifiedType(S, NewTD);
6744 Invalid |= NewTD->isInvalidDecl();
6745
Richard Smith162e1c12011-04-15 14:24:37 +00006746 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00006747
6748 NamedDecl *NewND;
6749 if (TemplateParamLists.size()) {
6750 TypeAliasTemplateDecl *OldDecl = 0;
6751 TemplateParameterList *OldTemplateParams = 0;
6752
6753 if (TemplateParamLists.size() != 1) {
6754 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006755 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
6756 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00006757 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00006758 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00006759
6760 // Only consider previous declarations in the same scope.
6761 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
6762 /*ExplicitInstantiationOrSpecialization*/false);
6763 if (!Previous.empty()) {
6764 Redeclaration = true;
6765
6766 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
6767 if (!OldDecl && !Invalid) {
6768 Diag(UsingLoc, diag::err_redefinition_different_kind)
6769 << Name.Identifier;
6770
6771 NamedDecl *OldD = Previous.getRepresentativeDecl();
6772 if (OldD->getLocation().isValid())
6773 Diag(OldD->getLocation(), diag::note_previous_definition);
6774
6775 Invalid = true;
6776 }
6777
6778 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
6779 if (TemplateParameterListsAreEqual(TemplateParams,
6780 OldDecl->getTemplateParameters(),
6781 /*Complain=*/true,
6782 TPL_TemplateMatch))
6783 OldTemplateParams = OldDecl->getTemplateParameters();
6784 else
6785 Invalid = true;
6786
6787 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
6788 if (!Invalid &&
6789 !Context.hasSameType(OldTD->getUnderlyingType(),
6790 NewTD->getUnderlyingType())) {
6791 // FIXME: The C++0x standard does not clearly say this is ill-formed,
6792 // but we can't reasonably accept it.
6793 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
6794 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
6795 if (OldTD->getLocation().isValid())
6796 Diag(OldTD->getLocation(), diag::note_previous_definition);
6797 Invalid = true;
6798 }
6799 }
6800 }
6801
6802 // Merge any previous default template arguments into our parameters,
6803 // and check the parameter list.
6804 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
6805 TPC_TypeAliasTemplate))
6806 return 0;
6807
6808 TypeAliasTemplateDecl *NewDecl =
6809 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
6810 Name.Identifier, TemplateParams,
6811 NewTD);
6812
6813 NewDecl->setAccess(AS);
6814
6815 if (Invalid)
6816 NewDecl->setInvalidDecl();
6817 else if (OldDecl)
6818 NewDecl->setPreviousDeclaration(OldDecl);
6819
6820 NewND = NewDecl;
6821 } else {
6822 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
6823 NewND = NewTD;
6824 }
Richard Smith162e1c12011-04-15 14:24:37 +00006825
6826 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00006827 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00006828
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00006829 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00006830 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00006831}
6832
John McCalld226f652010-08-21 09:40:31 +00006833Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006834 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006835 SourceLocation AliasLoc,
6836 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006837 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00006838 SourceLocation IdentLoc,
6839 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00006840
Anders Carlsson81c85c42009-03-28 23:53:49 +00006841 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006842 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
6843 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00006844
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006845 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00006846 NamedDecl *PrevDecl
6847 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
6848 ForRedeclaration);
6849 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
6850 PrevDecl = 0;
6851
6852 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00006853 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006854 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00006855 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00006856 // FIXME: At some point, we'll want to create the (redundant)
6857 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00006858 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00006859 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00006860 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00006861 }
Mike Stump1eb44332009-09-09 15:08:12 +00006862
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006863 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
6864 diag::err_redefinition_different_kind;
6865 Diag(AliasLoc, DiagID) << Alias;
6866 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00006867 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00006868 }
6869
John McCalla24dc2e2009-11-17 02:14:36 +00006870 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006871 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006872
John McCallf36e02d2009-10-09 21:13:30 +00006873 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006874 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00006875 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006876 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00006877 }
Anders Carlsson5721c682009-03-28 06:42:02 +00006878 }
Mike Stump1eb44332009-09-09 15:08:12 +00006879
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00006880 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00006881 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00006882 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00006883 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00006884
John McCall3dbd3d52010-02-16 06:53:13 +00006885 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00006886 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00006887}
6888
Sean Hunt001cad92011-05-10 00:49:42 +00006889Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00006890Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
6891 CXXMethodDecl *MD) {
6892 CXXRecordDecl *ClassDecl = MD->getParent();
6893
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006894 // C++ [except.spec]p14:
6895 // An implicitly declared special member function (Clause 12) shall have an
6896 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00006897 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00006898 if (ClassDecl->isInvalidDecl())
6899 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006900
Sebastian Redl60618fa2011-03-12 11:50:43 +00006901 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006902 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6903 BEnd = ClassDecl->bases_end();
6904 B != BEnd; ++B) {
6905 if (B->isVirtual()) // Handled below.
6906 continue;
6907
Douglas Gregor18274032010-07-03 00:47:00 +00006908 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6909 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006910 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6911 // If this is a deleted function, add it anyway. This might be conformant
6912 // with the standard. This might not. I'm not sure. It might not matter.
6913 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006914 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006915 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006916 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006917
6918 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006919 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6920 BEnd = ClassDecl->vbases_end();
6921 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00006922 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
6923 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00006924 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
6925 // If this is a deleted function, add it anyway. This might be conformant
6926 // with the standard. This might not. I'm not sure. It might not matter.
6927 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006928 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006929 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006930 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006931
6932 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006933 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6934 FEnd = ClassDecl->field_end();
6935 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00006936 if (F->hasInClassInitializer()) {
6937 if (Expr *E = F->getInClassInitializer())
6938 ExceptSpec.CalledExpr(E);
6939 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00006940 // DR1351:
6941 // If the brace-or-equal-initializer of a non-static data member
6942 // invokes a defaulted default constructor of its class or of an
6943 // enclosing class in a potentially evaluated subexpression, the
6944 // program is ill-formed.
6945 //
6946 // This resolution is unworkable: the exception specification of the
6947 // default constructor can be needed in an unevaluated context, in
6948 // particular, in the operand of a noexcept-expression, and we can be
6949 // unable to compute an exception specification for an enclosed class.
6950 //
6951 // We do not allow an in-class initializer to require the evaluation
6952 // of the exception specification for any in-class initializer whose
6953 // definition is not lexically complete.
6954 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00006955 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00006956 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00006957 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6958 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
6959 // If this is a deleted function, add it anyway. This might be conformant
6960 // with the standard. This might not. I'm not sure. It might not matter.
6961 // In particular, the problem is that this function never gets called. It
6962 // might just be ill-formed because this function attempts to refer to
6963 // a deleted function here.
6964 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00006965 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00006966 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006967 }
John McCalle23cf432010-12-14 08:05:40 +00006968
Sean Hunt001cad92011-05-10 00:49:42 +00006969 return ExceptSpec;
6970}
6971
6972CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
6973 CXXRecordDecl *ClassDecl) {
6974 // C++ [class.ctor]p5:
6975 // A default constructor for a class X is a constructor of class X
6976 // that can be called without an argument. If there is no
6977 // user-declared constructor for class X, a default constructor is
6978 // implicitly declared. An implicitly-declared default constructor
6979 // is an inline public member of its class.
6980 assert(!ClassDecl->hasUserDeclaredConstructor() &&
6981 "Should not build implicit default constructor!");
6982
Richard Smith7756afa2012-06-10 05:43:50 +00006983 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
6984 CXXDefaultConstructor,
6985 false);
6986
Douglas Gregoreb8c6702010-07-01 22:31:05 +00006987 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00006988 CanQualType ClassType
6989 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006990 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00006991 DeclarationName Name
6992 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006993 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00006994 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00006995 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00006996 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00006997 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00006998 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00006999 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007000 DefaultCon->setImplicit();
Sean Hunt023df372011-05-09 18:22:59 +00007001 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007002
7003 // Build an exception specification pointing back at this constructor.
7004 FunctionProtoType::ExtProtoInfo EPI;
7005 EPI.ExceptionSpecType = EST_Unevaluated;
7006 EPI.ExceptionSpecDecl = DefaultCon;
7007 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7008
Douglas Gregor18274032010-07-03 00:47:00 +00007009 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007010 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
7011
Douglas Gregor23c94db2010-07-02 17:43:08 +00007012 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007013 PushOnScopeChains(DefaultCon, S, false);
7014 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007015
Sean Hunte16da072011-10-10 06:18:57 +00007016 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00007017 DefaultCon->setDeletedAsWritten();
Douglas Gregor18274032010-07-03 00:47:00 +00007018
Douglas Gregor32df23e2010-07-01 22:02:46 +00007019 return DefaultCon;
7020}
7021
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007022void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7023 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007024 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007025 !Constructor->doesThisDeclarationHaveABody() &&
7026 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007027 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007028
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007029 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007030 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007031
Eli Friedman9a14db32012-10-18 20:14:08 +00007032 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007033 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007034 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007035 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007036 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007037 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007038 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007039 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007040 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007041
7042 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007043 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007044
7045 Constructor->setUsed();
7046 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007047
7048 if (ASTMutationListener *L = getASTMutationListener()) {
7049 L->CompletedImplicitDefinition(Constructor);
7050 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007051}
7052
Richard Smith7a614d82011-06-11 17:19:42 +00007053void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
7054 if (!D) return;
7055 AdjustDeclIfTemplate(D);
7056
7057 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D);
Richard Smith7a614d82011-06-11 17:19:42 +00007058
Richard Smithb9d0b762012-07-27 04:22:15 +00007059 if (!ClassDecl->isDependentType())
7060 CheckExplicitlyDefaultedMethods(ClassDecl);
Richard Smith7a614d82011-06-11 17:19:42 +00007061}
7062
Sebastian Redlf677ea32011-02-05 19:23:19 +00007063void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7064 // We start with an initial pass over the base classes to collect those that
7065 // inherit constructors from. If there are none, we can forgo all further
7066 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007067 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007068 BasesVector BasesToInheritFrom;
7069 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7070 BaseE = ClassDecl->bases_end();
7071 BaseIt != BaseE; ++BaseIt) {
7072 if (BaseIt->getInheritConstructors()) {
7073 QualType Base = BaseIt->getType();
7074 if (Base->isDependentType()) {
7075 // If we inherit constructors from anything that is dependent, just
7076 // abort processing altogether. We'll get another chance for the
7077 // instantiations.
7078 return;
7079 }
7080 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7081 }
7082 }
7083 if (BasesToInheritFrom.empty())
7084 return;
7085
7086 // Now collect the constructors that we already have in the current class.
7087 // Those take precedence over inherited constructors.
7088 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7089 // unless there is a user-declared constructor with the same signature in
7090 // the class where the using-declaration appears.
7091 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7092 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7093 CtorE = ClassDecl->ctor_end();
7094 CtorIt != CtorE; ++CtorIt) {
7095 ExistingConstructors.insert(
7096 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7097 }
7098
Sebastian Redlf677ea32011-02-05 19:23:19 +00007099 DeclarationName CreatedCtorName =
7100 Context.DeclarationNames.getCXXConstructorName(
7101 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7102
7103 // Now comes the true work.
7104 // First, we keep a map from constructor types to the base that introduced
7105 // them. Needed for finding conflicting constructors. We also keep the
7106 // actually inserted declarations in there, for pretty diagnostics.
7107 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7108 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7109 ConstructorToSourceMap InheritedConstructors;
7110 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7111 BaseE = BasesToInheritFrom.end();
7112 BaseIt != BaseE; ++BaseIt) {
7113 const RecordType *Base = *BaseIt;
7114 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7115 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7116 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7117 CtorE = BaseDecl->ctor_end();
7118 CtorIt != CtorE; ++CtorIt) {
7119 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007120 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007121 DeclarationName Name =
7122 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007123 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7124 LookupQualifiedName(Result, CurContext);
7125 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007126 SourceLocation UsingLoc = UD ? UD->getLocation() :
7127 ClassDecl->getLocation();
7128
7129 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7130 // from the class X named in the using-declaration consists of actual
7131 // constructors and notional constructors that result from the
7132 // transformation of defaulted parameters as follows:
7133 // - all non-template default constructors of X, and
7134 // - for each non-template constructor of X that has at least one
7135 // parameter with a default argument, the set of constructors that
7136 // results from omitting any ellipsis parameter specification and
7137 // successively omitting parameters with a default argument from the
7138 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007139 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007140 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7141 const FunctionProtoType *BaseCtorType =
7142 BaseCtor->getType()->getAs<FunctionProtoType>();
7143
7144 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7145 maxParams = BaseCtor->getNumParams();
7146 params <= maxParams; ++params) {
7147 // Skip default constructors. They're never inherited.
7148 if (params == 0)
7149 continue;
7150 // Skip copy and move constructors for the same reason.
7151 if (CanBeCopyOrMove && params == 1)
7152 continue;
7153
7154 // Build up a function type for this particular constructor.
7155 // FIXME: The working paper does not consider that the exception spec
7156 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007157 // source. This code doesn't yet, either. When it does, this code will
7158 // need to be delayed until after exception specifications and in-class
7159 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007160 const Type *NewCtorType;
7161 if (params == maxParams)
7162 NewCtorType = BaseCtorType;
7163 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007164 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007165 for (unsigned i = 0; i < params; ++i) {
7166 Args.push_back(BaseCtorType->getArgType(i));
7167 }
7168 FunctionProtoType::ExtProtoInfo ExtInfo =
7169 BaseCtorType->getExtProtoInfo();
7170 ExtInfo.Variadic = false;
7171 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7172 Args.data(), params, ExtInfo)
7173 .getTypePtr();
7174 }
7175 const Type *CanonicalNewCtorType =
7176 Context.getCanonicalType(NewCtorType);
7177
7178 // Now that we have the type, first check if the class already has a
7179 // constructor with this signature.
7180 if (ExistingConstructors.count(CanonicalNewCtorType))
7181 continue;
7182
7183 // Then we check if we have already declared an inherited constructor
7184 // with this signature.
7185 std::pair<ConstructorToSourceMap::iterator, bool> result =
7186 InheritedConstructors.insert(std::make_pair(
7187 CanonicalNewCtorType,
7188 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7189 if (!result.second) {
7190 // Already in the map. If it came from a different class, that's an
7191 // error. Not if it's from the same.
7192 CanQualType PreviousBase = result.first->second.first;
7193 if (CanonicalBase != PreviousBase) {
7194 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7195 const CXXConstructorDecl *PrevBaseCtor =
7196 PrevCtor->getInheritedConstructor();
7197 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7198
7199 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7200 Diag(BaseCtor->getLocation(),
7201 diag::note_using_decl_constructor_conflict_current_ctor);
7202 Diag(PrevBaseCtor->getLocation(),
7203 diag::note_using_decl_constructor_conflict_previous_ctor);
7204 Diag(PrevCtor->getLocation(),
7205 diag::note_using_decl_constructor_conflict_previous_using);
7206 }
7207 continue;
7208 }
7209
7210 // OK, we're there, now add the constructor.
7211 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007212 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007213 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7214 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007215 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7216 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007217 /*ImplicitlyDeclared=*/true,
7218 // FIXME: Due to a defect in the standard, we treat inherited
7219 // constructors as constexpr even if that makes them ill-formed.
7220 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007221 NewCtor->setAccess(BaseCtor->getAccess());
7222
7223 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007224 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007225 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007226 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7227 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007228 /*IdentifierInfo=*/0,
7229 BaseCtorType->getArgType(i),
7230 /*TInfo=*/0, SC_None,
7231 SC_None, /*DefaultArg=*/0));
7232 }
David Blaikie4278c652011-09-21 18:16:56 +00007233 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007234 NewCtor->setInheritedConstructor(BaseCtor);
7235
Sebastian Redlf677ea32011-02-05 19:23:19 +00007236 ClassDecl->addDecl(NewCtor);
7237 result.first->second.second = NewCtor;
7238 }
7239 }
7240 }
7241}
7242
Sean Huntcb45a0f2011-05-12 22:46:25 +00007243Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007244Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7245 CXXRecordDecl *ClassDecl = MD->getParent();
7246
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007247 // C++ [except.spec]p14:
7248 // An implicitly declared special member function (Clause 12) shall have
7249 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007250 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007251 if (ClassDecl->isInvalidDecl())
7252 return ExceptSpec;
7253
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007254 // Direct base-class destructors.
7255 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7256 BEnd = ClassDecl->bases_end();
7257 B != BEnd; ++B) {
7258 if (B->isVirtual()) // Handled below.
7259 continue;
7260
7261 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007262 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007263 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007264 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007265
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007266 // Virtual base-class destructors.
7267 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7268 BEnd = ClassDecl->vbases_end();
7269 B != BEnd; ++B) {
7270 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007271 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007272 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007273 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007274
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007275 // Field destructors.
7276 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7277 FEnd = ClassDecl->field_end();
7278 F != FEnd; ++F) {
7279 if (const RecordType *RecordTy
7280 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007281 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007282 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007283 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007284
Sean Huntcb45a0f2011-05-12 22:46:25 +00007285 return ExceptSpec;
7286}
7287
7288CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7289 // C++ [class.dtor]p2:
7290 // If a class has no user-declared destructor, a destructor is
7291 // declared implicitly. An implicitly-declared destructor is an
7292 // inline public member of its class.
Sean Huntcb45a0f2011-05-12 22:46:25 +00007293
Douglas Gregor4923aa22010-07-02 20:37:36 +00007294 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007295 CanQualType ClassType
7296 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007297 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007298 DeclarationName Name
7299 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007300 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007301 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007302 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7303 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007304 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007305 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007306 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007307 Destructor->setImplicit();
7308 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Richard Smithb9d0b762012-07-27 04:22:15 +00007309
7310 // Build an exception specification pointing back at this destructor.
7311 FunctionProtoType::ExtProtoInfo EPI;
7312 EPI.ExceptionSpecType = EST_Unevaluated;
7313 EPI.ExceptionSpecDecl = Destructor;
7314 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7315
Douglas Gregor4923aa22010-07-02 20:37:36 +00007316 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007317 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007318
Douglas Gregor4923aa22010-07-02 20:37:36 +00007319 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007320 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007321 PushOnScopeChains(Destructor, S, false);
7322 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007323
Richard Smith9a561d52012-02-26 09:11:52 +00007324 AddOverriddenMethods(ClassDecl, Destructor);
7325
Richard Smith7d5088a2012-02-18 02:02:13 +00007326 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Sean Huntcb45a0f2011-05-12 22:46:25 +00007327 Destructor->setDeletedAsWritten();
Richard Smith9a561d52012-02-26 09:11:52 +00007328
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007329 return Destructor;
7330}
7331
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007332void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007333 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007334 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007335 !Destructor->doesThisDeclarationHaveABody() &&
7336 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007337 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007338 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007339 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007340
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007341 if (Destructor->isInvalidDecl())
7342 return;
7343
Eli Friedman9a14db32012-10-18 20:14:08 +00007344 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007345
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007346 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007347 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7348 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007349
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007350 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007351 Diag(CurrentLocation, diag::note_member_synthesized_at)
7352 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7353
7354 Destructor->setInvalidDecl();
7355 return;
7356 }
7357
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007358 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007359 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007360 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007361 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007362 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007363
7364 if (ASTMutationListener *L = getASTMutationListener()) {
7365 L->CompletedImplicitDefinition(Destructor);
7366 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007367}
7368
Richard Smitha4156b82012-04-21 18:42:51 +00007369/// \brief Perform any semantic analysis which needs to be delayed until all
7370/// pending class member declarations have been parsed.
7371void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007372 // Perform any deferred checking of exception specifications for virtual
7373 // destructors.
7374 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7375 i != e; ++i) {
7376 const CXXDestructorDecl *Dtor =
7377 DelayedDestructorExceptionSpecChecks[i].first;
7378 assert(!Dtor->getParent()->isDependentType() &&
7379 "Should not ever add destructors of templates into the list.");
7380 CheckOverridingFunctionExceptionSpec(Dtor,
7381 DelayedDestructorExceptionSpecChecks[i].second);
7382 }
7383 DelayedDestructorExceptionSpecChecks.clear();
7384}
7385
Richard Smithb9d0b762012-07-27 04:22:15 +00007386void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7387 CXXDestructorDecl *Destructor) {
7388 assert(getLangOpts().CPlusPlus0x &&
7389 "adjusting dtor exception specs was introduced in c++11");
7390
Sebastian Redl0ee33912011-05-19 05:13:44 +00007391 // C++11 [class.dtor]p3:
7392 // A declaration of a destructor that does not have an exception-
7393 // specification is implicitly considered to have the same exception-
7394 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007395 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007396 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007397 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007398 return;
7399
Chandler Carruth3f224b22011-09-20 04:55:26 +00007400 // Replace the destructor's type, building off the existing one. Fortunately,
7401 // the only thing of interest in the destructor type is its extended info.
7402 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007403 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7404 EPI.ExceptionSpecType = EST_Unevaluated;
7405 EPI.ExceptionSpecDecl = Destructor;
7406 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007407
Sebastian Redl0ee33912011-05-19 05:13:44 +00007408 // FIXME: If the destructor has a body that could throw, and the newly created
7409 // spec doesn't allow exceptions, we should emit a warning, because this
7410 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007411 // However, we don't have a body or an exception specification yet, so it
7412 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007413}
7414
Richard Smith8c889532012-11-14 00:50:40 +00007415/// When generating a defaulted copy or move assignment operator, if a field
7416/// should be copied with __builtin_memcpy rather than via explicit assignments,
7417/// do so. This optimization only applies for arrays of scalars, and for arrays
7418/// of class type where the selected copy/move-assignment operator is trivial.
7419static StmtResult
7420buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7421 Expr *To, Expr *From) {
7422 // Compute the size of the memory buffer to be copied.
7423 QualType SizeType = S.Context.getSizeType();
7424 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7425 S.Context.getTypeSizeInChars(T).getQuantity());
7426
7427 // Take the address of the field references for "from" and "to". We
7428 // directly construct UnaryOperators here because semantic analysis
7429 // does not permit us to take the address of an xvalue.
7430 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7431 S.Context.getPointerType(From->getType()),
7432 VK_RValue, OK_Ordinary, Loc);
7433 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7434 S.Context.getPointerType(To->getType()),
7435 VK_RValue, OK_Ordinary, Loc);
7436
7437 const Type *E = T->getBaseElementTypeUnsafe();
7438 bool NeedsCollectableMemCpy =
7439 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7440
7441 // Create a reference to the __builtin_objc_memmove_collectable function
7442 StringRef MemCpyName = NeedsCollectableMemCpy ?
7443 "__builtin_objc_memmove_collectable" :
7444 "__builtin_memcpy";
7445 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7446 Sema::LookupOrdinaryName);
7447 S.LookupName(R, S.TUScope, true);
7448
7449 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7450 if (!MemCpy)
7451 // Something went horribly wrong earlier, and we will have complained
7452 // about it.
7453 return StmtError();
7454
7455 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7456 VK_RValue, Loc, 0);
7457 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7458
7459 Expr *CallArgs[] = {
7460 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7461 };
7462 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7463 Loc, CallArgs, Loc);
7464
7465 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7466 return S.Owned(Call.takeAs<Stmt>());
7467}
7468
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007469/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007470/// \c To.
7471///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007472/// This routine is used to copy/move the members of a class with an
7473/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007474/// copied are arrays, this routine builds for loops to copy them.
7475///
7476/// \param S The Sema object used for type-checking.
7477///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007478/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007479///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007480/// \param T The type of the expressions being copied/moved. Both expressions
7481/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007482///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007483/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007484///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007485/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007486///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007487/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007488/// Otherwise, it's a non-static member subobject.
7489///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007490/// \param Copying Whether we're copying or moving.
7491///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007492/// \param Depth Internal parameter recording the depth of the recursion.
7493///
Richard Smith8c889532012-11-14 00:50:40 +00007494/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7495/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007496static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007497buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7498 Expr *To, Expr *From,
7499 bool CopyingBaseSubobject, bool Copying,
7500 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007501 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007502 // Each subobject is assigned in the manner appropriate to its type:
7503 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007504 // - if the subobject is of class type, as if by a call to operator= with
7505 // the subobject as the object expression and the corresponding
7506 // subobject of x as a single function argument (as if by explicit
7507 // qualification; that is, ignoring any possible virtual overriding
7508 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00007509 //
7510 // C++03 [class.copy]p13:
7511 // - if the subobject is of class type, the copy assignment operator for
7512 // the class is used (as if by explicit qualification; that is,
7513 // ignoring any possible virtual overriding functions in more derived
7514 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007515 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
7516 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00007517
Douglas Gregor06a9f362010-05-01 20:49:11 +00007518 // Look for operator=.
7519 DeclarationName Name
7520 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
7521 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
7522 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007523
Richard Smith044c8aa2012-11-13 00:54:12 +00007524 // Prior to C++11, filter out any result that isn't a copy/move-assignment
7525 // operator.
7526 if (!S.getLangOpts().CPlusPlus0x) {
7527 LookupResult::Filter F = OpLookup.makeFilter();
7528 while (F.hasNext()) {
7529 NamedDecl *D = F.next();
7530 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
7531 if (Method->isCopyAssignmentOperator() ||
7532 (!Copying && Method->isMoveAssignmentOperator()))
7533 continue;
7534
7535 F.erase();
7536 }
7537 F.done();
John McCallb0207482010-03-16 06:11:48 +00007538 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007539
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007540 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00007541 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007542 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00007543 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007544 // ambiguities), we need to cast "this" to that subobject type; to
7545 // ensure that we don't go through the virtual call mechanism, we need
7546 // to qualify the operator= name with the base class (see below). However,
7547 // this means that if the base class has a protected copy assignment
7548 // operator, the protected member access check will fail. So, we
7549 // rewrite "protected" access to "public" access in this case, since we
7550 // know by construction that we're calling from a derived class.
7551 if (CopyingBaseSubobject) {
7552 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
7553 L != LEnd; ++L) {
7554 if (L.getAccess() == AS_protected)
7555 L.setAccess(AS_public);
7556 }
7557 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007558
Douglas Gregor06a9f362010-05-01 20:49:11 +00007559 // Create the nested-name-specifier that will be used to qualify the
7560 // reference to operator=; this is required to suppress the virtual
7561 // call mechanism.
7562 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007563 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00007564 SS.MakeTrivial(S.Context,
7565 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00007566 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00007567 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00007568
Douglas Gregor06a9f362010-05-01 20:49:11 +00007569 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00007570 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00007571 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00007572 /*TemplateKWLoc=*/SourceLocation(),
7573 /*FirstQualifierInScope=*/0,
7574 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007575 /*TemplateArgs=*/0,
7576 /*SuppressQualifierCheck=*/true);
7577 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007578 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007579
Douglas Gregor06a9f362010-05-01 20:49:11 +00007580 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00007581
Richard Smith044c8aa2012-11-13 00:54:12 +00007582 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00007583 OpEqualRef.takeAs<Expr>(),
7584 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007585 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007586 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007587
Richard Smith8c889532012-11-14 00:50:40 +00007588 // If we built a call to a trivial 'operator=' while copying an array,
7589 // bail out. We'll replace the whole shebang with a memcpy.
7590 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
7591 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
7592 return StmtResult((Stmt*)0);
7593
Richard Smith044c8aa2012-11-13 00:54:12 +00007594 // Convert to an expression-statement, and clean up any produced
7595 // temporaries.
7596 return S.ActOnExprStmt(S.MakeFullExpr(Call.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007597 }
John McCallb0207482010-03-16 06:11:48 +00007598
Richard Smith044c8aa2012-11-13 00:54:12 +00007599 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00007600 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00007601 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007602 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00007603 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007604 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00007605 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00007606 return S.ActOnExprStmt(S.MakeFullExpr(Assignment.take(), Loc));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007607 }
Richard Smith044c8aa2012-11-13 00:54:12 +00007608
7609 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00007610 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00007611
Douglas Gregor06a9f362010-05-01 20:49:11 +00007612 // Construct a loop over the array bounds, e.g.,
7613 //
7614 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
7615 //
7616 // that will copy each of the array elements.
7617 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00007618
Douglas Gregor06a9f362010-05-01 20:49:11 +00007619 // Create the iteration variable.
7620 IdentifierInfo *IterationVarName = 0;
7621 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00007622 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007623 llvm::raw_svector_ostream OS(Str);
7624 OS << "__i" << Depth;
7625 IterationVarName = &S.Context.Idents.get(OS.str());
7626 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007627 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007628 IterationVarName, SizeType,
7629 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00007630 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00007631
Douglas Gregor06a9f362010-05-01 20:49:11 +00007632 // Initialize the iteration variable to zero.
7633 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00007634 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00007635
7636 // Create a reference to the iteration variable; we'll use this several
7637 // times throughout.
7638 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00007639 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007640 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00007641 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
7642 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
7643
Douglas Gregor06a9f362010-05-01 20:49:11 +00007644 // Create the DeclStmt that holds the iteration variable.
7645 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00007646
Douglas Gregor06a9f362010-05-01 20:49:11 +00007647 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00007648 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007649 IterationVarRefRVal,
7650 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00007651 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00007652 IterationVarRefRVal,
7653 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007654 if (!Copying) // Cast to rvalue
7655 From = CastForMoving(S, From);
7656
7657 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00007658 StmtResult Copy =
7659 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
7660 To, From, CopyingBaseSubobject,
7661 Copying, Depth + 1);
7662 // Bail out if copying fails or if we determined that we should use memcpy.
7663 if (Copy.isInvalid() || !Copy.get())
7664 return Copy;
7665
7666 // Create the comparison against the array bound.
7667 llvm::APInt Upper
7668 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
7669 Expr *Comparison
7670 = new (S.Context) BinaryOperator(IterationVarRefRVal,
7671 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
7672 BO_NE, S.Context.BoolTy,
7673 VK_RValue, OK_Ordinary, Loc, false);
7674
7675 // Create the pre-increment of the iteration variable.
7676 Expr *Increment
7677 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
7678 VK_LValue, OK_Ordinary, Loc);
7679
Douglas Gregor06a9f362010-05-01 20:49:11 +00007680 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00007681 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00007682 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00007683 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00007684 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00007685}
7686
Richard Smith8c889532012-11-14 00:50:40 +00007687static StmtResult
7688buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
7689 Expr *To, Expr *From,
7690 bool CopyingBaseSubobject, bool Copying) {
7691 // Maybe we should use a memcpy?
7692 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
7693 T.isTriviallyCopyableType(S.Context))
7694 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7695
7696 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
7697 CopyingBaseSubobject,
7698 Copying, 0));
7699
7700 // If we ended up picking a trivial assignment operator for an array of a
7701 // non-trivially-copyable class type, just emit a memcpy.
7702 if (!Result.isInvalid() && !Result.get())
7703 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
7704
7705 return Result;
7706}
7707
Richard Smithb9d0b762012-07-27 04:22:15 +00007708/// Determine whether an implicit copy assignment operator for ClassDecl has a
7709/// const argument.
7710/// FIXME: It ought to be possible to store this on the record.
7711static bool isImplicitCopyAssignmentArgConst(Sema &S,
7712 CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007713 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007714 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007715
Douglas Gregord3c35902010-07-01 16:36:15 +00007716 // C++ [class.copy]p10:
7717 // If the class definition does not explicitly declare a copy
7718 // assignment operator, one is declared implicitly.
7719 // The implicitly-defined copy assignment operator for a class X
7720 // will have the form
7721 //
7722 // X& X::operator=(const X&)
7723 //
7724 // if
Douglas Gregord3c35902010-07-01 16:36:15 +00007725 // -- each direct base class B of X has a copy assignment operator
7726 // whose parameter is of type const B&, const volatile B& or B,
7727 // and
7728 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7729 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007730 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007731 // We'll handle this below
Richard Smithb9d0b762012-07-27 04:22:15 +00007732 if (S.getLangOpts().CPlusPlus0x && Base->isVirtual())
Sean Hunt661c67a2011-06-21 23:42:56 +00007733 continue;
7734
Douglas Gregord3c35902010-07-01 16:36:15 +00007735 assert(!Base->getType()->isDependentType() &&
7736 "Cannot generate implicit members for class with dependent bases.");
Sean Hunt661c67a2011-06-21 23:42:56 +00007737 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007738 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const, false, 0))
7739 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007740 }
7741
Richard Smithebaf0e62011-10-18 20:49:44 +00007742 // In C++11, the above citation has "or virtual" added
Richard Smithb9d0b762012-07-27 04:22:15 +00007743 if (S.getLangOpts().CPlusPlus0x) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007744 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7745 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007746 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007747 assert(!Base->getType()->isDependentType() &&
7748 "Cannot generate implicit members for class with dependent bases.");
7749 CXXRecordDecl *BaseClassDecl = Base->getType()->getAsCXXRecordDecl();
Richard Smithb9d0b762012-07-27 04:22:15 +00007750 if (!S.LookupCopyingAssignment(BaseClassDecl, Qualifiers::Const,
7751 false, 0))
7752 return false;
Sean Hunt661c67a2011-06-21 23:42:56 +00007753 }
Douglas Gregord3c35902010-07-01 16:36:15 +00007754 }
7755
7756 // -- for all the nonstatic data members of X that are of a class
7757 // type M (or array thereof), each such class type has a copy
7758 // assignment operator whose parameter is of type const M&,
7759 // const volatile M& or M.
7760 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7761 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00007762 Field != FieldEnd; ++Field) {
7763 QualType FieldType = S.Context.getBaseElementType(Field->getType());
7764 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl())
7765 if (!S.LookupCopyingAssignment(FieldClassDecl, Qualifiers::Const,
7766 false, 0))
7767 return false;
Douglas Gregord3c35902010-07-01 16:36:15 +00007768 }
7769
7770 // Otherwise, the implicitly declared copy assignment operator will
7771 // have the form
7772 //
7773 // X& X::operator=(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00007774
7775 return true;
7776}
7777
7778Sema::ImplicitExceptionSpecification
7779Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
7780 CXXRecordDecl *ClassDecl = MD->getParent();
7781
7782 ImplicitExceptionSpecification ExceptSpec(*this);
7783 if (ClassDecl->isInvalidDecl())
7784 return ExceptSpec;
7785
7786 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
7787 assert(T->getNumArgs() == 1 && "not a copy assignment op");
7788 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
7789
Douglas Gregorb87786f2010-07-01 17:48:08 +00007790 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00007791 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00007792 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00007793
7794 // It is unspecified whether or not an implicit copy assignment operator
7795 // attempts to deduplicate calls to assignment operators of virtual bases are
7796 // made. As such, this exception specification is effectively unspecified.
7797 // Based on a similar decision made for constness in C++0x, we're erring on
7798 // the side of assuming such calls to be made regardless of whether they
7799 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00007800 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7801 BaseEnd = ClassDecl->bases_end();
7802 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00007803 if (Base->isVirtual())
7804 continue;
7805
Douglas Gregora376d102010-07-02 21:50:04 +00007806 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00007807 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00007808 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7809 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007810 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00007811 }
Sean Hunt661c67a2011-06-21 23:42:56 +00007812
7813 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7814 BaseEnd = ClassDecl->vbases_end();
7815 Base != BaseEnd; ++Base) {
7816 CXXRecordDecl *BaseClassDecl
7817 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
7818 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
7819 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007820 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00007821 }
7822
Douglas Gregorb87786f2010-07-01 17:48:08 +00007823 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7824 FieldEnd = ClassDecl->field_end();
7825 Field != FieldEnd;
7826 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00007827 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00007828 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
7829 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00007830 LookupCopyingAssignment(FieldClassDecl,
7831 ArgQuals | FieldType.getCVRQualifiers(),
7832 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00007833 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007834 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00007835 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007836
Richard Smithb9d0b762012-07-27 04:22:15 +00007837 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00007838}
7839
7840CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
7841 // Note: The following rules are largely analoguous to the copy
7842 // constructor rules. Note that virtual bases are not taken into account
7843 // for determining the argument type of the operator. Note also that
7844 // operators taking an object instead of a reference are allowed.
7845
Sean Hunt30de05c2011-05-14 05:23:20 +00007846 QualType ArgType = Context.getTypeDeclType(ClassDecl);
7847 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithb9d0b762012-07-27 04:22:15 +00007848 if (isImplicitCopyAssignmentArgConst(*this, ClassDecl))
Sean Hunt30de05c2011-05-14 05:23:20 +00007849 ArgType = ArgType.withConst();
7850 ArgType = Context.getLValueReferenceType(ArgType);
7851
Douglas Gregord3c35902010-07-01 16:36:15 +00007852 // An implicitly-declared copy assignment operator is an inline public
7853 // member of its class.
7854 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007855 SourceLocation ClassLoc = ClassDecl->getLocation();
7856 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00007857 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00007858 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00007859 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00007860 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007861 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00007862 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00007863 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00007864 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00007865 CopyAssignment->setImplicit();
7866 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Richard Smithb9d0b762012-07-27 04:22:15 +00007867
7868 // Build an exception specification pointing back at this member.
7869 FunctionProtoType::ExtProtoInfo EPI;
7870 EPI.ExceptionSpecType = EST_Unevaluated;
7871 EPI.ExceptionSpecDecl = CopyAssignment;
7872 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
7873
Douglas Gregord3c35902010-07-01 16:36:15 +00007874 // Add the parameter to the operator.
7875 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007876 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00007877 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00007878 SC_None,
7879 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00007880 CopyAssignment->setParams(FromParam);
Douglas Gregord3c35902010-07-01 16:36:15 +00007881
Douglas Gregora376d102010-07-02 21:50:04 +00007882 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00007883 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Sean Hunt7f410192011-05-14 05:23:24 +00007884
Douglas Gregor23c94db2010-07-02 17:43:08 +00007885 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00007886 PushOnScopeChains(CopyAssignment, S, false);
7887 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00007888
Nico Weberafcc96a2012-01-23 03:19:29 +00007889 // C++0x [class.copy]p19:
7890 // .... If the class definition does not explicitly declare a copy
7891 // assignment operator, there is no user-declared move constructor, and
7892 // there is no user-declared move assignment operator, a copy assignment
7893 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00007894 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00007895 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00007896
Douglas Gregord3c35902010-07-01 16:36:15 +00007897 AddOverriddenMethods(ClassDecl, CopyAssignment);
7898 return CopyAssignment;
7899}
7900
Douglas Gregor06a9f362010-05-01 20:49:11 +00007901void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
7902 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00007903 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007904 CopyAssignOperator->isOverloadedOperator() &&
7905 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00007906 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
7907 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00007908 "DefineImplicitCopyAssignment called for wrong function");
7909
7910 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
7911
7912 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
7913 CopyAssignOperator->setInvalidDecl();
7914 return;
7915 }
7916
7917 CopyAssignOperator->setUsed();
7918
Eli Friedman9a14db32012-10-18 20:14:08 +00007919 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007920 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007921
7922 // C++0x [class.copy]p30:
7923 // The implicitly-defined or explicitly-defaulted copy assignment operator
7924 // for a non-union class X performs memberwise copy assignment of its
7925 // subobjects. The direct base classes of X are assigned first, in the
7926 // order of their declaration in the base-specifier-list, and then the
7927 // immediate non-static data members of X are assigned, in the order in
7928 // which they were declared in the class definition.
7929
7930 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00007931 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007932
7933 // The parameter for the "other" object, which we are copying from.
7934 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
7935 Qualifiers OtherQuals = Other->getType().getQualifiers();
7936 QualType OtherRefType = Other->getType();
7937 if (const LValueReferenceType *OtherRef
7938 = OtherRefType->getAs<LValueReferenceType>()) {
7939 OtherRefType = OtherRef->getPointeeType();
7940 OtherQuals = OtherRefType.getQualifiers();
7941 }
7942
7943 // Our location for everything implicitly-generated.
7944 SourceLocation Loc = CopyAssignOperator->getLocation();
7945
7946 // Construct a reference to the "other" object. We'll be using this
7947 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00007948 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007949 assert(OtherRef && "Reference to parameter cannot fail!");
7950
7951 // Construct the "this" pointer. We'll be using this throughout the generated
7952 // ASTs.
7953 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
7954 assert(This && "Reference to this cannot fail!");
7955
7956 // Assign base classes.
7957 bool Invalid = false;
7958 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7959 E = ClassDecl->bases_end(); Base != E; ++Base) {
7960 // Form the assignment:
7961 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
7962 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00007963 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00007964 Invalid = true;
7965 continue;
7966 }
7967
John McCallf871d0c2010-08-07 06:22:56 +00007968 CXXCastPath BasePath;
7969 BasePath.push_back(Base);
7970
Douglas Gregor06a9f362010-05-01 20:49:11 +00007971 // Construct the "from" expression, which is an implicit cast to the
7972 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00007973 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00007974 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
7975 CK_UncheckedDerivedToBase,
7976 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00007977
7978 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00007979 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007980
7981 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00007982 To = ImpCastExprToType(To.take(),
7983 Context.getCVRQualifiedType(BaseType,
7984 CopyAssignOperator->getTypeQualifiers()),
7985 CK_UncheckedDerivedToBase,
7986 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007987
7988 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00007989 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00007990 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007991 /*CopyingBaseSubobject=*/true,
7992 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00007993 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00007994 Diag(CurrentLocation, diag::note_member_synthesized_at)
7995 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7996 CopyAssignOperator->setInvalidDecl();
7997 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00007998 }
7999
8000 // Success! Record the copy.
8001 Statements.push_back(Copy.takeAs<Expr>());
8002 }
8003
Douglas Gregor06a9f362010-05-01 20:49:11 +00008004 // Assign non-static members.
8005 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8006 FieldEnd = ClassDecl->field_end();
8007 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008008 if (Field->isUnnamedBitfield())
8009 continue;
8010
Douglas Gregor06a9f362010-05-01 20:49:11 +00008011 // Check for members of reference type; we can't copy those.
8012 if (Field->getType()->isReferenceType()) {
8013 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8014 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8015 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008016 Diag(CurrentLocation, diag::note_member_synthesized_at)
8017 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008018 Invalid = true;
8019 continue;
8020 }
8021
8022 // Check for members of const-qualified, non-class type.
8023 QualType BaseType = Context.getBaseElementType(Field->getType());
8024 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8025 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8026 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8027 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008028 Diag(CurrentLocation, diag::note_member_synthesized_at)
8029 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008030 Invalid = true;
8031 continue;
8032 }
John McCallb77115d2011-06-17 00:18:42 +00008033
8034 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008035 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8036 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008037
8038 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008039 if (FieldType->isIncompleteArrayType()) {
8040 assert(ClassDecl->hasFlexibleArrayMember() &&
8041 "Incomplete array type is not valid");
8042 continue;
8043 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008044
8045 // Build references to the field in the object we're copying from and to.
8046 CXXScopeSpec SS; // Intentionally empty
8047 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8048 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008049 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008050 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008051 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008052 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008053 SS, SourceLocation(), 0,
8054 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008055 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008056 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008057 SS, SourceLocation(), 0,
8058 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008059 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8060 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008061
Douglas Gregor06a9f362010-05-01 20:49:11 +00008062 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008063 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008064 To.get(), From.get(),
8065 /*CopyingBaseSubobject=*/false,
8066 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008067 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008068 Diag(CurrentLocation, diag::note_member_synthesized_at)
8069 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8070 CopyAssignOperator->setInvalidDecl();
8071 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008072 }
8073
8074 // Success! Record the copy.
8075 Statements.push_back(Copy.takeAs<Stmt>());
8076 }
8077
8078 if (!Invalid) {
8079 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008080 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008081
John McCall60d7b3a2010-08-24 06:29:42 +00008082 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008083 if (Return.isInvalid())
8084 Invalid = true;
8085 else {
8086 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008087
8088 if (Trap.hasErrorOccurred()) {
8089 Diag(CurrentLocation, diag::note_member_synthesized_at)
8090 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8091 Invalid = true;
8092 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008093 }
8094 }
8095
8096 if (Invalid) {
8097 CopyAssignOperator->setInvalidDecl();
8098 return;
8099 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008100
8101 StmtResult Body;
8102 {
8103 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008104 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008105 /*isStmtExpr=*/false);
8106 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8107 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008108 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008109
8110 if (ASTMutationListener *L = getASTMutationListener()) {
8111 L->CompletedImplicitDefinition(CopyAssignOperator);
8112 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008113}
8114
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008115Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008116Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8117 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008118
Richard Smithb9d0b762012-07-27 04:22:15 +00008119 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008120 if (ClassDecl->isInvalidDecl())
8121 return ExceptSpec;
8122
8123 // C++0x [except.spec]p14:
8124 // An implicitly declared special member function (Clause 12) shall have an
8125 // exception-specification. [...]
8126
8127 // It is unspecified whether or not an implicit move assignment operator
8128 // attempts to deduplicate calls to assignment operators of virtual bases are
8129 // made. As such, this exception specification is effectively unspecified.
8130 // Based on a similar decision made for constness in C++0x, we're erring on
8131 // the side of assuming such calls to be made regardless of whether they
8132 // actually happen.
8133 // Note that a move constructor is not implicitly declared when there are
8134 // virtual bases, but it can still be user-declared and explicitly defaulted.
8135 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8136 BaseEnd = ClassDecl->bases_end();
8137 Base != BaseEnd; ++Base) {
8138 if (Base->isVirtual())
8139 continue;
8140
8141 CXXRecordDecl *BaseClassDecl
8142 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8143 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008144 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008145 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008146 }
8147
8148 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8149 BaseEnd = ClassDecl->vbases_end();
8150 Base != BaseEnd; ++Base) {
8151 CXXRecordDecl *BaseClassDecl
8152 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8153 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008154 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008155 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008156 }
8157
8158 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8159 FieldEnd = ClassDecl->field_end();
8160 Field != FieldEnd;
8161 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008162 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008163 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008164 if (CXXMethodDecl *MoveAssign =
8165 LookupMovingAssignment(FieldClassDecl,
8166 FieldType.getCVRQualifiers(),
8167 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008168 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008169 }
8170 }
8171
8172 return ExceptSpec;
8173}
8174
Richard Smith1c931be2012-04-02 18:40:40 +00008175/// Determine whether the class type has any direct or indirect virtual base
8176/// classes which have a non-trivial move assignment operator.
8177static bool
8178hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8179 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8180 BaseEnd = ClassDecl->vbases_end();
8181 Base != BaseEnd; ++Base) {
8182 CXXRecordDecl *BaseClass =
8183 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8184
8185 // Try to declare the move assignment. If it would be deleted, then the
8186 // class does not have a non-trivial move assignment.
8187 if (BaseClass->needsImplicitMoveAssignment())
8188 S.DeclareImplicitMoveAssignment(BaseClass);
8189
8190 // If the class has both a trivial move assignment and a non-trivial move
8191 // assignment, hasTrivialMoveAssignment() is false.
8192 if (BaseClass->hasDeclaredMoveAssignment() &&
8193 !BaseClass->hasTrivialMoveAssignment())
8194 return true;
8195 }
8196
8197 return false;
8198}
8199
8200/// Determine whether the given type either has a move constructor or is
8201/// trivially copyable.
8202static bool
8203hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8204 Type = S.Context.getBaseElementType(Type);
8205
8206 // FIXME: Technically, non-trivially-copyable non-class types, such as
8207 // reference types, are supposed to return false here, but that appears
8208 // to be a standard defect.
8209 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008210 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008211 return true;
8212
8213 if (Type.isTriviallyCopyableType(S.Context))
8214 return true;
8215
8216 if (IsConstructor) {
8217 if (ClassDecl->needsImplicitMoveConstructor())
8218 S.DeclareImplicitMoveConstructor(ClassDecl);
8219 return ClassDecl->hasDeclaredMoveConstructor();
8220 }
8221
8222 if (ClassDecl->needsImplicitMoveAssignment())
8223 S.DeclareImplicitMoveAssignment(ClassDecl);
8224 return ClassDecl->hasDeclaredMoveAssignment();
8225}
8226
8227/// Determine whether all non-static data members and direct or virtual bases
8228/// of class \p ClassDecl have either a move operation, or are trivially
8229/// copyable.
8230static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8231 bool IsConstructor) {
8232 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8233 BaseEnd = ClassDecl->bases_end();
8234 Base != BaseEnd; ++Base) {
8235 if (Base->isVirtual())
8236 continue;
8237
8238 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8239 return false;
8240 }
8241
8242 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8243 BaseEnd = ClassDecl->vbases_end();
8244 Base != BaseEnd; ++Base) {
8245 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8246 return false;
8247 }
8248
8249 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8250 FieldEnd = ClassDecl->field_end();
8251 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008252 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008253 return false;
8254 }
8255
8256 return true;
8257}
8258
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008259CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008260 // C++11 [class.copy]p20:
8261 // If the definition of a class X does not explicitly declare a move
8262 // assignment operator, one will be implicitly declared as defaulted
8263 // if and only if:
8264 //
8265 // - [first 4 bullets]
8266 assert(ClassDecl->needsImplicitMoveAssignment());
8267
8268 // [Checked after we build the declaration]
8269 // - the move assignment operator would not be implicitly defined as
8270 // deleted,
8271
8272 // [DR1402]:
8273 // - X has no direct or indirect virtual base class with a non-trivial
8274 // move assignment operator, and
8275 // - each of X's non-static data members and direct or virtual base classes
8276 // has a type that either has a move assignment operator or is trivially
8277 // copyable.
8278 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8279 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8280 ClassDecl->setFailedImplicitMoveAssignment();
8281 return 0;
8282 }
8283
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008284 // Note: The following rules are largely analoguous to the move
8285 // constructor rules.
8286
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008287 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8288 QualType RetType = Context.getLValueReferenceType(ArgType);
8289 ArgType = Context.getRValueReferenceType(ArgType);
8290
8291 // An implicitly-declared move assignment operator is an inline public
8292 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008293 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8294 SourceLocation ClassLoc = ClassDecl->getLocation();
8295 DeclarationNameInfo NameInfo(Name, ClassLoc);
8296 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008297 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008298 /*TInfo=*/0, /*isStatic=*/false,
8299 /*StorageClassAsWritten=*/SC_None,
8300 /*isInline=*/true,
8301 /*isConstexpr=*/false,
8302 SourceLocation());
8303 MoveAssignment->setAccess(AS_public);
8304 MoveAssignment->setDefaulted();
8305 MoveAssignment->setImplicit();
8306 MoveAssignment->setTrivial(ClassDecl->hasTrivialMoveAssignment());
8307
Richard Smithb9d0b762012-07-27 04:22:15 +00008308 // Build an exception specification pointing back at this member.
8309 FunctionProtoType::ExtProtoInfo EPI;
8310 EPI.ExceptionSpecType = EST_Unevaluated;
8311 EPI.ExceptionSpecDecl = MoveAssignment;
8312 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8313
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008314 // Add the parameter to the operator.
8315 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8316 ClassLoc, ClassLoc, /*Id=*/0,
8317 ArgType, /*TInfo=*/0,
8318 SC_None,
8319 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008320 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008321
8322 // Note that we have added this copy-assignment operator.
8323 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8324
8325 // C++0x [class.copy]p9:
8326 // If the definition of a class X does not explicitly declare a move
8327 // assignment operator, one will be implicitly declared as defaulted if and
8328 // only if:
8329 // [...]
8330 // - the move assignment operator would not be implicitly defined as
8331 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008332 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008333 // Cache this result so that we don't try to generate this over and over
8334 // on every lookup, leaking memory and wasting time.
8335 ClassDecl->setFailedImplicitMoveAssignment();
8336 return 0;
8337 }
8338
8339 if (Scope *S = getScopeForContext(ClassDecl))
8340 PushOnScopeChains(MoveAssignment, S, false);
8341 ClassDecl->addDecl(MoveAssignment);
8342
8343 AddOverriddenMethods(ClassDecl, MoveAssignment);
8344 return MoveAssignment;
8345}
8346
8347void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8348 CXXMethodDecl *MoveAssignOperator) {
8349 assert((MoveAssignOperator->isDefaulted() &&
8350 MoveAssignOperator->isOverloadedOperator() &&
8351 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008352 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8353 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008354 "DefineImplicitMoveAssignment called for wrong function");
8355
8356 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8357
8358 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8359 MoveAssignOperator->setInvalidDecl();
8360 return;
8361 }
8362
8363 MoveAssignOperator->setUsed();
8364
Eli Friedman9a14db32012-10-18 20:14:08 +00008365 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008366 DiagnosticErrorTrap Trap(Diags);
8367
8368 // C++0x [class.copy]p28:
8369 // The implicitly-defined or move assignment operator for a non-union class
8370 // X performs memberwise move assignment of its subobjects. The direct base
8371 // classes of X are assigned first, in the order of their declaration in the
8372 // base-specifier-list, and then the immediate non-static data members of X
8373 // are assigned, in the order in which they were declared in the class
8374 // definition.
8375
8376 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008377 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008378
8379 // The parameter for the "other" object, which we are move from.
8380 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8381 QualType OtherRefType = Other->getType()->
8382 getAs<RValueReferenceType>()->getPointeeType();
8383 assert(OtherRefType.getQualifiers() == 0 &&
8384 "Bad argument type of defaulted move assignment");
8385
8386 // Our location for everything implicitly-generated.
8387 SourceLocation Loc = MoveAssignOperator->getLocation();
8388
8389 // Construct a reference to the "other" object. We'll be using this
8390 // throughout the generated ASTs.
8391 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8392 assert(OtherRef && "Reference to parameter cannot fail!");
8393 // Cast to rvalue.
8394 OtherRef = CastForMoving(*this, OtherRef);
8395
8396 // Construct the "this" pointer. We'll be using this throughout the generated
8397 // ASTs.
8398 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8399 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008400
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008401 // Assign base classes.
8402 bool Invalid = false;
8403 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8404 E = ClassDecl->bases_end(); Base != E; ++Base) {
8405 // Form the assignment:
8406 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8407 QualType BaseType = Base->getType().getUnqualifiedType();
8408 if (!BaseType->isRecordType()) {
8409 Invalid = true;
8410 continue;
8411 }
8412
8413 CXXCastPath BasePath;
8414 BasePath.push_back(Base);
8415
8416 // Construct the "from" expression, which is an implicit cast to the
8417 // appropriately-qualified base type.
8418 Expr *From = OtherRef;
8419 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008420 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008421
8422 // Dereference "this".
8423 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8424
8425 // Implicitly cast "this" to the appropriately-qualified base type.
8426 To = ImpCastExprToType(To.take(),
8427 Context.getCVRQualifiedType(BaseType,
8428 MoveAssignOperator->getTypeQualifiers()),
8429 CK_UncheckedDerivedToBase,
8430 VK_LValue, &BasePath);
8431
8432 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008433 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008434 To.get(), From,
8435 /*CopyingBaseSubobject=*/true,
8436 /*Copying=*/false);
8437 if (Move.isInvalid()) {
8438 Diag(CurrentLocation, diag::note_member_synthesized_at)
8439 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8440 MoveAssignOperator->setInvalidDecl();
8441 return;
8442 }
8443
8444 // Success! Record the move.
8445 Statements.push_back(Move.takeAs<Expr>());
8446 }
8447
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008448 // Assign non-static members.
8449 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8450 FieldEnd = ClassDecl->field_end();
8451 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008452 if (Field->isUnnamedBitfield())
8453 continue;
8454
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008455 // Check for members of reference type; we can't move those.
8456 if (Field->getType()->isReferenceType()) {
8457 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8458 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8459 Diag(Field->getLocation(), diag::note_declared_at);
8460 Diag(CurrentLocation, diag::note_member_synthesized_at)
8461 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8462 Invalid = true;
8463 continue;
8464 }
8465
8466 // Check for members of const-qualified, non-class type.
8467 QualType BaseType = Context.getBaseElementType(Field->getType());
8468 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8469 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8470 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8471 Diag(Field->getLocation(), diag::note_declared_at);
8472 Diag(CurrentLocation, diag::note_member_synthesized_at)
8473 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8474 Invalid = true;
8475 continue;
8476 }
8477
8478 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008479 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8480 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008481
8482 QualType FieldType = Field->getType().getNonReferenceType();
8483 if (FieldType->isIncompleteArrayType()) {
8484 assert(ClassDecl->hasFlexibleArrayMember() &&
8485 "Incomplete array type is not valid");
8486 continue;
8487 }
8488
8489 // Build references to the field in the object we're copying from and to.
8490 CXXScopeSpec SS; // Intentionally empty
8491 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8492 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008493 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008494 MemberLookup.resolveKind();
8495 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8496 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008497 SS, SourceLocation(), 0,
8498 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008499 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8500 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008501 SS, SourceLocation(), 0,
8502 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008503 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8504 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8505
8506 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8507 "Member reference with rvalue base must be rvalue except for reference "
8508 "members, which aren't allowed for move assignment.");
8509
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008510 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008511 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008512 To.get(), From.get(),
8513 /*CopyingBaseSubobject=*/false,
8514 /*Copying=*/false);
8515 if (Move.isInvalid()) {
8516 Diag(CurrentLocation, diag::note_member_synthesized_at)
8517 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8518 MoveAssignOperator->setInvalidDecl();
8519 return;
8520 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008521
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008522 // Success! Record the copy.
8523 Statements.push_back(Move.takeAs<Stmt>());
8524 }
8525
8526 if (!Invalid) {
8527 // Add a "return *this;"
8528 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8529
8530 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8531 if (Return.isInvalid())
8532 Invalid = true;
8533 else {
8534 Statements.push_back(Return.takeAs<Stmt>());
8535
8536 if (Trap.hasErrorOccurred()) {
8537 Diag(CurrentLocation, diag::note_member_synthesized_at)
8538 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8539 Invalid = true;
8540 }
8541 }
8542 }
8543
8544 if (Invalid) {
8545 MoveAssignOperator->setInvalidDecl();
8546 return;
8547 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008548
8549 StmtResult Body;
8550 {
8551 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008552 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008553 /*isStmtExpr=*/false);
8554 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8555 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008556 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
8557
8558 if (ASTMutationListener *L = getASTMutationListener()) {
8559 L->CompletedImplicitDefinition(MoveAssignOperator);
8560 }
8561}
8562
Richard Smithb9d0b762012-07-27 04:22:15 +00008563/// Determine whether an implicit copy constructor for ClassDecl has a const
8564/// argument.
8565/// FIXME: It ought to be possible to store this on the record.
8566static bool isImplicitCopyCtorArgConst(Sema &S, CXXRecordDecl *ClassDecl) {
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008567 if (ClassDecl->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00008568 return true;
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008569
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008570 // C++ [class.copy]p5:
8571 // The implicitly-declared copy constructor for a class X will
8572 // have the form
8573 //
8574 // X::X(const X&)
8575 //
8576 // if
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008577 // -- each direct or virtual base class B of X has a copy
8578 // constructor whose first parameter is of type const B& or
8579 // const volatile B&, and
8580 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8581 BaseEnd = ClassDecl->bases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008582 Base != BaseEnd; ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00008583 // Virtual bases are handled below.
8584 if (Base->isVirtual())
8585 continue;
Richard Smithb9d0b762012-07-27 04:22:15 +00008586
Douglas Gregor22584312010-07-02 23:41:54 +00008587 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00008588 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008589 // FIXME: This lookup is wrong. If the copy ctor for a member or base is
8590 // ambiguous, we should still produce a constructor with a const-qualified
8591 // parameter.
8592 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8593 return false;
Douglas Gregor598a8542010-07-01 18:27:03 +00008594 }
8595
8596 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8597 BaseEnd = ClassDecl->vbases_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008598 Base != BaseEnd; ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008599 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008600 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Richard Smithb9d0b762012-07-27 04:22:15 +00008601 if (!S.LookupCopyingConstructor(BaseClassDecl, Qualifiers::Const))
8602 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008603 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008604
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008605 // -- for all the nonstatic data members of X that are of a
8606 // class type M (or array thereof), each such class type
8607 // has a copy constructor whose first parameter is of type
8608 // const M& or const volatile M&.
8609 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8610 FieldEnd = ClassDecl->field_end();
Richard Smithb9d0b762012-07-27 04:22:15 +00008611 Field != FieldEnd; ++Field) {
8612 QualType FieldType = S.Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008613 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smithb9d0b762012-07-27 04:22:15 +00008614 if (!S.LookupCopyingConstructor(FieldClassDecl, Qualifiers::Const))
8615 return false;
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008616 }
8617 }
Richard Smithb9d0b762012-07-27 04:22:15 +00008618
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008619 // Otherwise, the implicitly declared copy constructor will have
8620 // the form
8621 //
8622 // X::X(X&)
Richard Smithb9d0b762012-07-27 04:22:15 +00008623
8624 return true;
8625}
8626
8627Sema::ImplicitExceptionSpecification
8628Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
8629 CXXRecordDecl *ClassDecl = MD->getParent();
8630
8631 ImplicitExceptionSpecification ExceptSpec(*this);
8632 if (ClassDecl->isInvalidDecl())
8633 return ExceptSpec;
8634
8635 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8636 assert(T->getNumArgs() >= 1 && "not a copy ctor");
8637 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8638
Douglas Gregor0d405db2010-07-01 20:59:04 +00008639 // C++ [except.spec]p14:
8640 // An implicitly declared special member function (Clause 12) shall have an
8641 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00008642 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8643 BaseEnd = ClassDecl->bases_end();
8644 Base != BaseEnd;
8645 ++Base) {
8646 // Virtual bases are handled below.
8647 if (Base->isVirtual())
8648 continue;
8649
Douglas Gregor22584312010-07-02 23:41:54 +00008650 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008651 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008652 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008653 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008654 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008655 }
8656 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8657 BaseEnd = ClassDecl->vbases_end();
8658 Base != BaseEnd;
8659 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00008660 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00008661 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00008662 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00008663 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00008664 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008665 }
8666 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8667 FieldEnd = ClassDecl->field_end();
8668 Field != FieldEnd;
8669 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008670 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00008671 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8672 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008673 LookupCopyingConstructor(FieldClassDecl,
8674 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00008675 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00008676 }
8677 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008678
Richard Smithb9d0b762012-07-27 04:22:15 +00008679 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00008680}
8681
8682CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
8683 CXXRecordDecl *ClassDecl) {
8684 // C++ [class.copy]p4:
8685 // If the class definition does not explicitly declare a copy
8686 // constructor, one is declared implicitly.
8687
Sean Hunt49634cf2011-05-13 06:10:58 +00008688 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8689 QualType ArgType = ClassType;
Richard Smithb9d0b762012-07-27 04:22:15 +00008690 bool Const = isImplicitCopyCtorArgConst(*this, ClassDecl);
Sean Hunt49634cf2011-05-13 06:10:58 +00008691 if (Const)
8692 ArgType = ArgType.withConst();
8693 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00008694
Richard Smith7756afa2012-06-10 05:43:50 +00008695 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8696 CXXCopyConstructor,
8697 Const);
8698
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008699 DeclarationName Name
8700 = Context.DeclarationNames.getCXXConstructorName(
8701 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008702 SourceLocation ClassLoc = ClassDecl->getLocation();
8703 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00008704
8705 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008706 // member of its class.
8707 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008708 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008709 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008710 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008711 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00008712 CopyConstructor->setDefaulted();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008713 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008714
Richard Smithb9d0b762012-07-27 04:22:15 +00008715 // Build an exception specification pointing back at this member.
8716 FunctionProtoType::ExtProtoInfo EPI;
8717 EPI.ExceptionSpecType = EST_Unevaluated;
8718 EPI.ExceptionSpecDecl = CopyConstructor;
8719 CopyConstructor->setType(
8720 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8721
Douglas Gregor22584312010-07-02 23:41:54 +00008722 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00008723 ++ASTContext::NumImplicitCopyConstructorsDeclared;
8724
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008725 // Add the parameter to the constructor.
8726 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008727 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008728 /*IdentifierInfo=*/0,
8729 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008730 SC_None,
8731 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008732 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00008733
Douglas Gregor23c94db2010-07-02 17:43:08 +00008734 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00008735 PushOnScopeChains(CopyConstructor, S, false);
8736 ClassDecl->addDecl(CopyConstructor);
Sean Hunt71a682f2011-05-18 03:41:58 +00008737
Nico Weberafcc96a2012-01-23 03:19:29 +00008738 // C++11 [class.copy]p8:
8739 // ... If the class definition does not explicitly declare a copy
8740 // constructor, there is no user-declared move constructor, and there is no
8741 // user-declared move assignment operator, a copy constructor is implicitly
8742 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008743 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00008744 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008745
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00008746 return CopyConstructor;
8747}
8748
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008749void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00008750 CXXConstructorDecl *CopyConstructor) {
8751 assert((CopyConstructor->isDefaulted() &&
8752 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008753 !CopyConstructor->doesThisDeclarationHaveABody() &&
8754 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008755 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00008756
Anders Carlsson63010a72010-04-23 16:24:12 +00008757 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008758 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008759
Eli Friedman9a14db32012-10-18 20:14:08 +00008760 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008761 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00008762
Sean Huntcbb67482011-01-08 20:30:50 +00008763 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008764 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00008765 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008766 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00008767 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008768 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008769 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008770 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
8771 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008772 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008773 /*isStmtExpr=*/false)
8774 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008775 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00008776 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00008777
8778 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008779 if (ASTMutationListener *L = getASTMutationListener()) {
8780 L->CompletedImplicitDefinition(CopyConstructor);
8781 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00008782}
8783
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008784Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008785Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
8786 CXXRecordDecl *ClassDecl = MD->getParent();
8787
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008788 // C++ [except.spec]p14:
8789 // An implicitly declared special member function (Clause 12) shall have an
8790 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00008791 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008792 if (ClassDecl->isInvalidDecl())
8793 return ExceptSpec;
8794
8795 // Direct base-class constructors.
8796 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
8797 BEnd = ClassDecl->bases_end();
8798 B != BEnd; ++B) {
8799 if (B->isVirtual()) // Handled below.
8800 continue;
8801
8802 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8803 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008804 CXXConstructorDecl *Constructor =
8805 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008806 // If this is a deleted function, add it anyway. This might be conformant
8807 // with the standard. This might not. I'm not sure. It might not matter.
8808 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008809 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008810 }
8811 }
8812
8813 // Virtual base-class constructors.
8814 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
8815 BEnd = ClassDecl->vbases_end();
8816 B != BEnd; ++B) {
8817 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
8818 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00008819 CXXConstructorDecl *Constructor =
8820 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008821 // If this is a deleted function, add it anyway. This might be conformant
8822 // with the standard. This might not. I'm not sure. It might not matter.
8823 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008824 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008825 }
8826 }
8827
8828 // Field constructors.
8829 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
8830 FEnd = ClassDecl->field_end();
8831 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008832 QualType FieldType = Context.getBaseElementType(F->getType());
8833 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
8834 CXXConstructorDecl *Constructor =
8835 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008836 // If this is a deleted function, add it anyway. This might be conformant
8837 // with the standard. This might not. I'm not sure. It might not matter.
8838 // In particular, the problem is that this function never gets called. It
8839 // might just be ill-formed because this function attempts to refer to
8840 // a deleted function here.
8841 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00008842 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008843 }
8844 }
8845
8846 return ExceptSpec;
8847}
8848
8849CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
8850 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008851 // C++11 [class.copy]p9:
8852 // If the definition of a class X does not explicitly declare a move
8853 // constructor, one will be implicitly declared as defaulted if and only if:
8854 //
8855 // - [first 4 bullets]
8856 assert(ClassDecl->needsImplicitMoveConstructor());
8857
8858 // [Checked after we build the declaration]
8859 // - the move assignment operator would not be implicitly defined as
8860 // deleted,
8861
8862 // [DR1402]:
8863 // - each of X's non-static data members and direct or virtual base classes
8864 // has a type that either has a move constructor or is trivially copyable.
8865 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
8866 ClassDecl->setFailedImplicitMoveConstructor();
8867 return 0;
8868 }
8869
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008870 QualType ClassType = Context.getTypeDeclType(ClassDecl);
8871 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008872
Richard Smith7756afa2012-06-10 05:43:50 +00008873 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8874 CXXMoveConstructor,
8875 false);
8876
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008877 DeclarationName Name
8878 = Context.DeclarationNames.getCXXConstructorName(
8879 Context.getCanonicalType(ClassType));
8880 SourceLocation ClassLoc = ClassDecl->getLocation();
8881 DeclarationNameInfo NameInfo(Name, ClassLoc);
8882
8883 // C++0x [class.copy]p11:
8884 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00008885 // member of its class.
8886 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00008887 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00008888 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00008889 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008890 MoveConstructor->setAccess(AS_public);
8891 MoveConstructor->setDefaulted();
8892 MoveConstructor->setTrivial(ClassDecl->hasTrivialMoveConstructor());
Richard Smith61802452011-12-22 02:22:31 +00008893
Richard Smithb9d0b762012-07-27 04:22:15 +00008894 // Build an exception specification pointing back at this member.
8895 FunctionProtoType::ExtProtoInfo EPI;
8896 EPI.ExceptionSpecType = EST_Unevaluated;
8897 EPI.ExceptionSpecDecl = MoveConstructor;
8898 MoveConstructor->setType(
8899 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
8900
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008901 // Add the parameter to the constructor.
8902 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
8903 ClassLoc, ClassLoc,
8904 /*IdentifierInfo=*/0,
8905 ArgType, /*TInfo=*/0,
8906 SC_None,
8907 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008908 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008909
8910 // C++0x [class.copy]p9:
8911 // If the definition of a class X does not explicitly declare a move
8912 // constructor, one will be implicitly declared as defaulted if and only if:
8913 // [...]
8914 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00008915 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008916 // Cache this result so that we don't try to generate this over and over
8917 // on every lookup, leaking memory and wasting time.
8918 ClassDecl->setFailedImplicitMoveConstructor();
8919 return 0;
8920 }
8921
8922 // Note that we have declared this constructor.
8923 ++ASTContext::NumImplicitMoveConstructorsDeclared;
8924
8925 if (Scope *S = getScopeForContext(ClassDecl))
8926 PushOnScopeChains(MoveConstructor, S, false);
8927 ClassDecl->addDecl(MoveConstructor);
8928
8929 return MoveConstructor;
8930}
8931
8932void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
8933 CXXConstructorDecl *MoveConstructor) {
8934 assert((MoveConstructor->isDefaulted() &&
8935 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00008936 !MoveConstructor->doesThisDeclarationHaveABody() &&
8937 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008938 "DefineImplicitMoveConstructor - call it for implicit move ctor");
8939
8940 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
8941 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
8942
Eli Friedman9a14db32012-10-18 20:14:08 +00008943 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008944 DiagnosticErrorTrap Trap(Diags);
8945
8946 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
8947 Trap.hasErrorOccurred()) {
8948 Diag(CurrentLocation, diag::note_member_synthesized_at)
8949 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
8950 MoveConstructor->setInvalidDecl();
8951 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008952 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008953 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
8954 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00008955 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008956 /*isStmtExpr=*/false)
8957 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00008958 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008959 }
8960
8961 MoveConstructor->setUsed();
8962
8963 if (ASTMutationListener *L = getASTMutationListener()) {
8964 L->CompletedImplicitDefinition(MoveConstructor);
8965 }
8966}
8967
Douglas Gregore4e68d42012-02-15 19:33:52 +00008968bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
8969 return FD->isDeleted() &&
8970 (FD->isDefaulted() || FD->isImplicit()) &&
8971 isa<CXXMethodDecl>(FD);
8972}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008973
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008974/// \brief Mark the call operator of the given lambda closure type as "used".
8975static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
8976 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00008977 = cast<CXXMethodDecl>(
8978 *Lambda->lookup(
8979 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).first);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008980 CallOperator->setReferenced();
8981 CallOperator->setUsed();
8982}
8983
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008984void Sema::DefineImplicitLambdaToFunctionPointerConversion(
8985 SourceLocation CurrentLocation,
8986 CXXConversionDecl *Conv)
8987{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008988 CXXRecordDecl *Lambda = Conv->getParent();
8989
8990 // Make sure that the lambda call operator is marked used.
8991 markLambdaCallOperatorUsed(*this, Lambda);
8992
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008993 Conv->setUsed();
8994
Eli Friedman9a14db32012-10-18 20:14:08 +00008995 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00008996 DiagnosticErrorTrap Trap(Diags);
8997
Douglas Gregor27dd7d92012-02-17 03:02:34 +00008998 // Return the address of the __invoke function.
8999 DeclarationName InvokeName = &Context.Idents.get("__invoke");
9000 CXXMethodDecl *Invoke
9001 = cast<CXXMethodDecl>(*Lambda->lookup(InvokeName).first);
9002 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9003 VK_LValue, Conv->getLocation()).take();
9004 assert(FunctionRef && "Can't refer to __invoke function?");
9005 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
9006 Conv->setBody(new (Context) CompoundStmt(Context, &Return, 1,
9007 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009008 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009009
9010 // Fill in the __invoke function with a dummy implementation. IR generation
9011 // will fill in the actual details.
9012 Invoke->setUsed();
9013 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009014 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009015
9016 if (ASTMutationListener *L = getASTMutationListener()) {
9017 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009018 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009019 }
9020}
9021
9022void Sema::DefineImplicitLambdaToBlockPointerConversion(
9023 SourceLocation CurrentLocation,
9024 CXXConversionDecl *Conv)
9025{
9026 Conv->setUsed();
9027
Eli Friedman9a14db32012-10-18 20:14:08 +00009028 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009029 DiagnosticErrorTrap Trap(Diags);
9030
Douglas Gregorac1303e2012-02-22 05:02:47 +00009031 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009032 Expr *This = ActOnCXXThis(CurrentLocation).take();
9033 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009034
Eli Friedman23f02672012-03-01 04:01:32 +00009035 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9036 Conv->getLocation(),
9037 Conv, DerefThis);
9038
9039 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9040 // behavior. Note that only the general conversion function does this
9041 // (since it's unusable otherwise); in the case where we inline the
9042 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009043 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00009044 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9045 CK_CopyAndAutoreleaseBlockObject,
9046 BuildBlock.get(), 0, VK_RValue);
9047
9048 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009049 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009050 Conv->setInvalidDecl();
9051 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009052 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009053
Douglas Gregorac1303e2012-02-22 05:02:47 +00009054 // Create the return statement that returns the block from the conversion
9055 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009056 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009057 if (Return.isInvalid()) {
9058 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9059 Conv->setInvalidDecl();
9060 return;
9061 }
9062
9063 // Set the body of the conversion function.
9064 Stmt *ReturnS = Return.take();
9065 Conv->setBody(new (Context) CompoundStmt(Context, &ReturnS, 1,
9066 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009067 Conv->getLocation()));
9068
Douglas Gregorac1303e2012-02-22 05:02:47 +00009069 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009070 if (ASTMutationListener *L = getASTMutationListener()) {
9071 L->CompletedImplicitDefinition(Conv);
9072 }
9073}
9074
Douglas Gregorf52757d2012-03-10 06:53:13 +00009075/// \brief Determine whether the given list arguments contains exactly one
9076/// "real" (non-default) argument.
9077static bool hasOneRealArgument(MultiExprArg Args) {
9078 switch (Args.size()) {
9079 case 0:
9080 return false;
9081
9082 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009083 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009084 return false;
9085
9086 // fall through
9087 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009088 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009089 }
9090
9091 return false;
9092}
9093
John McCall60d7b3a2010-08-24 06:29:42 +00009094ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009095Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009096 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009097 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009098 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009099 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009100 unsigned ConstructKind,
9101 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009102 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009103
Douglas Gregor2f599792010-04-02 18:24:57 +00009104 // C++0x [class.copy]p34:
9105 // When certain criteria are met, an implementation is allowed to
9106 // omit the copy/move construction of a class object, even if the
9107 // copy/move constructor and/or destructor for the object have
9108 // side effects. [...]
9109 // - when a temporary class object that has not been bound to a
9110 // reference (12.2) would be copied/moved to a class object
9111 // with the same cv-unqualified type, the copy/move operation
9112 // can be omitted by constructing the temporary object
9113 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009114 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009115 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009116 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009117 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009118 }
Mike Stump1eb44332009-09-09 15:08:12 +00009119
9120 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009121 Elidable, ExprArgs, HadMultipleCandidates,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009122 RequiresZeroInit, ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009123}
9124
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009125/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9126/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009127ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009128Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9129 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009130 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009131 bool HadMultipleCandidates,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009132 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009133 unsigned ConstructKind,
9134 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009135 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009136 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009137 Constructor, Elidable, ExprArgs,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00009138 HadMultipleCandidates, /*FIXME*/false,
9139 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009140 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9141 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009142}
9143
Mike Stump1eb44332009-09-09 15:08:12 +00009144bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009145 CXXConstructorDecl *Constructor,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009146 MultiExprArg Exprs,
9147 bool HadMultipleCandidates) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00009148 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00009149 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00009150 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009151 Exprs, HadMultipleCandidates, false,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009152 CXXConstructExpr::CK_Complete, SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00009153 if (TempResult.isInvalid())
9154 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009155
Anders Carlssonda3f4e22009-08-25 05:12:04 +00009156 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00009157 CheckImplicitConversions(Temp, VD->getLocation());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009158 MarkFunctionReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00009159 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00009160 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00009161
Anders Carlssonfe2de492009-08-25 05:18:00 +00009162 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00009163}
9164
John McCall68c6c9a2010-02-02 09:10:11 +00009165void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009166 if (VD->isInvalidDecl()) return;
9167
John McCall68c6c9a2010-02-02 09:10:11 +00009168 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009169 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009170 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009171 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009172
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009173 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009174 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009175 CheckDestructorAccess(VD->getLocation(), Destructor,
9176 PDiag(diag::err_access_dtor_var)
9177 << VD->getDeclName()
9178 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009179 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009180
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009181 if (!VD->hasGlobalStorage()) return;
9182
9183 // Emit warning for non-trivial dtor in global scope (a real global,
9184 // class-static, function-static).
9185 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9186
9187 // TODO: this should be re-enabled for static locals by !CXAAtExit
9188 if (!VD->isStaticLocal())
9189 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009190}
9191
Douglas Gregor39da0b82009-09-09 23:08:42 +00009192/// \brief Given a constructor and the set of arguments provided for the
9193/// constructor, convert the arguments and add any required default arguments
9194/// to form a proper call to this constructor.
9195///
9196/// \returns true if an error occurred, false otherwise.
9197bool
9198Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9199 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009200 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009201 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009202 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009203 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9204 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009205 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009206
9207 const FunctionProtoType *Proto
9208 = Constructor->getType()->getAs<FunctionProtoType>();
9209 assert(Proto && "Constructor without a prototype?");
9210 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009211
9212 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009213 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009214 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009215 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009216 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009217
9218 VariadicCallType CallType =
9219 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009220 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009221 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9222 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009223 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009224 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009225
9226 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9227
Richard Smith831421f2012-06-25 20:30:08 +00009228 CheckConstructorCall(Constructor, AllArgs.data(), AllArgs.size(),
9229 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009230
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009231 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009232}
9233
Anders Carlsson20d45d22009-12-12 00:32:00 +00009234static inline bool
9235CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9236 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009237 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009238 if (isa<NamespaceDecl>(DC)) {
9239 return SemaRef.Diag(FnDecl->getLocation(),
9240 diag::err_operator_new_delete_declared_in_namespace)
9241 << FnDecl->getDeclName();
9242 }
9243
9244 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009245 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009246 return SemaRef.Diag(FnDecl->getLocation(),
9247 diag::err_operator_new_delete_declared_static)
9248 << FnDecl->getDeclName();
9249 }
9250
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009251 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009252}
9253
Anders Carlsson156c78e2009-12-13 17:53:43 +00009254static inline bool
9255CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9256 CanQualType ExpectedResultType,
9257 CanQualType ExpectedFirstParamType,
9258 unsigned DependentParamTypeDiag,
9259 unsigned InvalidParamTypeDiag) {
9260 QualType ResultType =
9261 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9262
9263 // Check that the result type is not dependent.
9264 if (ResultType->isDependentType())
9265 return SemaRef.Diag(FnDecl->getLocation(),
9266 diag::err_operator_new_delete_dependent_result_type)
9267 << FnDecl->getDeclName() << ExpectedResultType;
9268
9269 // Check that the result type is what we expect.
9270 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9271 return SemaRef.Diag(FnDecl->getLocation(),
9272 diag::err_operator_new_delete_invalid_result_type)
9273 << FnDecl->getDeclName() << ExpectedResultType;
9274
9275 // A function template must have at least 2 parameters.
9276 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9277 return SemaRef.Diag(FnDecl->getLocation(),
9278 diag::err_operator_new_delete_template_too_few_parameters)
9279 << FnDecl->getDeclName();
9280
9281 // The function decl must have at least 1 parameter.
9282 if (FnDecl->getNumParams() == 0)
9283 return SemaRef.Diag(FnDecl->getLocation(),
9284 diag::err_operator_new_delete_too_few_parameters)
9285 << FnDecl->getDeclName();
9286
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009287 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009288 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9289 if (FirstParamType->isDependentType())
9290 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9291 << FnDecl->getDeclName() << ExpectedFirstParamType;
9292
9293 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009294 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009295 ExpectedFirstParamType)
9296 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9297 << FnDecl->getDeclName() << ExpectedFirstParamType;
9298
9299 return false;
9300}
9301
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009302static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009303CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009304 // C++ [basic.stc.dynamic.allocation]p1:
9305 // A program is ill-formed if an allocation function is declared in a
9306 // namespace scope other than global scope or declared static in global
9307 // scope.
9308 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9309 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009310
9311 CanQualType SizeTy =
9312 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9313
9314 // C++ [basic.stc.dynamic.allocation]p1:
9315 // The return type shall be void*. The first parameter shall have type
9316 // std::size_t.
9317 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9318 SizeTy,
9319 diag::err_operator_new_dependent_param_type,
9320 diag::err_operator_new_param_type))
9321 return true;
9322
9323 // C++ [basic.stc.dynamic.allocation]p1:
9324 // The first parameter shall not have an associated default argument.
9325 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009326 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009327 diag::err_operator_new_default_arg)
9328 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9329
9330 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009331}
9332
9333static bool
Richard Smith444d3842012-10-20 08:26:51 +00009334CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009335 // C++ [basic.stc.dynamic.deallocation]p1:
9336 // A program is ill-formed if deallocation functions are declared in a
9337 // namespace scope other than global scope or declared static in global
9338 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009339 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9340 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009341
9342 // C++ [basic.stc.dynamic.deallocation]p2:
9343 // Each deallocation function shall return void and its first parameter
9344 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009345 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9346 SemaRef.Context.VoidPtrTy,
9347 diag::err_operator_delete_dependent_param_type,
9348 diag::err_operator_delete_param_type))
9349 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009350
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009351 return false;
9352}
9353
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009354/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9355/// of this overloaded operator is well-formed. If so, returns false;
9356/// otherwise, emits appropriate diagnostics and returns true.
9357bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009358 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009359 "Expected an overloaded operator declaration");
9360
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009361 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9362
Mike Stump1eb44332009-09-09 15:08:12 +00009363 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009364 // The allocation and deallocation functions, operator new,
9365 // operator new[], operator delete and operator delete[], are
9366 // described completely in 3.7.3. The attributes and restrictions
9367 // found in the rest of this subclause do not apply to them unless
9368 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009369 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009370 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009371
Anders Carlssona3ccda52009-12-12 00:26:23 +00009372 if (Op == OO_New || Op == OO_Array_New)
9373 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009374
9375 // C++ [over.oper]p6:
9376 // An operator function shall either be a non-static member
9377 // function or be a non-member function and have at least one
9378 // parameter whose type is a class, a reference to a class, an
9379 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009380 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9381 if (MethodDecl->isStatic())
9382 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009383 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009384 } else {
9385 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009386 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9387 ParamEnd = FnDecl->param_end();
9388 Param != ParamEnd; ++Param) {
9389 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009390 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9391 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009392 ClassOrEnumParam = true;
9393 break;
9394 }
9395 }
9396
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009397 if (!ClassOrEnumParam)
9398 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009399 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009400 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009401 }
9402
9403 // C++ [over.oper]p8:
9404 // An operator function cannot have default arguments (8.3.6),
9405 // except where explicitly stated below.
9406 //
Mike Stump1eb44332009-09-09 15:08:12 +00009407 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009408 // (C++ [over.call]p1).
9409 if (Op != OO_Call) {
9410 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9411 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009412 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009413 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009414 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009415 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009416 }
9417 }
9418
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009419 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9420 { false, false, false }
9421#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9422 , { Unary, Binary, MemberOnly }
9423#include "clang/Basic/OperatorKinds.def"
9424 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009425
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009426 bool CanBeUnaryOperator = OperatorUses[Op][0];
9427 bool CanBeBinaryOperator = OperatorUses[Op][1];
9428 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009429
9430 // C++ [over.oper]p8:
9431 // [...] Operator functions cannot have more or fewer parameters
9432 // than the number required for the corresponding operator, as
9433 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009434 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009435 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009436 if (Op != OO_Call &&
9437 ((NumParams == 1 && !CanBeUnaryOperator) ||
9438 (NumParams == 2 && !CanBeBinaryOperator) ||
9439 (NumParams < 1) || (NumParams > 2))) {
9440 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009441 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009442 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009443 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009444 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009445 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009446 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009447 assert(CanBeBinaryOperator &&
9448 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009449 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009450 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009451
Chris Lattner416e46f2008-11-21 07:57:12 +00009452 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009453 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009454 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009455
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009456 // Overloaded operators other than operator() cannot be variadic.
9457 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009458 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009459 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009460 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009461 }
9462
9463 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009464 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9465 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009466 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009467 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009468 }
9469
9470 // C++ [over.inc]p1:
9471 // The user-defined function called operator++ implements the
9472 // prefix and postfix ++ operator. If this function is a member
9473 // function with no parameters, or a non-member function with one
9474 // parameter of class or enumeration type, it defines the prefix
9475 // increment operator ++ for objects of that type. If the function
9476 // is a member function with one parameter (which shall be of type
9477 // int) or a non-member function with two parameters (the second
9478 // of which shall be of type int), it defines the postfix
9479 // increment operator ++ for objects of that type.
9480 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9481 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9482 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009483 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009484 ParamIsInt = BT->getKind() == BuiltinType::Int;
9485
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009486 if (!ParamIsInt)
9487 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009488 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009489 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009490 }
9491
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009492 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009493}
Chris Lattner5a003a42008-12-17 07:09:26 +00009494
Sean Hunta6c058d2010-01-13 09:01:02 +00009495/// CheckLiteralOperatorDeclaration - Check whether the declaration
9496/// of this literal operator function is well-formed. If so, returns
9497/// false; otherwise, emits appropriate diagnostics and returns true.
9498bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009499 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009500 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9501 << FnDecl->getDeclName();
9502 return true;
9503 }
9504
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009505 if (FnDecl->isExternC()) {
9506 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9507 return true;
9508 }
9509
Sean Hunta6c058d2010-01-13 09:01:02 +00009510 bool Valid = false;
9511
Richard Smith36f5cfe2012-03-09 08:00:36 +00009512 // This might be the definition of a literal operator template.
9513 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9514 // This might be a specialization of a literal operator template.
9515 if (!TpDecl)
9516 TpDecl = FnDecl->getPrimaryTemplate();
9517
Sean Hunt216c2782010-04-07 23:11:06 +00009518 // template <char...> type operator "" name() is the only valid template
9519 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009520 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009521 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009522 // Must have only one template parameter
9523 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9524 if (Params->size() == 1) {
9525 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009526 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009527
Sean Hunt216c2782010-04-07 23:11:06 +00009528 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009529 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9530 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9531 Valid = true;
9532 }
9533 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009534 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009535 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009536 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9537
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009538 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009539
Sean Hunt30019c02010-04-07 22:57:35 +00009540 // unsigned long long int, long double, and any character type are allowed
9541 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009542 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9543 Context.hasSameType(T, Context.LongDoubleTy) ||
9544 Context.hasSameType(T, Context.CharTy) ||
9545 Context.hasSameType(T, Context.WCharTy) ||
9546 Context.hasSameType(T, Context.Char16Ty) ||
9547 Context.hasSameType(T, Context.Char32Ty)) {
9548 if (++Param == FnDecl->param_end())
9549 Valid = true;
9550 goto FinishedParams;
9551 }
9552
Sean Hunt30019c02010-04-07 22:57:35 +00009553 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009554 const PointerType *PT = T->getAs<PointerType>();
9555 if (!PT)
9556 goto FinishedParams;
9557 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009558 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009559 goto FinishedParams;
9560 T = T.getUnqualifiedType();
9561
9562 // Move on to the second parameter;
9563 ++Param;
9564
9565 // If there is no second parameter, the first must be a const char *
9566 if (Param == FnDecl->param_end()) {
9567 if (Context.hasSameType(T, Context.CharTy))
9568 Valid = true;
9569 goto FinishedParams;
9570 }
9571
9572 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9573 // are allowed as the first parameter to a two-parameter function
9574 if (!(Context.hasSameType(T, Context.CharTy) ||
9575 Context.hasSameType(T, Context.WCharTy) ||
9576 Context.hasSameType(T, Context.Char16Ty) ||
9577 Context.hasSameType(T, Context.Char32Ty)))
9578 goto FinishedParams;
9579
9580 // The second and final parameter must be an std::size_t
9581 T = (*Param)->getType().getUnqualifiedType();
9582 if (Context.hasSameType(T, Context.getSizeType()) &&
9583 ++Param == FnDecl->param_end())
9584 Valid = true;
9585 }
9586
9587 // FIXME: This diagnostic is absolutely terrible.
9588FinishedParams:
9589 if (!Valid) {
9590 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9591 << FnDecl->getDeclName();
9592 return true;
9593 }
9594
Richard Smitha9e88b22012-03-09 08:16:22 +00009595 // A parameter-declaration-clause containing a default argument is not
9596 // equivalent to any of the permitted forms.
9597 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9598 ParamEnd = FnDecl->param_end();
9599 Param != ParamEnd; ++Param) {
9600 if ((*Param)->hasDefaultArg()) {
9601 Diag((*Param)->getDefaultArgRange().getBegin(),
9602 diag::err_literal_operator_default_argument)
9603 << (*Param)->getDefaultArgRange();
9604 break;
9605 }
9606 }
9607
Richard Smith2fb4ae32012-03-08 02:39:21 +00009608 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009609 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9610 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009611 // C++11 [usrlit.suffix]p1:
9612 // Literal suffix identifiers that do not start with an underscore
9613 // are reserved for future standardization.
9614 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009615 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009616
Sean Hunta6c058d2010-01-13 09:01:02 +00009617 return false;
9618}
9619
Douglas Gregor074149e2009-01-05 19:45:36 +00009620/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
9621/// linkage specification, including the language and (if present)
9622/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
9623/// the location of the language string literal, which is provided
9624/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
9625/// the '{' brace. Otherwise, this linkage specification does not
9626/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00009627Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
9628 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +00009629 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +00009630 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00009631 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009632 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009633 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00009634 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00009635 Language = LinkageSpecDecl::lang_cxx;
9636 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00009637 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00009638 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009639 }
Mike Stump1eb44332009-09-09 15:08:12 +00009640
Chris Lattnercc98eac2008-12-17 07:13:27 +00009641 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00009642
Douglas Gregor074149e2009-01-05 19:45:36 +00009643 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009644 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009645 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00009646 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00009647 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00009648}
9649
Abramo Bagnara35f9a192010-07-30 16:47:02 +00009650/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00009651/// the C++ linkage specification LinkageSpec. If RBraceLoc is
9652/// valid, it's the position of the closing '}' brace in a linkage
9653/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00009654Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009655 Decl *LinkageSpec,
9656 SourceLocation RBraceLoc) {
9657 if (LinkageSpec) {
9658 if (RBraceLoc.isValid()) {
9659 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
9660 LSDecl->setRBraceLoc(RBraceLoc);
9661 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009662 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00009663 }
Douglas Gregor074149e2009-01-05 19:45:36 +00009664 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00009665}
9666
Douglas Gregord308e622009-05-18 20:51:54 +00009667/// \brief Perform semantic analysis for the variable declaration that
9668/// occurs within a C++ catch clause, returning the newly-created
9669/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009670VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00009671 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009672 SourceLocation StartLoc,
9673 SourceLocation Loc,
9674 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00009675 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00009676 QualType ExDeclType = TInfo->getType();
9677
Sebastian Redl4b07b292008-12-22 19:15:10 +00009678 // Arrays and functions decay.
9679 if (ExDeclType->isArrayType())
9680 ExDeclType = Context.getArrayDecayedType(ExDeclType);
9681 else if (ExDeclType->isFunctionType())
9682 ExDeclType = Context.getPointerType(ExDeclType);
9683
9684 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
9685 // The exception-declaration shall not denote a pointer or reference to an
9686 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009687 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00009688 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00009689 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009690 Invalid = true;
9691 }
Douglas Gregord308e622009-05-18 20:51:54 +00009692
Sebastian Redl4b07b292008-12-22 19:15:10 +00009693 QualType BaseType = ExDeclType;
9694 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00009695 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00009696 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009697 BaseType = Ptr->getPointeeType();
9698 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009699 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009700 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009701 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009702 BaseType = Ref->getPointeeType();
9703 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +00009704 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009705 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00009706 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +00009707 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00009708 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009709
Mike Stump1eb44332009-09-09 15:08:12 +00009710 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00009711 RequireNonAbstractType(Loc, ExDeclType,
9712 diag::err_abstract_type_in_decl,
9713 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00009714 Invalid = true;
9715
John McCall5a180392010-07-24 00:37:23 +00009716 // Only the non-fragile NeXT runtime currently supports C++ catches
9717 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +00009718 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +00009719 QualType T = ExDeclType;
9720 if (const ReferenceType *RT = T->getAs<ReferenceType>())
9721 T = RT->getPointeeType();
9722
9723 if (T->isObjCObjectType()) {
9724 Diag(Loc, diag::err_objc_object_catch);
9725 Invalid = true;
9726 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +00009727 // FIXME: should this be a test for macosx-fragile specifically?
9728 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +00009729 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +00009730 }
9731 }
9732
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009733 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
9734 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00009735 ExDecl->setExceptionVariable(true);
9736
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009737 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00009738 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00009739 Invalid = true;
9740
Douglas Gregorc41b8782011-07-06 18:14:43 +00009741 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +00009742 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00009743 // C++ [except.handle]p16:
9744 // The object declared in an exception-declaration or, if the
9745 // exception-declaration does not specify a name, a temporary (12.2) is
9746 // copy-initialized (8.5) from the exception object. [...]
9747 // The object is destroyed when the handler exits, after the destruction
9748 // of any automatic objects initialized within the handler.
9749 //
9750 // We just pretend to initialize the object with itself, then make sure
9751 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00009752 QualType initType = ExDeclType;
9753
9754 InitializedEntity entity =
9755 InitializedEntity::InitializeVariable(ExDecl);
9756 InitializationKind initKind =
9757 InitializationKind::CreateCopy(Loc, SourceLocation());
9758
9759 Expr *opaqueValue =
9760 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
9761 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
9762 ExprResult result = sequence.Perform(*this, entity, initKind,
9763 MultiExprArg(&opaqueValue, 1));
9764 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00009765 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00009766 else {
9767 // If the constructor used was non-trivial, set this as the
9768 // "initializer".
9769 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
9770 if (!construct->getConstructor()->isTrivial()) {
9771 Expr *init = MaybeCreateExprWithCleanups(construct);
9772 ExDecl->setInit(init);
9773 }
9774
9775 // And make sure it's destructable.
9776 FinalizeVarWithDestructor(ExDecl, recordType);
9777 }
Douglas Gregor6d182892010-03-05 23:38:39 +00009778 }
9779 }
9780
Douglas Gregord308e622009-05-18 20:51:54 +00009781 if (Invalid)
9782 ExDecl->setInvalidDecl();
9783
9784 return ExDecl;
9785}
9786
9787/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
9788/// handler.
John McCalld226f652010-08-21 09:40:31 +00009789Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00009790 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00009791 bool Invalid = D.isInvalidType();
9792
9793 // Check for unexpanded parameter packs.
9794 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
9795 UPPC_ExceptionType)) {
9796 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
9797 D.getIdentifierLoc());
9798 Invalid = true;
9799 }
9800
Sebastian Redl4b07b292008-12-22 19:15:10 +00009801 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00009802 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00009803 LookupOrdinaryName,
9804 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009805 // The scope should be freshly made just for us. There is just no way
9806 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00009807 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00009808 if (PrevDecl->isTemplateParameter()) {
9809 // Maybe we will complain about the shadowed template parameter.
9810 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +00009811 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009812 }
9813 }
9814
Chris Lattnereaaebc72009-04-25 08:06:05 +00009815 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00009816 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
9817 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00009818 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009819 }
9820
Douglas Gregor83cb9422010-09-09 17:09:21 +00009821 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +00009822 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009823 D.getIdentifierLoc(),
9824 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00009825 if (Invalid)
9826 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00009827
Sebastian Redl4b07b292008-12-22 19:15:10 +00009828 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00009829 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00009830 PushOnScopeChains(ExDecl, S);
9831 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009832 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00009833
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009834 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00009835 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00009836}
Anders Carlssonfb311762009-03-14 00:25:26 +00009837
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009838Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00009839 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +00009840 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009841 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +00009842 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +00009843
Richard Smithe3f470a2012-07-11 22:37:56 +00009844 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
9845 return 0;
9846
9847 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
9848 AssertMessage, RParenLoc, false);
9849}
9850
9851Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
9852 Expr *AssertExpr,
9853 StringLiteral *AssertMessage,
9854 SourceLocation RParenLoc,
9855 bool Failed) {
9856 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
9857 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +00009858 // In a static_assert-declaration, the constant-expression shall be a
9859 // constant expression that can be contextually converted to bool.
9860 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
9861 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009862 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +00009863
Richard Smithdaaefc52011-12-14 23:32:26 +00009864 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +00009865 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +00009866 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +00009867 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +00009868 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +00009869
Richard Smithe3f470a2012-07-11 22:37:56 +00009870 if (!Failed && !Cond) {
Richard Smith0cc323c2012-03-05 23:20:05 +00009871 llvm::SmallString<256> MsgBuffer;
9872 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +00009873 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009874 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +00009875 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +00009876 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +00009877 }
Anders Carlssonc3082412009-03-14 00:33:21 +00009878 }
Mike Stump1eb44332009-09-09 15:08:12 +00009879
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00009880 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +00009881 AssertExpr, AssertMessage, RParenLoc,
9882 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +00009883
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00009884 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00009885 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00009886}
Sebastian Redl50de12f2009-03-24 22:27:57 +00009887
Douglas Gregor1d869352010-04-07 16:53:43 +00009888/// \brief Perform semantic analysis of the given friend type declaration.
9889///
9890/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +00009891FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +00009892 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +00009893 TypeSourceInfo *TSInfo) {
9894 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
9895
9896 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00009897 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00009898
Richard Smith6b130222011-10-18 21:39:00 +00009899 // C++03 [class.friend]p2:
9900 // An elaborated-type-specifier shall be used in a friend declaration
9901 // for a class.*
9902 //
9903 // * The class-key of the elaborated-type-specifier is required.
9904 if (!ActiveTemplateInstantiations.empty()) {
9905 // Do not complain about the form of friend template types during
9906 // template instantiation; we will already have complained when the
9907 // template was declared.
9908 } else if (!T->isElaboratedTypeSpecifier()) {
9909 // If we evaluated the type to a record type, suggest putting
9910 // a tag in front.
9911 if (const RecordType *RT = T->getAs<RecordType>()) {
9912 RecordDecl *RD = RT->getDecl();
9913
9914 std::string InsertionText = std::string(" ") + RD->getKindName();
9915
9916 Diag(TypeRange.getBegin(),
David Blaikie4e4d0842012-03-11 07:00:24 +00009917 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009918 diag::warn_cxx98_compat_unelaborated_friend_type :
9919 diag::ext_unelaborated_friend_type)
9920 << (unsigned) RD->getTagKind()
9921 << T
9922 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
9923 InsertionText);
9924 } else {
9925 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009926 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009927 diag::warn_cxx98_compat_nonclass_type_friend :
9928 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00009929 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009930 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009931 }
Richard Smith6b130222011-10-18 21:39:00 +00009932 } else if (T->getAs<EnumType>()) {
9933 Diag(FriendLoc,
David Blaikie4e4d0842012-03-11 07:00:24 +00009934 getLangOpts().CPlusPlus0x ?
Richard Smith6b130222011-10-18 21:39:00 +00009935 diag::warn_cxx98_compat_enum_friend :
9936 diag::ext_enum_friend)
9937 << T
Richard Smithd6f80da2012-09-20 01:31:00 +00009938 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +00009939 }
9940
Richard Smithd6f80da2012-09-20 01:31:00 +00009941 // C++11 [class.friend]p3:
9942 // A friend declaration that does not declare a function shall have one
9943 // of the following forms:
9944 // friend elaborated-type-specifier ;
9945 // friend simple-type-specifier ;
9946 // friend typename-specifier ;
9947 if (getLangOpts().CPlusPlus0x && LocStart != FriendLoc)
9948 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
9949
Douglas Gregor06245bf2010-04-07 17:57:12 +00009950 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +00009951 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +00009952 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +00009953 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +00009954}
9955
John McCall9a34edb2010-10-19 01:40:49 +00009956/// Handle a friend tag declaration where the scope specifier was
9957/// templated.
9958Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
9959 unsigned TagSpec, SourceLocation TagLoc,
9960 CXXScopeSpec &SS,
9961 IdentifierInfo *Name, SourceLocation NameLoc,
9962 AttributeList *Attr,
9963 MultiTemplateParamsArg TempParamLists) {
9964 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
9965
9966 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00009967 bool Invalid = false;
9968
9969 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +00009970 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009971 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +00009972 TempParamLists.size(),
9973 /*friend*/ true,
9974 isExplicitSpecialization,
9975 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00009976 if (TemplateParams->size() > 0) {
9977 // This is a declaration of a class template.
9978 if (Invalid)
9979 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00009980
Eric Christopher4110e132011-07-21 05:34:24 +00009981 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
9982 SS, Name, NameLoc, Attr,
9983 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +00009984 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +00009985 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00009986 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +00009987 } else {
9988 // The "template<>" header is extraneous.
9989 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
9990 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
9991 isExplicitSpecialization = true;
9992 }
9993 }
9994
9995 if (Invalid) return 0;
9996
John McCall9a34edb2010-10-19 01:40:49 +00009997 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00009998 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009999 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000010000 isAllExplicitSpecializations = false;
10001 break;
10002 }
10003 }
10004
10005 // FIXME: don't ignore attributes.
10006
10007 // If it's explicit specializations all the way down, just forget
10008 // about the template header and build an appropriate non-templated
10009 // friend. TODO: for source fidelity, remember the headers.
10010 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010011 if (SS.isEmpty()) {
10012 bool Owned = false;
10013 bool IsDependent = false;
10014 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10015 Attr, AS_public,
10016 /*ModulePrivateLoc=*/SourceLocation(),
10017 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010018 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010019 /*ScopedEnumUsesClassTag=*/false,
10020 /*UnderlyingType=*/TypeResult());
10021 }
10022
Douglas Gregor2494dd02011-03-01 01:34:45 +000010023 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000010024 ElaboratedTypeKeyword Keyword
10025 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010026 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000010027 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010028 if (T.isNull())
10029 return 0;
10030
10031 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10032 if (isa<DependentNameType>(T)) {
10033 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010034 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010035 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010036 TL.setNameLoc(NameLoc);
10037 } else {
10038 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010039 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000010040 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010041 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
10042 }
10043
10044 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10045 TSI, FriendLoc);
10046 Friend->setAccess(AS_public);
10047 CurContext->addDecl(Friend);
10048 return Friend;
10049 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010050
10051 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10052
10053
John McCall9a34edb2010-10-19 01:40:49 +000010054
10055 // Handle the case of a templated-scope friend class. e.g.
10056 // template <class T> class A<T>::B;
10057 // FIXME: we don't support these right now.
10058 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10059 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10060 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10061 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010062 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010063 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010064 TL.setNameLoc(NameLoc);
10065
10066 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10067 TSI, FriendLoc);
10068 Friend->setAccess(AS_public);
10069 Friend->setUnsupportedFriend(true);
10070 CurContext->addDecl(Friend);
10071 return Friend;
10072}
10073
10074
John McCalldd4a3b02009-09-16 22:47:08 +000010075/// Handle a friend type declaration. This works in tandem with
10076/// ActOnTag.
10077///
10078/// Notes on friend class templates:
10079///
10080/// We generally treat friend class declarations as if they were
10081/// declaring a class. So, for example, the elaborated type specifier
10082/// in a friend declaration is required to obey the restrictions of a
10083/// class-head (i.e. no typedefs in the scope chain), template
10084/// parameters are required to match up with simple template-ids, &c.
10085/// However, unlike when declaring a template specialization, it's
10086/// okay to refer to a template specialization without an empty
10087/// template parameter declaration, e.g.
10088/// friend class A<T>::B<unsigned>;
10089/// We permit this as a special case; if there are any template
10090/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010091/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010092Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010093 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010094 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010095
10096 assert(DS.isFriendSpecified());
10097 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10098
John McCalldd4a3b02009-09-16 22:47:08 +000010099 // Try to convert the decl specifier to a type. This works for
10100 // friend templates because ActOnTag never produces a ClassTemplateDecl
10101 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010102 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010103 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10104 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010105 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010106 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010107
Douglas Gregor6ccab972010-12-16 01:14:37 +000010108 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10109 return 0;
10110
John McCalldd4a3b02009-09-16 22:47:08 +000010111 // This is definitely an error in C++98. It's probably meant to
10112 // be forbidden in C++0x, too, but the specification is just
10113 // poorly written.
10114 //
10115 // The problem is with declarations like the following:
10116 // template <T> friend A<T>::foo;
10117 // where deciding whether a class C is a friend or not now hinges
10118 // on whether there exists an instantiation of A that causes
10119 // 'foo' to equal C. There are restrictions on class-heads
10120 // (which we declare (by fiat) elaborated friend declarations to
10121 // be) that makes this tractable.
10122 //
10123 // FIXME: handle "template <> friend class A<T>;", which
10124 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010125 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010126 Diag(Loc, diag::err_tagless_friend_type_template)
10127 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010128 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010129 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010130
John McCall02cace72009-08-28 07:59:38 +000010131 // C++98 [class.friend]p1: A friend of a class is a function
10132 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010133 // This is fixed in DR77, which just barely didn't make the C++03
10134 // deadline. It's also a very silly restriction that seriously
10135 // affects inner classes and which nobody else seems to implement;
10136 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010137 //
10138 // But note that we could warn about it: it's always useless to
10139 // friend one of your own members (it's not, however, worthless to
10140 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010141
John McCalldd4a3b02009-09-16 22:47:08 +000010142 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010143 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010144 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010145 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010146 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010147 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010148 DS.getFriendSpecLoc());
10149 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010150 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010151
10152 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010153 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010154
John McCalldd4a3b02009-09-16 22:47:08 +000010155 D->setAccess(AS_public);
10156 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010157
John McCalld226f652010-08-21 09:40:31 +000010158 return D;
John McCall02cace72009-08-28 07:59:38 +000010159}
10160
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010161Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
John McCall337ec3d2010-10-12 23:13:28 +000010162 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010163 const DeclSpec &DS = D.getDeclSpec();
10164
10165 assert(DS.isFriendSpecified());
10166 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10167
10168 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010169 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010170
10171 // C++ [class.friend]p1
10172 // A friend of a class is a function or class....
10173 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010174 // It *doesn't* see through dependent types, which is correct
10175 // according to [temp.arg.type]p3:
10176 // If a declaration acquires a function type through a
10177 // type dependent on a template-parameter and this causes
10178 // a declaration that does not use the syntactic form of a
10179 // function declarator to have a function type, the program
10180 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010181 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010182 Diag(Loc, diag::err_unexpected_friend);
10183
10184 // It might be worthwhile to try to recover by creating an
10185 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010186 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010187 }
10188
10189 // C++ [namespace.memdef]p3
10190 // - If a friend declaration in a non-local class first declares a
10191 // class or function, the friend class or function is a member
10192 // of the innermost enclosing namespace.
10193 // - The name of the friend is not found by simple name lookup
10194 // until a matching declaration is provided in that namespace
10195 // scope (either before or after the class declaration granting
10196 // friendship).
10197 // - If a friend function is called, its name may be found by the
10198 // name lookup that considers functions from namespaces and
10199 // classes associated with the types of the function arguments.
10200 // - When looking for a prior declaration of a class or a function
10201 // declared as a friend, scopes outside the innermost enclosing
10202 // namespace scope are not considered.
10203
John McCall337ec3d2010-10-12 23:13:28 +000010204 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010205 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10206 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010207 assert(Name);
10208
Douglas Gregor6ccab972010-12-16 01:14:37 +000010209 // Check for unexpanded parameter packs.
10210 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10211 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10212 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10213 return 0;
10214
John McCall67d1a672009-08-06 02:15:43 +000010215 // The context we found the declaration in, or in which we should
10216 // create the declaration.
10217 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010218 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010219 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010220 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010221
John McCall337ec3d2010-10-12 23:13:28 +000010222 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010223
John McCall337ec3d2010-10-12 23:13:28 +000010224 // There are four cases here.
10225 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010226 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010227 // there as appropriate.
10228 // Recover from invalid scope qualifiers as if they just weren't there.
10229 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010230 // C++0x [namespace.memdef]p3:
10231 // If the name in a friend declaration is neither qualified nor
10232 // a template-id and the declaration is a function or an
10233 // elaborated-type-specifier, the lookup to determine whether
10234 // the entity has been previously declared shall not consider
10235 // any scopes outside the innermost enclosing namespace.
10236 // C++0x [class.friend]p11:
10237 // If a friend declaration appears in a local class and the name
10238 // specified is an unqualified name, a prior declaration is
10239 // looked up without considering scopes that are outside the
10240 // innermost enclosing non-class scope. For a friend function
10241 // declaration, if there is no prior declaration, the program is
10242 // ill-formed.
10243 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010244 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010245
John McCall29ae6e52010-10-13 05:45:15 +000010246 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010247 DC = CurContext;
10248 while (true) {
10249 // Skip class contexts. If someone can cite chapter and verse
10250 // for this behavior, that would be nice --- it's what GCC and
10251 // EDG do, and it seems like a reasonable intent, but the spec
10252 // really only says that checks for unqualified existing
10253 // declarations should stop at the nearest enclosing namespace,
10254 // not that they should only consider the nearest enclosing
10255 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010256 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010257 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010258
John McCall68263142009-11-18 22:49:29 +000010259 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010260
10261 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010262 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010263 break;
John McCall29ae6e52010-10-13 05:45:15 +000010264
John McCall8a407372010-10-14 22:22:28 +000010265 if (isTemplateId) {
10266 if (isa<TranslationUnitDecl>(DC)) break;
10267 } else {
10268 if (DC->isFileContext()) break;
10269 }
John McCall67d1a672009-08-06 02:15:43 +000010270 DC = DC->getParent();
10271 }
10272
10273 // C++ [class.friend]p1: A friend of a class is a function or
10274 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010275 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010276 // Most C++ 98 compilers do seem to give an error here, so
10277 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010278 if (!Previous.empty() && DC->Equals(CurContext))
10279 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010280 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010281 diag::warn_cxx98_compat_friend_is_member :
10282 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010283
John McCall380aaa42010-10-13 06:22:15 +000010284 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010285
Douglas Gregor883af832011-10-10 01:11:59 +000010286 // C++ [class.friend]p6:
10287 // A function can be defined in a friend declaration of a class if and
10288 // only if the class is a non-local class (9.8), the function name is
10289 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010290 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010291 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10292 }
10293
John McCall337ec3d2010-10-12 23:13:28 +000010294 // - There's a non-dependent scope specifier, in which case we
10295 // compute it and do a previous lookup there for a function
10296 // or function template.
10297 } else if (!SS.getScopeRep()->isDependent()) {
10298 DC = computeDeclContext(SS);
10299 if (!DC) return 0;
10300
10301 if (RequireCompleteDeclContext(SS, DC)) return 0;
10302
10303 LookupQualifiedName(Previous, DC);
10304
10305 // Ignore things found implicitly in the wrong scope.
10306 // TODO: better diagnostics for this case. Suggesting the right
10307 // qualified scope would be nice...
10308 LookupResult::Filter F = Previous.makeFilter();
10309 while (F.hasNext()) {
10310 NamedDecl *D = F.next();
10311 if (!DC->InEnclosingNamespaceSetOf(
10312 D->getDeclContext()->getRedeclContext()))
10313 F.erase();
10314 }
10315 F.done();
10316
10317 if (Previous.empty()) {
10318 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010319 Diag(Loc, diag::err_qualified_friend_not_found)
10320 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010321 return 0;
10322 }
10323
10324 // C++ [class.friend]p1: A friend of a class is a function or
10325 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010326 if (DC->Equals(CurContext))
10327 Diag(DS.getFriendSpecLoc(),
David Blaikie4e4d0842012-03-11 07:00:24 +000010328 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010329 diag::warn_cxx98_compat_friend_is_member :
10330 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010331
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010332 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010333 // C++ [class.friend]p6:
10334 // A function can be defined in a friend declaration of a class if and
10335 // only if the class is a non-local class (9.8), the function name is
10336 // unqualified, and the function has namespace scope.
10337 SemaDiagnosticBuilder DB
10338 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10339
10340 DB << SS.getScopeRep();
10341 if (DC->isFileContext())
10342 DB << FixItHint::CreateRemoval(SS.getRange());
10343 SS.clear();
10344 }
John McCall337ec3d2010-10-12 23:13:28 +000010345
10346 // - There's a scope specifier that does not match any template
10347 // parameter lists, in which case we use some arbitrary context,
10348 // create a method or method template, and wait for instantiation.
10349 // - There's a scope specifier that does match some template
10350 // parameter lists, which we don't handle right now.
10351 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010352 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010353 // C++ [class.friend]p6:
10354 // A function can be defined in a friend declaration of a class if and
10355 // only if the class is a non-local class (9.8), the function name is
10356 // unqualified, and the function has namespace scope.
10357 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10358 << SS.getScopeRep();
10359 }
10360
John McCall337ec3d2010-10-12 23:13:28 +000010361 DC = CurContext;
10362 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010363 }
Douglas Gregor883af832011-10-10 01:11:59 +000010364
John McCall29ae6e52010-10-13 05:45:15 +000010365 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010366 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010367 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10368 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10369 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010370 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010371 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10372 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010373 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010374 }
John McCall67d1a672009-08-06 02:15:43 +000010375 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010376
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010377 // FIXME: This is an egregious hack to cope with cases where the scope stack
10378 // does not contain the declaration context, i.e., in an out-of-line
10379 // definition of a class.
10380 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10381 if (!DCScope) {
10382 FakeDCScope.setEntity(DC);
10383 DCScope = &FakeDCScope;
10384 }
10385
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010386 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010387 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010388 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010389 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010390
Douglas Gregor182ddf02009-09-28 00:08:27 +000010391 assert(ND->getDeclContext() == DC);
10392 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010393
John McCallab88d972009-08-31 22:39:49 +000010394 // Add the function declaration to the appropriate lookup tables,
10395 // adjusting the redeclarations list as necessary. We don't
10396 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010397 //
John McCallab88d972009-08-31 22:39:49 +000010398 // Also update the scope-based lookup if the target context's
10399 // lookup context is in lexical scope.
10400 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010401 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010402 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010403 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010404 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010405 }
John McCall02cace72009-08-28 07:59:38 +000010406
10407 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010408 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010409 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010410 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010411 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010412
John McCall1f2e1a92012-08-10 03:15:35 +000010413 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010414 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010415 } else {
10416 if (DC->isRecord()) CheckFriendAccess(ND);
10417
John McCall6102ca12010-10-16 06:59:13 +000010418 FunctionDecl *FD;
10419 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10420 FD = FTD->getTemplatedDecl();
10421 else
10422 FD = cast<FunctionDecl>(ND);
10423
10424 // Mark templated-scope function declarations as unsupported.
10425 if (FD->getNumTemplateParameterLists())
10426 FrD->setUnsupportedFriend(true);
10427 }
John McCall337ec3d2010-10-12 23:13:28 +000010428
John McCalld226f652010-08-21 09:40:31 +000010429 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010430}
10431
John McCalld226f652010-08-21 09:40:31 +000010432void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10433 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010434
Sebastian Redl50de12f2009-03-24 22:27:57 +000010435 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10436 if (!Fn) {
10437 Diag(DelLoc, diag::err_deleted_non_function);
10438 return;
10439 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010440 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010441 // Don't consider the implicit declaration we generate for explicit
10442 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010443 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10444 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010445 Diag(DelLoc, diag::err_deleted_decl_not_first);
10446 Diag(Prev->getLocation(), diag::note_previous_declaration);
10447 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010448 // If the declaration wasn't the first, we delete the function anyway for
10449 // recovery.
10450 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010451 Fn->setDeletedAsWritten();
Richard Smithe653ba22012-02-26 00:31:33 +000010452
10453 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10454 if (!MD)
10455 return;
10456
10457 // A deleted special member function is trivial if the corresponding
10458 // implicitly-declared function would have been.
10459 switch (getSpecialMember(MD)) {
10460 case CXXInvalid:
10461 break;
10462 case CXXDefaultConstructor:
10463 MD->setTrivial(MD->getParent()->hasTrivialDefaultConstructor());
10464 break;
10465 case CXXCopyConstructor:
10466 MD->setTrivial(MD->getParent()->hasTrivialCopyConstructor());
10467 break;
10468 case CXXMoveConstructor:
10469 MD->setTrivial(MD->getParent()->hasTrivialMoveConstructor());
10470 break;
10471 case CXXCopyAssignment:
10472 MD->setTrivial(MD->getParent()->hasTrivialCopyAssignment());
10473 break;
10474 case CXXMoveAssignment:
10475 MD->setTrivial(MD->getParent()->hasTrivialMoveAssignment());
10476 break;
10477 case CXXDestructor:
10478 MD->setTrivial(MD->getParent()->hasTrivialDestructor());
10479 break;
10480 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010481}
Sebastian Redl13e88542009-04-27 21:33:24 +000010482
Sean Hunte4246a62011-05-12 06:15:49 +000010483void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10484 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10485
10486 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010487 if (MD->getParent()->isDependentType()) {
10488 MD->setDefaulted();
10489 MD->setExplicitlyDefaulted();
10490 return;
10491 }
10492
Sean Hunte4246a62011-05-12 06:15:49 +000010493 CXXSpecialMember Member = getSpecialMember(MD);
10494 if (Member == CXXInvalid) {
10495 Diag(DefaultLoc, diag::err_default_special_members);
10496 return;
10497 }
10498
10499 MD->setDefaulted();
10500 MD->setExplicitlyDefaulted();
10501
Sean Huntcd10dec2011-05-23 23:14:04 +000010502 // If this definition appears within the record, do the checking when
10503 // the record is complete.
10504 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010505 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010506 // Find the uninstantiated declaration that actually had the '= default'
10507 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010508 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010509
10510 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010511 return;
10512
Richard Smithb9d0b762012-07-27 04:22:15 +000010513 CheckExplicitlyDefaultedSpecialMember(MD);
10514
Sean Hunte4246a62011-05-12 06:15:49 +000010515 switch (Member) {
10516 case CXXDefaultConstructor: {
10517 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010518 if (!CD->isInvalidDecl())
10519 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10520 break;
10521 }
10522
10523 case CXXCopyConstructor: {
10524 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010525 if (!CD->isInvalidDecl())
10526 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010527 break;
10528 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010529
Sean Hunt2b188082011-05-14 05:23:28 +000010530 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010531 if (!MD->isInvalidDecl())
10532 DefineImplicitCopyAssignment(DefaultLoc, MD);
10533 break;
10534 }
10535
Sean Huntcb45a0f2011-05-12 22:46:25 +000010536 case CXXDestructor: {
10537 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010538 if (!DD->isInvalidDecl())
10539 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010540 break;
10541 }
10542
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010543 case CXXMoveConstructor: {
10544 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010545 if (!CD->isInvalidDecl())
10546 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010547 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010548 }
Sean Hunt82713172011-05-25 23:16:36 +000010549
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010550 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010551 if (!MD->isInvalidDecl())
10552 DefineImplicitMoveAssignment(DefaultLoc, MD);
10553 break;
10554 }
10555
10556 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010557 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010558 }
10559 } else {
10560 Diag(DefaultLoc, diag::err_default_special_members);
10561 }
10562}
10563
Sebastian Redl13e88542009-04-27 21:33:24 +000010564static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010565 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010566 Stmt *SubStmt = *CI;
10567 if (!SubStmt)
10568 continue;
10569 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010570 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010571 diag::err_return_in_constructor_handler);
10572 if (!isa<Expr>(SubStmt))
10573 SearchForReturnInStmt(Self, SubStmt);
10574 }
10575}
10576
10577void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10578 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10579 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10580 SearchForReturnInStmt(*this, Handler);
10581 }
10582}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010583
Mike Stump1eb44332009-09-09 15:08:12 +000010584bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010585 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010586 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10587 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010588
Chandler Carruth73857792010-02-15 11:53:20 +000010589 if (Context.hasSameType(NewTy, OldTy) ||
10590 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010591 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010592
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010593 // Check if the return types are covariant
10594 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010595
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010596 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010597 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10598 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010599 NewClassTy = NewPT->getPointeeType();
10600 OldClassTy = OldPT->getPointeeType();
10601 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010602 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10603 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10604 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10605 NewClassTy = NewRT->getPointeeType();
10606 OldClassTy = OldRT->getPointeeType();
10607 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010608 }
10609 }
Mike Stump1eb44332009-09-09 15:08:12 +000010610
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010611 // The return types aren't either both pointers or references to a class type.
10612 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000010613 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010614 diag::err_different_return_type_for_overriding_virtual_function)
10615 << New->getDeclName() << NewTy << OldTy;
10616 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000010617
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010618 return true;
10619 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010620
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010621 // C++ [class.virtual]p6:
10622 // If the return type of D::f differs from the return type of B::f, the
10623 // class type in the return type of D::f shall be complete at the point of
10624 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000010625 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
10626 if (!RT->isBeingDefined() &&
10627 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000010628 diag::err_covariant_return_incomplete,
10629 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010630 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000010631 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000010632
Douglas Gregora4923eb2009-11-16 21:35:15 +000010633 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010634 // Check if the new class derives from the old class.
10635 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
10636 Diag(New->getLocation(),
10637 diag::err_covariant_return_not_derived)
10638 << New->getDeclName() << NewTy << OldTy;
10639 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10640 return true;
10641 }
Mike Stump1eb44332009-09-09 15:08:12 +000010642
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010643 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000010644 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000010645 diag::err_covariant_return_inaccessible_base,
10646 diag::err_covariant_return_ambiguous_derived_to_base_conv,
10647 // FIXME: Should this point to the return type?
10648 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000010649 // FIXME: this note won't trigger for delayed access control
10650 // diagnostics, and it's impossible to get an undelayed error
10651 // here from access control during the original parse because
10652 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010653 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10654 return true;
10655 }
10656 }
Mike Stump1eb44332009-09-09 15:08:12 +000010657
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010658 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010659 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010660 Diag(New->getLocation(),
10661 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010662 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010663 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10664 return true;
10665 };
Mike Stump1eb44332009-09-09 15:08:12 +000010666
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010667
10668 // The new class type must have the same or less qualifiers as the old type.
10669 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
10670 Diag(New->getLocation(),
10671 diag::err_covariant_return_type_class_type_more_qualified)
10672 << New->getDeclName() << NewTy << OldTy;
10673 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10674 return true;
10675 };
Mike Stump1eb44332009-09-09 15:08:12 +000010676
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010677 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010678}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010679
Douglas Gregor4ba31362009-12-01 17:24:26 +000010680/// \brief Mark the given method pure.
10681///
10682/// \param Method the method to be marked pure.
10683///
10684/// \param InitRange the source range that covers the "0" initializer.
10685bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000010686 SourceLocation EndLoc = InitRange.getEnd();
10687 if (EndLoc.isValid())
10688 Method->setRangeEnd(EndLoc);
10689
Douglas Gregor4ba31362009-12-01 17:24:26 +000010690 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
10691 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000010692 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000010693 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000010694
10695 if (!Method->isInvalidDecl())
10696 Diag(Method->getLocation(), diag::err_non_virtual_pure)
10697 << Method->getDeclName() << InitRange;
10698 return true;
10699}
10700
Douglas Gregor552e2992012-02-21 02:22:07 +000010701/// \brief Determine whether the given declaration is a static data member.
10702static bool isStaticDataMember(Decl *D) {
10703 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
10704 if (!Var)
10705 return false;
10706
10707 return Var->isStaticDataMember();
10708}
John McCall731ad842009-12-19 09:28:58 +000010709/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
10710/// an initializer for the out-of-line declaration 'Dcl'. The scope
10711/// is a fresh scope pushed for just this purpose.
10712///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010713/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
10714/// static data member of class X, names should be looked up in the scope of
10715/// class X.
John McCalld226f652010-08-21 09:40:31 +000010716void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010717 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010718 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010719
John McCall731ad842009-12-19 09:28:58 +000010720 // We should only get called for declarations with scope specifiers, like:
10721 // int foo::bar;
10722 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010723 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000010724
10725 // If we are parsing the initializer for a static data member, push a
10726 // new expression evaluation context that is associated with this static
10727 // data member.
10728 if (isStaticDataMember(D))
10729 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010730}
10731
10732/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000010733/// initializer for the out-of-line declaration 'D'.
10734void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010735 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000010736 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010737
Douglas Gregor552e2992012-02-21 02:22:07 +000010738 if (isStaticDataMember(D))
10739 PopExpressionEvaluationContext();
10740
John McCall731ad842009-12-19 09:28:58 +000010741 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000010742 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000010743}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010744
10745/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
10746/// C++ if/switch/while/for statement.
10747/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000010748DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010749 // C++ 6.4p2:
10750 // The declarator shall not specify a function or an array.
10751 // The type-specifier-seq shall not contain typedef and shall not declare a
10752 // new class or enumeration.
10753 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
10754 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010755
10756 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000010757 if (!Dcl)
10758 return true;
10759
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000010760 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
10761 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010762 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000010763 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010764 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010765
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000010766 return Dcl;
10767}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010768
Douglas Gregordfe65432011-07-28 19:11:31 +000010769void Sema::LoadExternalVTableUses() {
10770 if (!ExternalSource)
10771 return;
10772
10773 SmallVector<ExternalVTableUse, 4> VTables;
10774 ExternalSource->ReadUsedVTables(VTables);
10775 SmallVector<VTableUse, 4> NewUses;
10776 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
10777 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
10778 = VTablesUsed.find(VTables[I].Record);
10779 // Even if a definition wasn't required before, it may be required now.
10780 if (Pos != VTablesUsed.end()) {
10781 if (!Pos->second && VTables[I].DefinitionRequired)
10782 Pos->second = true;
10783 continue;
10784 }
10785
10786 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
10787 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
10788 }
10789
10790 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
10791}
10792
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010793void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
10794 bool DefinitionRequired) {
10795 // Ignore any vtable uses in unevaluated operands or for classes that do
10796 // not have a vtable.
10797 if (!Class->isDynamicClass() || Class->isDependentContext() ||
10798 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000010799 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000010800 return;
10801
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010802 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000010803 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010804 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10805 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
10806 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
10807 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000010808 // If we already had an entry, check to see if we are promoting this vtable
10809 // to required a definition. If so, we need to reappend to the VTableUses
10810 // list, since we may have already processed the first entry.
10811 if (DefinitionRequired && !Pos.first->second) {
10812 Pos.first->second = true;
10813 } else {
10814 // Otherwise, we can early exit.
10815 return;
10816 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010817 }
10818
10819 // Local classes need to have their virtual members marked
10820 // immediately. For all other classes, we mark their virtual members
10821 // at the end of the translation unit.
10822 if (Class->isLocalClass())
10823 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000010824 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010825 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000010826}
10827
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010828bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000010829 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010830 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000010831 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000010832
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010833 // Note: The VTableUses vector could grow as a result of marking
10834 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000010835 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010836 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000010837 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010838 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000010839 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010840 if (!Class)
10841 continue;
10842
10843 SourceLocation Loc = VTableUses[I].second;
10844
Richard Smithb9d0b762012-07-27 04:22:15 +000010845 bool DefineVTable = true;
10846
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010847 // If this class has a key function, but that key function is
10848 // defined in another translation unit, we don't need to emit the
10849 // vtable even though we're using it.
10850 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000010851 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010852 switch (KeyFunction->getTemplateSpecializationKind()) {
10853 case TSK_Undeclared:
10854 case TSK_ExplicitSpecialization:
10855 case TSK_ExplicitInstantiationDeclaration:
10856 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000010857 DefineVTable = false;
10858 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010859
10860 case TSK_ExplicitInstantiationDefinition:
10861 case TSK_ImplicitInstantiation:
10862 // We will be instantiating the key function.
10863 break;
10864 }
10865 } else if (!KeyFunction) {
10866 // If we have a class with no key function that is the subject
10867 // of an explicit instantiation declaration, suppress the
10868 // vtable; it will live with the explicit instantiation
10869 // definition.
10870 bool IsExplicitInstantiationDeclaration
10871 = Class->getTemplateSpecializationKind()
10872 == TSK_ExplicitInstantiationDeclaration;
10873 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
10874 REnd = Class->redecls_end();
10875 R != REnd; ++R) {
10876 TemplateSpecializationKind TSK
10877 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
10878 if (TSK == TSK_ExplicitInstantiationDeclaration)
10879 IsExplicitInstantiationDeclaration = true;
10880 else if (TSK == TSK_ExplicitInstantiationDefinition) {
10881 IsExplicitInstantiationDeclaration = false;
10882 break;
10883 }
10884 }
10885
10886 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000010887 DefineVTable = false;
10888 }
10889
10890 // The exception specifications for all virtual members may be needed even
10891 // if we are not providing an authoritative form of the vtable in this TU.
10892 // We may choose to emit it available_externally anyway.
10893 if (!DefineVTable) {
10894 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
10895 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010896 }
10897
10898 // Mark all of the virtual members of this class as referenced, so
10899 // that we can build a vtable. Then, tell the AST consumer that a
10900 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000010901 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010902 MarkVirtualMembersReferenced(Loc, Class);
10903 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
10904 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
10905
10906 // Optionally warn if we're emitting a weak vtable.
10907 if (Class->getLinkage() == ExternalLinkage &&
10908 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000010909 const FunctionDecl *KeyFunctionDef = 0;
10910 if (!KeyFunction ||
10911 (KeyFunction->hasBody(KeyFunctionDef) &&
10912 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000010913 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
10914 TSK_ExplicitInstantiationDefinition
10915 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
10916 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010917 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010918 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000010919 VTableUses.clear();
10920
Douglas Gregor78844032011-04-22 22:25:37 +000010921 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000010922}
Anders Carlssond6a637f2009-12-07 08:24:59 +000010923
Richard Smithb9d0b762012-07-27 04:22:15 +000010924void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
10925 const CXXRecordDecl *RD) {
10926 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
10927 E = RD->method_end(); I != E; ++I)
10928 if ((*I)->isVirtual() && !(*I)->isPure())
10929 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
10930}
10931
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010932void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
10933 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000010934 // Mark all functions which will appear in RD's vtable as used.
10935 CXXFinalOverriderMap FinalOverriders;
10936 RD->getFinalOverriders(FinalOverriders);
10937 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
10938 E = FinalOverriders.end();
10939 I != E; ++I) {
10940 for (OverridingMethods::const_iterator OI = I->second.begin(),
10941 OE = I->second.end();
10942 OI != OE; ++OI) {
10943 assert(OI->second.size() > 0 && "no final overrider");
10944 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000010945
Richard Smithff817f72012-07-07 06:59:51 +000010946 // C++ [basic.def.odr]p2:
10947 // [...] A virtual member function is used if it is not pure. [...]
10948 if (!Overrider->isPure())
10949 MarkFunctionReferenced(Loc, Overrider);
10950 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010951 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010952
10953 // Only classes that have virtual bases need a VTT.
10954 if (RD->getNumVBases() == 0)
10955 return;
10956
10957 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
10958 e = RD->bases_end(); i != e; ++i) {
10959 const CXXRecordDecl *Base =
10960 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000010961 if (Base->getNumVBases() == 0)
10962 continue;
10963 MarkVirtualMembersReferenced(Loc, Base);
10964 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000010965}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010966
10967/// SetIvarInitializers - This routine builds initialization ASTs for the
10968/// Objective-C implementation whose ivars need be initialized.
10969void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010970 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010971 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000010972 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000010973 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010974 CollectIvarsToConstructOrDestruct(OID, ivars);
10975 if (ivars.empty())
10976 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000010977 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010978 for (unsigned i = 0; i < ivars.size(); i++) {
10979 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000010980 if (Field->isInvalidDecl())
10981 continue;
10982
Sean Huntcbb67482011-01-08 20:30:50 +000010983 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010984 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
10985 InitializationKind InitKind =
10986 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
10987
10988 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000010989 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000010990 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000010991 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010992 // Note, MemberInit could actually come back empty if no initialization
10993 // is required (e.g., because it would call a trivial default constructor)
10994 if (!MemberInit.get() || MemberInit.isInvalid())
10995 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000010996
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000010997 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000010998 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
10999 SourceLocation(),
11000 MemberInit.takeAs<Expr>(),
11001 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011002 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011003
11004 // Be sure that the destructor is accessible and is marked as referenced.
11005 if (const RecordType *RecordTy
11006 = Context.getBaseElementType(Field->getType())
11007 ->getAs<RecordType>()) {
11008 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000011009 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011010 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011011 CheckDestructorAccess(Field->getLocation(), Destructor,
11012 PDiag(diag::err_access_dtor_ivar)
11013 << Context.getBaseElementType(Field->getType()));
11014 }
11015 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011016 }
11017 ObjCImplementation->setIvarInitializers(Context,
11018 AllToInit.data(), AllToInit.size());
11019 }
11020}
Sean Huntfe57eef2011-05-04 05:57:24 +000011021
Sean Huntebcbe1d2011-05-04 23:29:54 +000011022static
11023void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
11024 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
11025 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
11026 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
11027 Sema &S) {
11028 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11029 CE = Current.end();
11030 if (Ctor->isInvalidDecl())
11031 return;
11032
Richard Smitha8eaf002012-08-23 06:16:52 +000011033 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
11034
11035 // Target may not be determinable yet, for instance if this is a dependent
11036 // call in an uninstantiated template.
11037 if (Target) {
11038 const FunctionDecl *FNTarget = 0;
11039 (void)Target->hasBody(FNTarget);
11040 Target = const_cast<CXXConstructorDecl*>(
11041 cast_or_null<CXXConstructorDecl>(FNTarget));
11042 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000011043
11044 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
11045 // Avoid dereferencing a null pointer here.
11046 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
11047
11048 if (!Current.insert(Canonical))
11049 return;
11050
11051 // We know that beyond here, we aren't chaining into a cycle.
11052 if (!Target || !Target->isDelegatingConstructor() ||
11053 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11054 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11055 Valid.insert(*CI);
11056 Current.clear();
11057 // We've hit a cycle.
11058 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11059 Current.count(TCanonical)) {
11060 // If we haven't diagnosed this cycle yet, do so now.
11061 if (!Invalid.count(TCanonical)) {
11062 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011063 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011064 << Ctor;
11065
Richard Smitha8eaf002012-08-23 06:16:52 +000011066 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011067 if (TCanonical != Canonical)
11068 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11069
11070 CXXConstructorDecl *C = Target;
11071 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011072 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011073 (void)C->getTargetConstructor()->hasBody(FNTarget);
11074 assert(FNTarget && "Ctor cycle through bodiless function");
11075
Richard Smitha8eaf002012-08-23 06:16:52 +000011076 C = const_cast<CXXConstructorDecl*>(
11077 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011078 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11079 }
11080 }
11081
11082 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11083 Invalid.insert(*CI);
11084 Current.clear();
11085 } else {
11086 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11087 }
11088}
11089
11090
Sean Huntfe57eef2011-05-04 05:57:24 +000011091void Sema::CheckDelegatingCtorCycles() {
11092 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11093
Sean Huntebcbe1d2011-05-04 23:29:54 +000011094 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11095 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011096
Douglas Gregor0129b562011-07-27 21:57:17 +000011097 for (DelegatingCtorDeclsType::iterator
11098 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011099 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011100 I != E; ++I)
11101 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011102
11103 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11104 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011105}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011106
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011107namespace {
11108 /// \brief AST visitor that finds references to the 'this' expression.
11109 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11110 Sema &S;
11111
11112 public:
11113 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11114
11115 bool VisitCXXThisExpr(CXXThisExpr *E) {
11116 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11117 << E->isImplicit();
11118 return false;
11119 }
11120 };
11121}
11122
11123bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11124 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11125 if (!TSInfo)
11126 return false;
11127
11128 TypeLoc TL = TSInfo->getTypeLoc();
11129 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11130 if (!ProtoTL)
11131 return false;
11132
11133 // C++11 [expr.prim.general]p3:
11134 // [The expression this] shall not appear before the optional
11135 // cv-qualifier-seq and it shall not appear within the declaration of a
11136 // static member function (although its type and value category are defined
11137 // within a static member function as they are within a non-static member
11138 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011139 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011140 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11141 FindCXXThisExpr Finder(*this);
11142
11143 // If the return type came after the cv-qualifier-seq, check it now.
11144 if (Proto->hasTrailingReturn() &&
11145 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11146 return true;
11147
11148 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011149 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11150 return true;
11151
11152 return checkThisInStaticMemberFunctionAttributes(Method);
11153}
11154
11155bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11156 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11157 if (!TSInfo)
11158 return false;
11159
11160 TypeLoc TL = TSInfo->getTypeLoc();
11161 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11162 if (!ProtoTL)
11163 return false;
11164
11165 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11166 FindCXXThisExpr Finder(*this);
11167
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011168 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011169 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011170 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011171 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011172 case EST_DynamicNone:
11173 case EST_MSAny:
11174 case EST_None:
11175 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011176
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011177 case EST_ComputedNoexcept:
11178 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11179 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011180
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011181 case EST_Dynamic:
11182 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011183 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011184 E != EEnd; ++E) {
11185 if (!Finder.TraverseType(*E))
11186 return true;
11187 }
11188 break;
11189 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011190
11191 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011192}
11193
11194bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11195 FindCXXThisExpr Finder(*this);
11196
11197 // Check attributes.
11198 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11199 A != AEnd; ++A) {
11200 // FIXME: This should be emitted by tblgen.
11201 Expr *Arg = 0;
11202 ArrayRef<Expr *> Args;
11203 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11204 Arg = G->getArg();
11205 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11206 Arg = G->getArg();
11207 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11208 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11209 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11210 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11211 else if (ExclusiveLockFunctionAttr *ELF
11212 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11213 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11214 else if (SharedLockFunctionAttr *SLF
11215 = dyn_cast<SharedLockFunctionAttr>(*A))
11216 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11217 else if (ExclusiveTrylockFunctionAttr *ETLF
11218 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11219 Arg = ETLF->getSuccessValue();
11220 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11221 } else if (SharedTrylockFunctionAttr *STLF
11222 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11223 Arg = STLF->getSuccessValue();
11224 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11225 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11226 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11227 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11228 Arg = LR->getArg();
11229 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11230 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11231 else if (ExclusiveLocksRequiredAttr *ELR
11232 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11233 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11234 else if (SharedLocksRequiredAttr *SLR
11235 = dyn_cast<SharedLocksRequiredAttr>(*A))
11236 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11237
11238 if (Arg && !Finder.TraverseStmt(Arg))
11239 return true;
11240
11241 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11242 if (!Finder.TraverseStmt(Args[I]))
11243 return true;
11244 }
11245 }
11246
11247 return false;
11248}
11249
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011250void
11251Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11252 ArrayRef<ParsedType> DynamicExceptions,
11253 ArrayRef<SourceRange> DynamicExceptionRanges,
11254 Expr *NoexceptExpr,
11255 llvm::SmallVectorImpl<QualType> &Exceptions,
11256 FunctionProtoType::ExtProtoInfo &EPI) {
11257 Exceptions.clear();
11258 EPI.ExceptionSpecType = EST;
11259 if (EST == EST_Dynamic) {
11260 Exceptions.reserve(DynamicExceptions.size());
11261 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11262 // FIXME: Preserve type source info.
11263 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11264
11265 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11266 collectUnexpandedParameterPacks(ET, Unexpanded);
11267 if (!Unexpanded.empty()) {
11268 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11269 UPPC_ExceptionType,
11270 Unexpanded);
11271 continue;
11272 }
11273
11274 // Check that the type is valid for an exception spec, and
11275 // drop it if not.
11276 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11277 Exceptions.push_back(ET);
11278 }
11279 EPI.NumExceptions = Exceptions.size();
11280 EPI.Exceptions = Exceptions.data();
11281 return;
11282 }
11283
11284 if (EST == EST_ComputedNoexcept) {
11285 // If an error occurred, there's no expression here.
11286 if (NoexceptExpr) {
11287 assert((NoexceptExpr->isTypeDependent() ||
11288 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11289 Context.BoolTy) &&
11290 "Parser should have made sure that the expression is boolean");
11291 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11292 EPI.ExceptionSpecType = EST_BasicNoexcept;
11293 return;
11294 }
11295
11296 if (!NoexceptExpr->isValueDependent())
11297 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011298 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011299 /*AllowFold*/ false).take();
11300 EPI.NoexceptExpr = NoexceptExpr;
11301 }
11302 return;
11303 }
11304}
11305
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011306/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11307Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11308 // Implicitly declared functions (e.g. copy constructors) are
11309 // __host__ __device__
11310 if (D->isImplicit())
11311 return CFT_HostDevice;
11312
11313 if (D->hasAttr<CUDAGlobalAttr>())
11314 return CFT_Global;
11315
11316 if (D->hasAttr<CUDADeviceAttr>()) {
11317 if (D->hasAttr<CUDAHostAttr>())
11318 return CFT_HostDevice;
11319 else
11320 return CFT_Device;
11321 }
11322
11323 return CFT_Host;
11324}
11325
11326bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11327 CUDAFunctionTarget CalleeTarget) {
11328 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11329 // Callable from the device only."
11330 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11331 return true;
11332
11333 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11334 // Callable from the host only."
11335 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11336 // Callable from the host only."
11337 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11338 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11339 return true;
11340
11341 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11342 return true;
11343
11344 return false;
11345}