blob: 56507818939c15d7d2f18cdb280f2b25f78e412a [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Sebastian Redl58a2cd82011-04-24 16:28:06 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000019#include "clang/AST/CharUnits.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000020#include "clang/AST/DeclVisitor.h"
Richard Trieude5e75c2012-06-14 23:11:34 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000023#include "clang/AST/RecordLayout.h"
Douglas Gregorcefc3af2012-04-16 07:05:22 +000024#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000025#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Aaron Ballmanfff32482012-12-09 17:45:41 +000029#include "clang/Basic/TargetInfo.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000030#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000031#include "clang/Sema/CXXFieldCollector.h"
32#include "clang/Sema/DeclSpec.h"
33#include "clang/Sema/Initialization.h"
34#include "clang/Sema/Lookup.h"
35#include "clang/Sema/ParsedTemplate.h"
36#include "clang/Sema/Scope.h"
37#include "clang/Sema/ScopeInfo.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000038#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000039#include "llvm/ADT/SmallString.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000040#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000041#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000042
43using namespace clang;
44
Chris Lattner8123a952008-04-10 02:22:51 +000045//===----------------------------------------------------------------------===//
46// CheckDefaultArgumentVisitor
47//===----------------------------------------------------------------------===//
48
Chris Lattner9e979552008-04-12 23:52:44 +000049namespace {
50 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
51 /// the default argument of a parameter to determine whether it
52 /// contains any ill-formed subexpressions. For example, this will
53 /// diagnose the use of local variables or parameters within the
54 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000055 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000056 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000057 Expr *DefaultArg;
58 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000059
Chris Lattner9e979552008-04-12 23:52:44 +000060 public:
Mike Stump1eb44332009-09-09 15:08:12 +000061 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000062 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000063
Chris Lattner9e979552008-04-12 23:52:44 +000064 bool VisitExpr(Expr *Node);
65 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000066 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0459f82012-02-10 23:30:22 +000067 bool VisitLambdaExpr(LambdaExpr *Lambda);
Chris Lattner9e979552008-04-12 23:52:44 +000068 };
Chris Lattner8123a952008-04-10 02:22:51 +000069
Chris Lattner9e979552008-04-12 23:52:44 +000070 /// VisitExpr - Visit all of the children of this expression.
71 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
72 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000073 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000074 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000075 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000076 }
77
Chris Lattner9e979552008-04-12 23:52:44 +000078 /// VisitDeclRefExpr - Visit a reference to a declaration, to
79 /// determine whether this declaration can be used in the default
80 /// argument expression.
81 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000082 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000083 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
84 // C++ [dcl.fct.default]p9
85 // Default arguments are evaluated each time the function is
86 // called. The order of evaluation of function arguments is
87 // unspecified. Consequently, parameters of a function shall not
88 // be used in default argument expressions, even if they are not
89 // evaluated. Parameters of a function declared before a default
90 // argument expression are in scope and can hide namespace and
91 // class member names.
Daniel Dunbar96a00142012-03-09 18:35:03 +000092 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000093 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000094 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000095 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000096 // C++ [dcl.fct.default]p7
97 // Local variables shall not be used in default argument
98 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000099 if (VDecl->isLocalVarDecl())
Daniel Dunbar96a00142012-03-09 18:35:03 +0000100 return S->Diag(DRE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000101 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +0000102 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000103 }
Chris Lattner8123a952008-04-10 02:22:51 +0000104
Douglas Gregor3996f232008-11-04 13:41:56 +0000105 return false;
106 }
Chris Lattner9e979552008-04-12 23:52:44 +0000107
Douglas Gregor796da182008-11-04 14:32:21 +0000108 /// VisitCXXThisExpr - Visit a C++ "this" expression.
109 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
110 // C++ [dcl.fct.default]p8:
111 // The keyword this shall not be used in a default argument of a
112 // member function.
Daniel Dunbar96a00142012-03-09 18:35:03 +0000113 return S->Diag(ThisE->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000114 diag::err_param_default_argument_references_this)
115 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000116 }
Douglas Gregorf0459f82012-02-10 23:30:22 +0000117
118 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
119 // C++11 [expr.lambda.prim]p13:
120 // A lambda-expression appearing in a default argument shall not
121 // implicitly or explicitly capture any entity.
122 if (Lambda->capture_begin() == Lambda->capture_end())
123 return false;
124
125 return S->Diag(Lambda->getLocStart(),
126 diag::err_lambda_capture_default_arg);
127 }
Chris Lattner8123a952008-04-10 02:22:51 +0000128}
129
Richard Smithe6975e92012-04-17 00:58:00 +0000130void Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
131 CXXMethodDecl *Method) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000132 // If we have an MSAny spec already, don't bother.
133 if (!Method || ComputedEST == EST_MSAny)
Sean Hunt001cad92011-05-10 00:49:42 +0000134 return;
135
136 const FunctionProtoType *Proto
137 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithe6975e92012-04-17 00:58:00 +0000138 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
139 if (!Proto)
140 return;
Sean Hunt001cad92011-05-10 00:49:42 +0000141
142 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
143
144 // If this function can throw any exceptions, make a note of that.
Richard Smithb9d0b762012-07-27 04:22:15 +0000145 if (EST == EST_MSAny || EST == EST_None) {
Sean Hunt001cad92011-05-10 00:49:42 +0000146 ClearExceptions();
147 ComputedEST = EST;
148 return;
149 }
150
Richard Smith7a614d82011-06-11 17:19:42 +0000151 // FIXME: If the call to this decl is using any of its default arguments, we
152 // need to search them for potentially-throwing calls.
153
Sean Hunt001cad92011-05-10 00:49:42 +0000154 // If this function has a basic noexcept, it doesn't affect the outcome.
155 if (EST == EST_BasicNoexcept)
156 return;
157
158 // If we have a throw-all spec at this point, ignore the function.
159 if (ComputedEST == EST_None)
160 return;
161
162 // If we're still at noexcept(true) and there's a nothrow() callee,
163 // change to that specification.
164 if (EST == EST_DynamicNone) {
165 if (ComputedEST == EST_BasicNoexcept)
166 ComputedEST = EST_DynamicNone;
167 return;
168 }
169
170 // Check out noexcept specs.
171 if (EST == EST_ComputedNoexcept) {
Richard Smithe6975e92012-04-17 00:58:00 +0000172 FunctionProtoType::NoexceptResult NR =
173 Proto->getNoexceptSpec(Self->Context);
Sean Hunt001cad92011-05-10 00:49:42 +0000174 assert(NR != FunctionProtoType::NR_NoNoexcept &&
175 "Must have noexcept result for EST_ComputedNoexcept.");
176 assert(NR != FunctionProtoType::NR_Dependent &&
177 "Should not generate implicit declarations for dependent cases, "
178 "and don't know how to handle them anyway.");
179
180 // noexcept(false) -> no spec on the new function
181 if (NR == FunctionProtoType::NR_Throw) {
182 ClearExceptions();
183 ComputedEST = EST_None;
184 }
185 // noexcept(true) won't change anything either.
186 return;
187 }
188
189 assert(EST == EST_Dynamic && "EST case not considered earlier.");
190 assert(ComputedEST != EST_None &&
191 "Shouldn't collect exceptions when throw-all is guaranteed.");
192 ComputedEST = EST_Dynamic;
193 // Record the exceptions in this function's exception specification.
194 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
195 EEnd = Proto->exception_end();
196 E != EEnd; ++E)
Richard Smithe6975e92012-04-17 00:58:00 +0000197 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(*E)))
Sean Hunt001cad92011-05-10 00:49:42 +0000198 Exceptions.push_back(*E);
199}
200
Richard Smith7a614d82011-06-11 17:19:42 +0000201void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithb9d0b762012-07-27 04:22:15 +0000202 if (!E || ComputedEST == EST_MSAny)
Richard Smith7a614d82011-06-11 17:19:42 +0000203 return;
204
205 // FIXME:
206 //
207 // C++0x [except.spec]p14:
NAKAMURA Takumi48579472011-06-21 03:19:28 +0000208 // [An] implicit exception-specification specifies the type-id T if and
209 // only if T is allowed by the exception-specification of a function directly
210 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith7a614d82011-06-11 17:19:42 +0000211 // function it directly invokes allows all exceptions, and f shall allow no
212 // exceptions if every function it directly invokes allows no exceptions.
213 //
214 // Note in particular that if an implicit exception-specification is generated
215 // for a function containing a throw-expression, that specification can still
216 // be noexcept(true).
217 //
218 // Note also that 'directly invoked' is not defined in the standard, and there
219 // is no indication that we should only consider potentially-evaluated calls.
220 //
221 // Ultimately we should implement the intent of the standard: the exception
222 // specification should be the set of exceptions which can be thrown by the
223 // implicit definition. For now, we assume that any non-nothrow expression can
224 // throw any exception.
225
Richard Smithe6975e92012-04-17 00:58:00 +0000226 if (Self->canThrow(E))
Richard Smith7a614d82011-06-11 17:19:42 +0000227 ComputedEST = EST_None;
228}
229
Anders Carlssoned961f92009-08-25 02:29:20 +0000230bool
John McCall9ae2f072010-08-23 23:25:46 +0000231Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000232 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000233 if (RequireCompleteType(Param->getLocation(), Param->getType(),
234 diag::err_typecheck_decl_incomplete_type)) {
235 Param->setInvalidDecl();
236 return true;
237 }
238
Anders Carlssoned961f92009-08-25 02:29:20 +0000239 // C++ [dcl.fct.default]p5
240 // A default argument expression is implicitly converted (clause
241 // 4) to the parameter type. The default argument expression has
242 // the same semantic constraints as the initializer expression in
243 // a declaration of a variable of the parameter type, using the
244 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000245 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
246 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000247 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
248 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000249 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000250 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000251 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000252 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000253 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000254
John McCallb4eb64d2010-10-08 02:01:28 +0000255 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000256 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000257
Anders Carlssoned961f92009-08-25 02:29:20 +0000258 // Okay: add the default argument to the parameter
259 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000261 // We have already instantiated this parameter; provide each of the
262 // instantiations with the uninstantiated default argument.
263 UnparsedDefaultArgInstantiationsMap::iterator InstPos
264 = UnparsedDefaultArgInstantiations.find(Param);
265 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
266 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
267 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
268
269 // We're done tracking this parameter's instantiations.
270 UnparsedDefaultArgInstantiations.erase(InstPos);
271 }
272
Anders Carlsson9351c172009-08-25 03:18:48 +0000273 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000274}
275
Chris Lattner8123a952008-04-10 02:22:51 +0000276/// ActOnParamDefaultArgument - Check whether the default argument
277/// provided for a function parameter is well-formed. If so, attach it
278/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000279void
John McCalld226f652010-08-21 09:40:31 +0000280Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000281 Expr *DefaultArg) {
282 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000283 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000284
John McCalld226f652010-08-21 09:40:31 +0000285 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000286 UnparsedDefaultArgLocs.erase(Param);
287
Chris Lattner3d1cee32008-04-08 05:04:30 +0000288 // Default arguments are only permitted in C++
David Blaikie4e4d0842012-03-11 07:00:24 +0000289 if (!getLangOpts().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000290 Diag(EqualLoc, diag::err_param_default_argument)
291 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000292 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000293 return;
294 }
295
Douglas Gregor6f526752010-12-16 08:48:57 +0000296 // Check for unexpanded parameter packs.
297 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
298 Param->setInvalidDecl();
299 return;
300 }
301
Anders Carlsson66e30672009-08-25 01:02:06 +0000302 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000303 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
304 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000305 Param->setInvalidDecl();
306 return;
307 }
Mike Stump1eb44332009-09-09 15:08:12 +0000308
John McCall9ae2f072010-08-23 23:25:46 +0000309 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000310}
311
Douglas Gregor61366e92008-12-24 00:01:03 +0000312/// ActOnParamUnparsedDefaultArgument - We've seen a default
313/// argument for a function parameter, but we can't parse it yet
314/// because we're inside a class definition. Note that this default
315/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000316void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000317 SourceLocation EqualLoc,
318 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000319 if (!param)
320 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
John McCalld226f652010-08-21 09:40:31 +0000322 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000323 if (Param)
324 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Anders Carlsson5e300d12009-06-12 16:51:40 +0000326 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000327}
328
Douglas Gregor72b505b2008-12-16 21:30:33 +0000329/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
330/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000331void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000332 if (!param)
333 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000334
John McCalld226f652010-08-21 09:40:31 +0000335 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Anders Carlsson5e300d12009-06-12 16:51:40 +0000337 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Anders Carlsson5e300d12009-06-12 16:51:40 +0000339 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000340}
341
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000342/// CheckExtraCXXDefaultArguments - Check for any extra default
343/// arguments in the declarator, which is not a function declaration
344/// or definition and therefore is not permitted to have default
345/// arguments. This routine should be invoked for every declarator
346/// that is not a function declaration or definition.
347void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
348 // C++ [dcl.fct.default]p3
349 // A default argument expression shall be specified only in the
350 // parameter-declaration-clause of a function declaration or in a
351 // template-parameter (14.1). It shall not be specified for a
352 // parameter pack. If it is specified in a
353 // parameter-declaration-clause, it shall not occur within a
354 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000355 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000356 DeclaratorChunk &chunk = D.getTypeObject(i);
357 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000358 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
359 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000360 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000361 if (Param->hasUnparsedDefaultArg()) {
362 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000363 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
364 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
365 delete Toks;
366 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000367 } else if (Param->getDefaultArg()) {
368 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
369 << Param->getDefaultArg()->getSourceRange();
370 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000371 }
372 }
373 }
374 }
375}
376
Craig Topper1a6eac82012-09-21 04:33:26 +0000377/// MergeCXXFunctionDecl - Merge two declarations of the same C++
378/// function, once we already know that they have the same
379/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
380/// error, false otherwise.
James Molloy9cda03f2012-03-13 08:55:35 +0000381bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
382 Scope *S) {
Douglas Gregorcda9c672009-02-16 17:45:42 +0000383 bool Invalid = false;
384
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000386 // For non-template functions, default arguments can be added in
387 // later declarations of a function in the same
388 // scope. Declarations in different scopes have completely
389 // distinct sets of default arguments. That is, declarations in
390 // inner scopes do not acquire default arguments from
391 // declarations in outer scopes, and vice versa. In a given
392 // function declaration, all parameters subsequent to a
393 // parameter with a default argument shall have default
394 // arguments supplied in this or previous declarations. A
395 // default argument shall not be redefined by a later
396 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000397 //
398 // C++ [dcl.fct.default]p6:
399 // Except for member functions of class templates, the default arguments
400 // in a member function definition that appears outside of the class
401 // definition are added to the set of default arguments provided by the
402 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000403 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
404 ParmVarDecl *OldParam = Old->getParamDecl(p);
405 ParmVarDecl *NewParam = New->getParamDecl(p);
406
James Molloy9cda03f2012-03-13 08:55:35 +0000407 bool OldParamHasDfl = OldParam->hasDefaultArg();
408 bool NewParamHasDfl = NewParam->hasDefaultArg();
409
410 NamedDecl *ND = Old;
411 if (S && !isDeclInScope(ND, New->getDeclContext(), S))
412 // Ignore default parameters of old decl if they are not in
413 // the same scope.
414 OldParamHasDfl = false;
415
416 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000417
Francois Pichet8d051e02011-04-10 03:03:52 +0000418 unsigned DiagDefaultParamID =
419 diag::err_param_default_argument_redefinition;
420
421 // MSVC accepts that default parameters be redefined for member functions
422 // of template class. The new default parameter's value is ignored.
423 Invalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000424 if (getLangOpts().MicrosoftExt) {
Francois Pichet8d051e02011-04-10 03:03:52 +0000425 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
426 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000427 // Merge the old default argument into the new parameter.
428 NewParam->setHasInheritedDefaultArg();
429 if (OldParam->hasUninstantiatedDefaultArg())
430 NewParam->setUninstantiatedDefaultArg(
431 OldParam->getUninstantiatedDefaultArg());
432 else
433 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000434 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000435 Invalid = false;
436 }
437 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000438
Francois Pichet8cf90492011-04-10 04:58:30 +0000439 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
440 // hint here. Alternatively, we could walk the type-source information
441 // for NewParam to find the last source location in the type... but it
442 // isn't worth the effort right now. This is the kind of test case that
443 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000444 // int f(int);
445 // void g(int (*fp)(int) = f);
446 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000447 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000448 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000449
450 // Look for the function declaration where the default argument was
451 // actually written, which may be a declaration prior to Old.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000452 for (FunctionDecl *Older = Old->getPreviousDecl();
453 Older; Older = Older->getPreviousDecl()) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000454 if (!Older->getParamDecl(p)->hasDefaultArg())
455 break;
456
457 OldParam = Older->getParamDecl(p);
458 }
459
460 Diag(OldParam->getLocation(), diag::note_previous_definition)
461 << OldParam->getDefaultArgRange();
James Molloy9cda03f2012-03-13 08:55:35 +0000462 } else if (OldParamHasDfl) {
John McCall3d6c1782010-05-04 01:53:42 +0000463 // Merge the old default argument into the new parameter.
464 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000465 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000466 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000467 if (OldParam->hasUninstantiatedDefaultArg())
468 NewParam->setUninstantiatedDefaultArg(
469 OldParam->getUninstantiatedDefaultArg());
470 else
John McCall3d6c1782010-05-04 01:53:42 +0000471 NewParam->setDefaultArg(OldParam->getInit());
James Molloy9cda03f2012-03-13 08:55:35 +0000472 } else if (NewParamHasDfl) {
Douglas Gregor6cc15182009-09-11 18:44:32 +0000473 if (New->getDescribedFunctionTemplate()) {
474 // Paragraph 4, quoted above, only applies to non-template functions.
475 Diag(NewParam->getLocation(),
476 diag::err_param_default_argument_template_redecl)
477 << NewParam->getDefaultArgRange();
478 Diag(Old->getLocation(), diag::note_template_prev_declaration)
479 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000480 } else if (New->getTemplateSpecializationKind()
481 != TSK_ImplicitInstantiation &&
482 New->getTemplateSpecializationKind() != TSK_Undeclared) {
483 // C++ [temp.expr.spec]p21:
484 // Default function arguments shall not be specified in a declaration
485 // or a definition for one of the following explicit specializations:
486 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000487 // - the explicit specialization of a member function template;
488 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000489 // template where the class template specialization to which the
490 // member function specialization belongs is implicitly
491 // instantiated.
492 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
493 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
494 << New->getDeclName()
495 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000496 } else if (New->getDeclContext()->isDependentContext()) {
497 // C++ [dcl.fct.default]p6 (DR217):
498 // Default arguments for a member function of a class template shall
499 // be specified on the initial declaration of the member function
500 // within the class template.
501 //
502 // Reading the tea leaves a bit in DR217 and its reference to DR205
503 // leads me to the conclusion that one cannot add default function
504 // arguments for an out-of-line definition of a member function of a
505 // dependent type.
506 int WhichKind = 2;
507 if (CXXRecordDecl *Record
508 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
509 if (Record->getDescribedClassTemplate())
510 WhichKind = 0;
511 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
512 WhichKind = 1;
513 else
514 WhichKind = 2;
515 }
516
517 Diag(NewParam->getLocation(),
518 diag::err_param_default_argument_member_template_redecl)
519 << WhichKind
520 << NewParam->getDefaultArgRange();
521 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000522 }
523 }
524
Richard Smithb8abff62012-11-28 03:45:24 +0000525 // DR1344: If a default argument is added outside a class definition and that
526 // default argument makes the function a special member function, the program
527 // is ill-formed. This can only happen for constructors.
528 if (isa<CXXConstructorDecl>(New) &&
529 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
530 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
531 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
532 if (NewSM != OldSM) {
533 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
534 assert(NewParam->hasDefaultArg());
535 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
536 << NewParam->getDefaultArgRange() << NewSM;
537 Diag(Old->getLocation(), diag::note_previous_declaration);
538 }
539 }
540
Richard Smithff234882012-02-20 23:28:05 +0000541 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smith9f569cc2011-10-01 02:31:28 +0000542 // template has a constexpr specifier then all its declarations shall
Richard Smithff234882012-02-20 23:28:05 +0000543 // contain the constexpr specifier.
Richard Smith9f569cc2011-10-01 02:31:28 +0000544 if (New->isConstexpr() != Old->isConstexpr()) {
545 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
546 << New << New->isConstexpr();
547 Diag(Old->getLocation(), diag::note_previous_declaration);
548 Invalid = true;
549 }
550
Douglas Gregore13ad832010-02-12 07:32:17 +0000551 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000552 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000553
Douglas Gregorcda9c672009-02-16 17:45:42 +0000554 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000555}
556
Sebastian Redl60618fa2011-03-12 11:50:43 +0000557/// \brief Merge the exception specifications of two variable declarations.
558///
559/// This is called when there's a redeclaration of a VarDecl. The function
560/// checks if the redeclaration might have an exception specification and
561/// validates compatibility and merges the specs if necessary.
562void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
563 // Shortcut if exceptions are disabled.
David Blaikie4e4d0842012-03-11 07:00:24 +0000564 if (!getLangOpts().CXXExceptions)
Sebastian Redl60618fa2011-03-12 11:50:43 +0000565 return;
566
567 assert(Context.hasSameType(New->getType(), Old->getType()) &&
568 "Should only be called if types are otherwise the same.");
569
570 QualType NewType = New->getType();
571 QualType OldType = Old->getType();
572
573 // We're only interested in pointers and references to functions, as well
574 // as pointers to member functions.
575 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
576 NewType = R->getPointeeType();
577 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
578 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
579 NewType = P->getPointeeType();
580 OldType = OldType->getAs<PointerType>()->getPointeeType();
581 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
582 NewType = M->getPointeeType();
583 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
584 }
585
586 if (!NewType->isFunctionProtoType())
587 return;
588
589 // There's lots of special cases for functions. For function pointers, system
590 // libraries are hopefully not as broken so that we don't need these
591 // workarounds.
592 if (CheckEquivalentExceptionSpec(
593 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
594 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
595 New->setInvalidDecl();
596 }
597}
598
Chris Lattner3d1cee32008-04-08 05:04:30 +0000599/// CheckCXXDefaultArguments - Verify that the default arguments for a
600/// function declaration are well-formed according to C++
601/// [dcl.fct.default].
602void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
603 unsigned NumParams = FD->getNumParams();
604 unsigned p;
605
Douglas Gregorc6889e72012-02-14 22:28:59 +0000606 bool IsLambda = FD->getOverloadedOperator() == OO_Call &&
607 isa<CXXMethodDecl>(FD) &&
608 cast<CXXMethodDecl>(FD)->getParent()->isLambda();
609
Chris Lattner3d1cee32008-04-08 05:04:30 +0000610 // Find first parameter with a default argument
611 for (p = 0; p < NumParams; ++p) {
612 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregorc6889e72012-02-14 22:28:59 +0000613 if (Param->hasDefaultArg()) {
614 // C++11 [expr.prim.lambda]p5:
615 // [...] Default arguments (8.3.6) shall not be specified in the
616 // parameter-declaration-clause of a lambda-declarator.
617 //
618 // FIXME: Core issue 974 strikes this sentence, we only provide an
619 // extension warning.
620 if (IsLambda)
621 Diag(Param->getLocation(), diag::ext_lambda_default_arguments)
622 << Param->getDefaultArgRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000623 break;
Douglas Gregorc6889e72012-02-14 22:28:59 +0000624 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000625 }
626
627 // C++ [dcl.fct.default]p4:
628 // In a given function declaration, all parameters
629 // subsequent to a parameter with a default argument shall
630 // have default arguments supplied in this or previous
631 // declarations. A default argument shall not be redefined
632 // by a later declaration (not even to the same value).
633 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000634 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000635 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000636 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000637 if (Param->isInvalidDecl())
638 /* We already complained about this parameter. */;
639 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000640 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000641 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000642 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000643 else
Mike Stump1eb44332009-09-09 15:08:12 +0000644 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000645 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Chris Lattner3d1cee32008-04-08 05:04:30 +0000647 LastMissingDefaultArg = p;
648 }
649 }
650
651 if (LastMissingDefaultArg > 0) {
652 // Some default arguments were missing. Clear out all of the
653 // default arguments up to (and including) the last missing
654 // default argument, so that we leave the function parameters
655 // in a semantically valid state.
656 for (p = 0; p <= LastMissingDefaultArg; ++p) {
657 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000658 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000659 Param->setDefaultArg(0);
660 }
661 }
662 }
663}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000664
Richard Smith9f569cc2011-10-01 02:31:28 +0000665// CheckConstexprParameterTypes - Check whether a function's parameter types
666// are all literal types. If so, return true. If not, produce a suitable
Richard Smith86c3ae42012-02-13 03:54:03 +0000667// diagnostic and return false.
668static bool CheckConstexprParameterTypes(Sema &SemaRef,
669 const FunctionDecl *FD) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000670 unsigned ArgIndex = 0;
671 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
672 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
673 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
674 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
675 SourceLocation ParamLoc = PD->getLocation();
676 if (!(*i)->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000677 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000678 diag::err_constexpr_non_literal_param,
679 ArgIndex+1, PD->getSourceRange(),
680 isa<CXXConstructorDecl>(FD)))
Richard Smith9f569cc2011-10-01 02:31:28 +0000681 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000682 }
Joao Matos17d35c32012-08-31 22:18:20 +0000683 return true;
684}
685
686/// \brief Get diagnostic %select index for tag kind for
687/// record diagnostic message.
688/// WARNING: Indexes apply to particular diagnostics only!
689///
690/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +0000691static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matos17d35c32012-08-31 22:18:20 +0000692 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +0000693 case TTK_Struct: return 0;
694 case TTK_Interface: return 1;
695 case TTK_Class: return 2;
696 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matos17d35c32012-08-31 22:18:20 +0000697 }
Joao Matos17d35c32012-08-31 22:18:20 +0000698}
699
700// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
701// the requirements of a constexpr function definition or a constexpr
702// constructor definition. If so, return true. If not, produce appropriate
Richard Smith86c3ae42012-02-13 03:54:03 +0000703// diagnostics and return false.
Richard Smith9f569cc2011-10-01 02:31:28 +0000704//
Richard Smith86c3ae42012-02-13 03:54:03 +0000705// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
706bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith35340502012-01-13 04:54:00 +0000707 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
708 if (MD && MD->isInstance()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000709 // C++11 [dcl.constexpr]p4:
710 // The definition of a constexpr constructor shall satisfy the following
711 // constraints:
Richard Smith9f569cc2011-10-01 02:31:28 +0000712 // - the class shall not have any virtual base classes;
Joao Matos17d35c32012-08-31 22:18:20 +0000713 const CXXRecordDecl *RD = MD->getParent();
714 if (RD->getNumVBases()) {
715 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
716 << isa<CXXConstructorDecl>(NewFD)
717 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
718 for (CXXRecordDecl::base_class_const_iterator I = RD->vbases_begin(),
719 E = RD->vbases_end(); I != E; ++I)
720 Diag(I->getLocStart(),
Richard Smith86c3ae42012-02-13 03:54:03 +0000721 diag::note_constexpr_virtual_base_here) << I->getSourceRange();
Richard Smith9f569cc2011-10-01 02:31:28 +0000722 return false;
723 }
Richard Smith35340502012-01-13 04:54:00 +0000724 }
725
726 if (!isa<CXXConstructorDecl>(NewFD)) {
727 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000728 // The definition of a constexpr function shall satisfy the following
729 // constraints:
730 // - it shall not be virtual;
731 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
732 if (Method && Method->isVirtual()) {
Richard Smith86c3ae42012-02-13 03:54:03 +0000733 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smith9f569cc2011-10-01 02:31:28 +0000734
Richard Smith86c3ae42012-02-13 03:54:03 +0000735 // If it's not obvious why this function is virtual, find an overridden
736 // function which uses the 'virtual' keyword.
737 const CXXMethodDecl *WrittenVirtual = Method;
738 while (!WrittenVirtual->isVirtualAsWritten())
739 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
740 if (WrittenVirtual != Method)
741 Diag(WrittenVirtual->getLocation(),
742 diag::note_overridden_virtual_function);
Richard Smith9f569cc2011-10-01 02:31:28 +0000743 return false;
744 }
745
746 // - its return type shall be a literal type;
747 QualType RT = NewFD->getResultType();
748 if (!RT->isDependentType() &&
Richard Smith86c3ae42012-02-13 03:54:03 +0000749 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregorf502d8e2012-05-04 16:48:41 +0000750 diag::err_constexpr_non_literal_return))
Richard Smith9f569cc2011-10-01 02:31:28 +0000751 return false;
Richard Smith9f569cc2011-10-01 02:31:28 +0000752 }
753
Richard Smith35340502012-01-13 04:54:00 +0000754 // - each of its parameter types shall be a literal type;
Richard Smith86c3ae42012-02-13 03:54:03 +0000755 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith35340502012-01-13 04:54:00 +0000756 return false;
757
Richard Smith9f569cc2011-10-01 02:31:28 +0000758 return true;
759}
760
761/// Check the given declaration statement is legal within a constexpr function
762/// body. C++0x [dcl.constexpr]p3,p4.
763///
764/// \return true if the body is OK, false if we have diagnosed a problem.
765static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
766 DeclStmt *DS) {
767 // C++0x [dcl.constexpr]p3 and p4:
768 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
769 // contain only
770 for (DeclStmt::decl_iterator DclIt = DS->decl_begin(),
771 DclEnd = DS->decl_end(); DclIt != DclEnd; ++DclIt) {
772 switch ((*DclIt)->getKind()) {
773 case Decl::StaticAssert:
774 case Decl::Using:
775 case Decl::UsingShadow:
776 case Decl::UsingDirective:
777 case Decl::UnresolvedUsingTypename:
778 // - static_assert-declarations
779 // - using-declarations,
780 // - using-directives,
781 continue;
782
783 case Decl::Typedef:
784 case Decl::TypeAlias: {
785 // - typedef declarations and alias-declarations that do not define
786 // classes or enumerations,
787 TypedefNameDecl *TN = cast<TypedefNameDecl>(*DclIt);
788 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
789 // Don't allow variably-modified types in constexpr functions.
790 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
791 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
792 << TL.getSourceRange() << TL.getType()
793 << isa<CXXConstructorDecl>(Dcl);
794 return false;
795 }
796 continue;
797 }
798
799 case Decl::Enum:
800 case Decl::CXXRecord:
801 // As an extension, we allow the declaration (but not the definition) of
802 // classes and enumerations in all declarations, not just in typedef and
803 // alias declarations.
804 if (cast<TagDecl>(*DclIt)->isThisDeclarationADefinition()) {
805 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_type_definition)
806 << isa<CXXConstructorDecl>(Dcl);
807 return false;
808 }
809 continue;
810
811 case Decl::Var:
812 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_var_declaration)
813 << isa<CXXConstructorDecl>(Dcl);
814 return false;
815
816 default:
817 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
818 << isa<CXXConstructorDecl>(Dcl);
819 return false;
820 }
821 }
822
823 return true;
824}
825
826/// Check that the given field is initialized within a constexpr constructor.
827///
828/// \param Dcl The constexpr constructor being checked.
829/// \param Field The field being checked. This may be a member of an anonymous
830/// struct or union nested within the class being checked.
831/// \param Inits All declarations, including anonymous struct/union members and
832/// indirect members, for which any initialization was provided.
833/// \param Diagnosed Set to true if an error is produced.
834static void CheckConstexprCtorInitializer(Sema &SemaRef,
835 const FunctionDecl *Dcl,
836 FieldDecl *Field,
837 llvm::SmallSet<Decl*, 16> &Inits,
838 bool &Diagnosed) {
Douglas Gregord61db332011-10-10 17:22:13 +0000839 if (Field->isUnnamedBitfield())
840 return;
Richard Smith30ecfad2012-02-09 06:40:58 +0000841
842 if (Field->isAnonymousStructOrUnion() &&
843 Field->getType()->getAsCXXRecordDecl()->isEmpty())
844 return;
845
Richard Smith9f569cc2011-10-01 02:31:28 +0000846 if (!Inits.count(Field)) {
847 if (!Diagnosed) {
848 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
849 Diagnosed = true;
850 }
851 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
852 } else if (Field->isAnonymousStructOrUnion()) {
853 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
854 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
855 I != E; ++I)
856 // If an anonymous union contains an anonymous struct of which any member
857 // is initialized, all members must be initialized.
David Blaikie581deb32012-06-06 20:45:41 +0000858 if (!RD->isUnion() || Inits.count(*I))
859 CheckConstexprCtorInitializer(SemaRef, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000860 }
861}
862
863/// Check the body for the given constexpr function declaration only contains
864/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
865///
866/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith86c3ae42012-02-13 03:54:03 +0000867bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000868 if (isa<CXXTryStmt>(Body)) {
Richard Smith5ba73e12012-02-04 00:33:54 +0000869 // C++11 [dcl.constexpr]p3:
Richard Smith9f569cc2011-10-01 02:31:28 +0000870 // The definition of a constexpr function shall satisfy the following
871 // constraints: [...]
872 // - its function-body shall be = delete, = default, or a
873 // compound-statement
874 //
Richard Smith5ba73e12012-02-04 00:33:54 +0000875 // C++11 [dcl.constexpr]p4:
Richard Smith9f569cc2011-10-01 02:31:28 +0000876 // In the definition of a constexpr constructor, [...]
877 // - its function-body shall not be a function-try-block;
878 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
879 << isa<CXXConstructorDecl>(Dcl);
880 return false;
881 }
882
883 // - its function-body shall be [...] a compound-statement that contains only
884 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
885
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000886 SmallVector<SourceLocation, 4> ReturnStmts;
Richard Smith9f569cc2011-10-01 02:31:28 +0000887 for (CompoundStmt::body_iterator BodyIt = CompBody->body_begin(),
888 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) {
889 switch ((*BodyIt)->getStmtClass()) {
890 case Stmt::NullStmtClass:
891 // - null statements,
892 continue;
893
894 case Stmt::DeclStmtClass:
895 // - static_assert-declarations
896 // - using-declarations,
897 // - using-directives,
898 // - typedef declarations and alias-declarations that do not define
899 // classes or enumerations,
900 if (!CheckConstexprDeclStmt(*this, Dcl, cast<DeclStmt>(*BodyIt)))
901 return false;
902 continue;
903
904 case Stmt::ReturnStmtClass:
905 // - and exactly one return statement;
906 if (isa<CXXConstructorDecl>(Dcl))
907 break;
908
909 ReturnStmts.push_back((*BodyIt)->getLocStart());
Richard Smith9f569cc2011-10-01 02:31:28 +0000910 continue;
911
912 default:
913 break;
914 }
915
916 Diag((*BodyIt)->getLocStart(), diag::err_constexpr_body_invalid_stmt)
917 << isa<CXXConstructorDecl>(Dcl);
918 return false;
919 }
920
921 if (const CXXConstructorDecl *Constructor
922 = dyn_cast<CXXConstructorDecl>(Dcl)) {
923 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith30ecfad2012-02-09 06:40:58 +0000924 // DR1359:
925 // - every non-variant non-static data member and base class sub-object
926 // shall be initialized;
927 // - if the class is a non-empty union, or for each non-empty anonymous
928 // union member of a non-union class, exactly one non-static data member
929 // shall be initialized;
Richard Smith9f569cc2011-10-01 02:31:28 +0000930 if (RD->isUnion()) {
Richard Smith30ecfad2012-02-09 06:40:58 +0000931 if (Constructor->getNumCtorInitializers() == 0 && !RD->isEmpty()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000932 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
933 return false;
934 }
Richard Smith6e433752011-10-10 16:38:04 +0000935 } else if (!Constructor->isDependentContext() &&
936 !Constructor->isDelegatingConstructor()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000937 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
938
939 // Skip detailed checking if we have enough initializers, and we would
940 // allow at most one initializer per member.
941 bool AnyAnonStructUnionMembers = false;
942 unsigned Fields = 0;
943 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
944 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie262bc182012-04-30 02:36:29 +0000945 if (I->isAnonymousStructOrUnion()) {
Richard Smith9f569cc2011-10-01 02:31:28 +0000946 AnyAnonStructUnionMembers = true;
947 break;
948 }
949 }
950 if (AnyAnonStructUnionMembers ||
951 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
952 // Check initialization of non-static data members. Base classes are
953 // always initialized so do not need to be checked. Dependent bases
954 // might not have initializers in the member initializer list.
955 llvm::SmallSet<Decl*, 16> Inits;
956 for (CXXConstructorDecl::init_const_iterator
957 I = Constructor->init_begin(), E = Constructor->init_end();
958 I != E; ++I) {
959 if (FieldDecl *FD = (*I)->getMember())
960 Inits.insert(FD);
961 else if (IndirectFieldDecl *ID = (*I)->getIndirectMember())
962 Inits.insert(ID->chain_begin(), ID->chain_end());
963 }
964
965 bool Diagnosed = false;
966 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
967 E = RD->field_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +0000968 CheckConstexprCtorInitializer(*this, Dcl, *I, Inits, Diagnosed);
Richard Smith9f569cc2011-10-01 02:31:28 +0000969 if (Diagnosed)
970 return false;
971 }
972 }
Richard Smith9f569cc2011-10-01 02:31:28 +0000973 } else {
974 if (ReturnStmts.empty()) {
975 Diag(Dcl->getLocation(), diag::err_constexpr_body_no_return);
976 return false;
977 }
978 if (ReturnStmts.size() > 1) {
979 Diag(ReturnStmts.back(), diag::err_constexpr_body_multiple_return);
980 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
981 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
982 return false;
983 }
984 }
985
Richard Smith5ba73e12012-02-04 00:33:54 +0000986 // C++11 [dcl.constexpr]p5:
987 // if no function argument values exist such that the function invocation
988 // substitution would produce a constant expression, the program is
989 // ill-formed; no diagnostic required.
990 // C++11 [dcl.constexpr]p3:
991 // - every constructor call and implicit conversion used in initializing the
992 // return value shall be one of those allowed in a constant expression.
993 // C++11 [dcl.constexpr]p4:
994 // - every constructor involved in initializing non-static data members and
995 // base class sub-objects shall be a constexpr constructor.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000996 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith86c3ae42012-02-13 03:54:03 +0000997 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smithafee0ff2012-12-09 05:55:43 +0000998 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
Richard Smith745f5142012-01-27 01:14:48 +0000999 << isa<CXXConstructorDecl>(Dcl);
1000 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1001 Diag(Diags[I].first, Diags[I].second);
Richard Smithafee0ff2012-12-09 05:55:43 +00001002 // Don't return false here: we allow this for compatibility in
1003 // system headers.
Richard Smith745f5142012-01-27 01:14:48 +00001004 }
1005
Richard Smith9f569cc2011-10-01 02:31:28 +00001006 return true;
1007}
1008
Douglas Gregorb48fe382008-10-31 09:07:45 +00001009/// isCurrentClassName - Determine whether the identifier II is the
1010/// name of the class type currently being defined. In the case of
1011/// nested classes, this will only return true if II is the name of
1012/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001013bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1014 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001015 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregorb862b8f2010-01-11 23:29:10 +00001016
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001017 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +00001018 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +00001019 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001020 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1021 } else
1022 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1023
Douglas Gregor6f7a17b2010-02-05 06:12:42 +00001024 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +00001025 return &II == CurDecl->getIdentifier();
1026 else
1027 return false;
1028}
1029
Douglas Gregor229d47a2012-11-10 07:24:09 +00001030/// \brief Determine whether the given class is a base class of the given
1031/// class, including looking at dependent bases.
1032static bool findCircularInheritance(const CXXRecordDecl *Class,
1033 const CXXRecordDecl *Current) {
1034 SmallVector<const CXXRecordDecl*, 8> Queue;
1035
1036 Class = Class->getCanonicalDecl();
1037 while (true) {
1038 for (CXXRecordDecl::base_class_const_iterator I = Current->bases_begin(),
1039 E = Current->bases_end();
1040 I != E; ++I) {
1041 CXXRecordDecl *Base = I->getType()->getAsCXXRecordDecl();
1042 if (!Base)
1043 continue;
1044
1045 Base = Base->getDefinition();
1046 if (!Base)
1047 continue;
1048
1049 if (Base->getCanonicalDecl() == Class)
1050 return true;
1051
1052 Queue.push_back(Base);
1053 }
1054
1055 if (Queue.empty())
1056 return false;
1057
1058 Current = Queue.back();
1059 Queue.pop_back();
1060 }
1061
1062 return false;
Douglas Gregord777e282012-11-10 01:18:17 +00001063}
1064
Mike Stump1eb44332009-09-09 15:08:12 +00001065/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +00001066///
1067/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1068/// and returns NULL otherwise.
1069CXXBaseSpecifier *
1070Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1071 SourceRange SpecifierRange,
1072 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001073 TypeSourceInfo *TInfo,
1074 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +00001075 QualType BaseType = TInfo->getType();
1076
Douglas Gregor2943aed2009-03-03 04:44:36 +00001077 // C++ [class.union]p1:
1078 // A union shall not have base classes.
1079 if (Class->isUnion()) {
1080 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1081 << SpecifierRange;
1082 return 0;
1083 }
1084
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001085 if (EllipsisLoc.isValid() &&
1086 !TInfo->getType()->containsUnexpandedParameterPack()) {
1087 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1088 << TInfo->getTypeLoc().getSourceRange();
1089 EllipsisLoc = SourceLocation();
1090 }
Douglas Gregord777e282012-11-10 01:18:17 +00001091
1092 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1093
1094 if (BaseType->isDependentType()) {
1095 // Make sure that we don't have circular inheritance among our dependent
1096 // bases. For non-dependent bases, the check for completeness below handles
1097 // this.
1098 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1099 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1100 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregor229d47a2012-11-10 07:24:09 +00001101 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregord777e282012-11-10 01:18:17 +00001102 Diag(BaseLoc, diag::err_circular_inheritance)
1103 << BaseType << Context.getTypeDeclType(Class);
1104
1105 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1106 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1107 << BaseType;
1108
1109 return 0;
1110 }
1111 }
1112
Mike Stump1eb44332009-09-09 15:08:12 +00001113 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001114 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001115 Access, TInfo, EllipsisLoc);
Douglas Gregord777e282012-11-10 01:18:17 +00001116 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001117
1118 // Base specifiers must be record types.
1119 if (!BaseType->isRecordType()) {
1120 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
1121 return 0;
1122 }
1123
1124 // C++ [class.union]p1:
1125 // A union shall not be used as a base class.
1126 if (BaseType->isUnionType()) {
1127 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
1128 return 0;
1129 }
1130
1131 // C++ [class.derived]p2:
1132 // The class-name in a base-specifier shall not be an incompletely
1133 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +00001134 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregord10099e2012-05-04 16:32:21 +00001135 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall572fc622010-08-17 07:23:57 +00001136 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001137 return 0;
John McCall572fc622010-08-17 07:23:57 +00001138 }
Douglas Gregor2943aed2009-03-03 04:44:36 +00001139
Eli Friedman1d954f62009-08-15 21:55:26 +00001140 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +00001141 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001142 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +00001143 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +00001144 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +00001145 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
1146 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +00001147
Anders Carlsson1d209272011-03-25 14:55:14 +00001148 // C++ [class]p3:
1149 // If a class is marked final and it appears as a base-type-specifier in
1150 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001151 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +00001152 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
1153 << CXXBaseDecl->getDeclName();
1154 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
1155 << CXXBaseDecl->getDeclName();
1156 return 0;
1157 }
1158
John McCall572fc622010-08-17 07:23:57 +00001159 if (BaseDecl->isInvalidDecl())
1160 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +00001161
1162 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +00001163 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +00001164 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001165 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +00001166}
1167
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001168/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1169/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +00001170/// example:
1171/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001172/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +00001173BaseResult
John McCalld226f652010-08-21 09:40:31 +00001174Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001175 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001176 ParsedType basetype, SourceLocation BaseLoc,
1177 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001178 if (!classdecl)
1179 return true;
1180
Douglas Gregor40808ce2009-03-09 23:48:35 +00001181 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +00001182 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +00001183 if (!Class)
1184 return true;
1185
Nick Lewycky56062202010-07-26 16:56:01 +00001186 TypeSourceInfo *TInfo = 0;
1187 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +00001188
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001189 if (EllipsisLoc.isInvalid() &&
1190 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +00001191 UPPC_BaseType))
1192 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001193
Douglas Gregor2943aed2009-03-03 04:44:36 +00001194 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00001195 Virtual, Access, TInfo,
1196 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +00001197 return BaseSpec;
Douglas Gregor8a50fe02012-07-02 21:00:41 +00001198 else
1199 Class->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001200
Douglas Gregor2943aed2009-03-03 04:44:36 +00001201 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001202}
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001203
Douglas Gregor2943aed2009-03-03 04:44:36 +00001204/// \brief Performs the actual work of attaching the given base class
1205/// specifiers to a C++ class.
1206bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1207 unsigned NumBases) {
1208 if (NumBases == 0)
1209 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001210
1211 // Used to keep track of which base types we have already seen, so
1212 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +00001213 // that the key is always the unqualified canonical type of the base
1214 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001215 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1216
1217 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +00001218 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +00001219 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +00001220 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001221 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +00001222 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +00001223 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer52c16682012-03-05 17:20:04 +00001224
1225 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1226 if (KnownBase) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001227 // C++ [class.mi]p3:
1228 // A class shall not be specified as a direct base class of a
1229 // derived class more than once.
Daniel Dunbar96a00142012-03-09 18:35:03 +00001230 Diag(Bases[idx]->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001231 diag::err_duplicate_base_class)
Benjamin Kramer52c16682012-03-05 17:20:04 +00001232 << KnownBase->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +00001233 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +00001234
1235 // Delete the duplicate base class specifier; we're going to
1236 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001237 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001238
1239 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001240 } else {
1241 // Okay, add this new base class.
Benjamin Kramer52c16682012-03-05 17:20:04 +00001242 KnownBase = Bases[idx];
Douglas Gregor2943aed2009-03-03 04:44:36 +00001243 Bases[NumGoodBases++] = Bases[idx];
John McCalle402e722012-09-25 07:32:39 +00001244 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1245 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1246 if (Class->isInterface() &&
1247 (!RD->isInterface() ||
1248 KnownBase->getAccessSpecifier() != AS_public)) {
1249 // The Microsoft extension __interface does not permit bases that
1250 // are not themselves public interfaces.
1251 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1252 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1253 << RD->getSourceRange();
1254 Invalid = true;
1255 }
1256 if (RD->hasAttr<WeakAttr>())
1257 Class->addAttr(::new (Context) WeakAttr(SourceRange(), Context));
1258 }
Douglas Gregorf8268ae2008-10-22 17:49:05 +00001259 }
1260 }
1261
1262 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +00001263 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +00001264
1265 // Delete the remaining (good) base class specifiers, since their
1266 // data has been copied into the CXXRecordDecl.
1267 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +00001268 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001269
1270 return Invalid;
1271}
1272
1273/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1274/// class, after checking whether there are any duplicate base
1275/// classes.
Richard Trieu90ab75b2011-09-09 03:18:59 +00001276void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +00001277 unsigned NumBases) {
1278 if (!ClassDecl || !Bases || !NumBases)
1279 return;
1280
1281 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +00001282 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +00001283 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +00001284}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001285
John McCall3cb0ebd2010-03-10 03:28:59 +00001286static CXXRecordDecl *GetClassForType(QualType T) {
1287 if (const RecordType *RT = T->getAs<RecordType>())
1288 return cast<CXXRecordDecl>(RT->getDecl());
1289 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
1290 return ICT->getDecl();
1291 else
1292 return 0;
1293}
1294
Douglas Gregora8f32e02009-10-06 17:59:45 +00001295/// \brief Determine whether the type \p Derived is a C++ class that is
1296/// derived from the type \p Base.
1297bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001298 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001299 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +00001300
1301 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1302 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001303 return false;
1304
John McCall3cb0ebd2010-03-10 03:28:59 +00001305 CXXRecordDecl *BaseRD = GetClassForType(Base);
1306 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001307 return false;
1308
John McCall86ff3082010-02-04 22:26:26 +00001309 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1310 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001311}
1312
1313/// \brief Determine whether the type \p Derived is a C++ class that is
1314/// derived from the type \p Base.
1315bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001316 if (!getLangOpts().CPlusPlus)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001317 return false;
1318
John McCall3cb0ebd2010-03-10 03:28:59 +00001319 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
1320 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001321 return false;
1322
John McCall3cb0ebd2010-03-10 03:28:59 +00001323 CXXRecordDecl *BaseRD = GetClassForType(Base);
1324 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +00001325 return false;
1326
Douglas Gregora8f32e02009-10-06 17:59:45 +00001327 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1328}
1329
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001330void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +00001331 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001332 assert(BasePathArray.empty() && "Base path array must be empty!");
1333 assert(Paths.isRecordingPaths() && "Must record paths!");
1334
1335 const CXXBasePath &Path = Paths.front();
1336
1337 // We first go backward and check if we have a virtual base.
1338 // FIXME: It would be better if CXXBasePath had the base specifier for
1339 // the nearest virtual base.
1340 unsigned Start = 0;
1341 for (unsigned I = Path.size(); I != 0; --I) {
1342 if (Path[I - 1].Base->isVirtual()) {
1343 Start = I - 1;
1344 break;
1345 }
1346 }
1347
1348 // Now add all bases.
1349 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +00001350 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001351}
1352
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001353/// \brief Determine whether the given base path includes a virtual
1354/// base class.
John McCallf871d0c2010-08-07 06:22:56 +00001355bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1356 for (CXXCastPath::const_iterator B = BasePath.begin(),
1357 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00001358 B != BEnd; ++B)
1359 if ((*B)->isVirtual())
1360 return true;
1361
1362 return false;
1363}
1364
Douglas Gregora8f32e02009-10-06 17:59:45 +00001365/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1366/// conversion (where Derived and Base are class types) is
1367/// well-formed, meaning that the conversion is unambiguous (and
1368/// that all of the base classes are accessible). Returns true
1369/// and emits a diagnostic if the code is ill-formed, returns false
1370/// otherwise. Loc is the location where this routine should point to
1371/// if there is an error, and Range is the source range to highlight
1372/// if there is an error.
1373bool
1374Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +00001375 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001376 unsigned AmbigiousBaseConvID,
1377 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001378 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +00001379 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001380 // First, determine whether the path from Derived to Base is
1381 // ambiguous. This is slightly more expensive than checking whether
1382 // the Derived to Base conversion exists, because here we need to
1383 // explore multiple paths to determine if there is an ambiguity.
1384 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1385 /*DetectVirtual=*/false);
1386 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1387 assert(DerivationOkay &&
1388 "Can only be used with a derived-to-base conversion");
1389 (void)DerivationOkay;
1390
1391 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001392 if (InaccessibleBaseID) {
1393 // Check that the base class can be accessed.
1394 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1395 InaccessibleBaseID)) {
1396 case AR_inaccessible:
1397 return true;
1398 case AR_accessible:
1399 case AR_dependent:
1400 case AR_delayed:
1401 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +00001402 }
John McCall6b2accb2010-02-10 09:31:12 +00001403 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00001404
1405 // Build a base path if necessary.
1406 if (BasePath)
1407 BuildBasePathArray(Paths, *BasePath);
1408 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +00001409 }
1410
1411 // We know that the derived-to-base conversion is ambiguous, and
1412 // we're going to produce a diagnostic. Perform the derived-to-base
1413 // search just one more time to compute all of the possible paths so
1414 // that we can print them out. This is more expensive than any of
1415 // the previous derived-to-base checks we've done, but at this point
1416 // performance isn't as much of an issue.
1417 Paths.clear();
1418 Paths.setRecordingPaths(true);
1419 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1420 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1421 (void)StillOkay;
1422
1423 // Build up a textual representation of the ambiguous paths, e.g.,
1424 // D -> B -> A, that will be used to illustrate the ambiguous
1425 // conversions in the diagnostic. We only print one of the paths
1426 // to each base class subobject.
1427 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1428
1429 Diag(Loc, AmbigiousBaseConvID)
1430 << Derived << Base << PathDisplayStr << Range << Name;
1431 return true;
1432}
1433
1434bool
1435Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001436 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +00001437 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001438 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001439 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +00001440 IgnoreAccess ? 0
1441 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +00001442 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +00001443 Loc, Range, DeclarationName(),
1444 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +00001445}
1446
1447
1448/// @brief Builds a string representing ambiguous paths from a
1449/// specific derived class to different subobjects of the same base
1450/// class.
1451///
1452/// This function builds a string that can be used in error messages
1453/// to show the different paths that one can take through the
1454/// inheritance hierarchy to go from the derived class to different
1455/// subobjects of a base class. The result looks something like this:
1456/// @code
1457/// struct D -> struct B -> struct A
1458/// struct D -> struct C -> struct A
1459/// @endcode
1460std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1461 std::string PathDisplayStr;
1462 std::set<unsigned> DisplayedPaths;
1463 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1464 Path != Paths.end(); ++Path) {
1465 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1466 // We haven't displayed a path to this particular base
1467 // class subobject yet.
1468 PathDisplayStr += "\n ";
1469 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1470 for (CXXBasePath::const_iterator Element = Path->begin();
1471 Element != Path->end(); ++Element)
1472 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1473 }
1474 }
1475
1476 return PathDisplayStr;
1477}
1478
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001479//===----------------------------------------------------------------------===//
1480// C++ class member Handling
1481//===----------------------------------------------------------------------===//
1482
Abramo Bagnara6206d532010-06-05 05:09:32 +00001483/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001484bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1485 SourceLocation ASLoc,
1486 SourceLocation ColonLoc,
1487 AttributeList *Attrs) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001488 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +00001489 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +00001490 ASLoc, ColonLoc);
1491 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00001492 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnara6206d532010-06-05 05:09:32 +00001493}
1494
Richard Smitha4b39652012-08-06 03:25:17 +00001495/// CheckOverrideControl - Check C++11 override control semantics.
1496void Sema::CheckOverrideControl(Decl *D) {
Richard Smithcddbc1d2012-09-06 18:32:18 +00001497 if (D->isInvalidDecl())
1498 return;
1499
Chris Lattner5f9e2722011-07-23 10:55:15 +00001500 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001501
Richard Smitha4b39652012-08-06 03:25:17 +00001502 // Do we know which functions this declaration might be overriding?
1503 bool OverridesAreKnown = !MD ||
1504 (!MD->getParent()->hasAnyDependentBases() &&
1505 !MD->getType()->isDependentType());
Anders Carlsson3ffe1832011-01-20 06:33:26 +00001506
Richard Smitha4b39652012-08-06 03:25:17 +00001507 if (!MD || !MD->isVirtual()) {
1508 if (OverridesAreKnown) {
1509 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1510 Diag(OA->getLocation(),
1511 diag::override_keyword_only_allowed_on_virtual_member_functions)
1512 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1513 D->dropAttr<OverrideAttr>();
1514 }
1515 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1516 Diag(FA->getLocation(),
1517 diag::override_keyword_only_allowed_on_virtual_member_functions)
1518 << "final" << FixItHint::CreateRemoval(FA->getLocation());
1519 D->dropAttr<FinalAttr>();
1520 }
1521 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001522 return;
1523 }
Richard Smitha4b39652012-08-06 03:25:17 +00001524
1525 if (!OverridesAreKnown)
1526 return;
1527
1528 // C++11 [class.virtual]p5:
1529 // If a virtual function is marked with the virt-specifier override and
1530 // does not override a member function of a base class, the program is
1531 // ill-formed.
1532 bool HasOverriddenMethods =
1533 MD->begin_overridden_methods() != MD->end_overridden_methods();
1534 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1535 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1536 << MD->getDeclName();
Anders Carlsson9e682d92011-01-20 05:57:14 +00001537}
1538
Richard Smitha4b39652012-08-06 03:25:17 +00001539/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001540/// function overrides a virtual member function marked 'final', according to
Richard Smitha4b39652012-08-06 03:25:17 +00001541/// C++11 [class.virtual]p4.
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001542bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1543 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001544 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +00001545 return false;
1546
1547 Diag(New->getLocation(), diag::err_final_function_overridden)
1548 << New->getDeclName();
1549 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1550 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +00001551}
1552
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001553static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0b8220a2012-08-07 21:30:42 +00001554 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1555 // FIXME: Destruction of ObjC lifetime types has side-effects.
1556 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1557 return !RD->isCompleteDefinition() ||
1558 !RD->hasTrivialDefaultConstructor() ||
1559 !RD->hasTrivialDestructor();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001560 return false;
1561}
1562
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001563/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1564/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith7a614d82011-06-11 17:19:42 +00001565/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smithca523302012-06-10 03:12:00 +00001566/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1567/// present (but parsing it has been deferred).
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00001568NamedDecl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001569Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +00001570 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieuf81e5a92011-09-09 02:00:50 +00001571 Expr *BW, const VirtSpecifiers &VS,
Richard Smithca523302012-06-10 03:12:00 +00001572 InClassInitStyle InitStyle) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001573 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00001574 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1575 DeclarationName Name = NameInfo.getName();
1576 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001577
1578 // For anonymous bitfields, the location should point to the type.
1579 if (Loc.isInvalid())
Daniel Dunbar96a00142012-03-09 18:35:03 +00001580 Loc = D.getLocStart();
Douglas Gregor90ba6d52010-11-09 03:31:16 +00001581
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001582 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001583
John McCall4bde1e12010-06-04 08:34:12 +00001584 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +00001585 assert(!DS.isFriendSpecified());
1586
Richard Smith1ab0d902011-06-25 02:28:38 +00001587 bool isFunc = D.isDeclarationOfFunction();
John McCall4bde1e12010-06-04 08:34:12 +00001588
John McCalle402e722012-09-25 07:32:39 +00001589 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1590 // The Microsoft extension __interface only permits public member functions
1591 // and prohibits constructors, destructors, operators, non-public member
1592 // functions, static methods and data members.
1593 unsigned InvalidDecl;
1594 bool ShowDeclName = true;
1595 if (!isFunc)
1596 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1597 else if (AS != AS_public)
1598 InvalidDecl = 2;
1599 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1600 InvalidDecl = 3;
1601 else switch (Name.getNameKind()) {
1602 case DeclarationName::CXXConstructorName:
1603 InvalidDecl = 4;
1604 ShowDeclName = false;
1605 break;
1606
1607 case DeclarationName::CXXDestructorName:
1608 InvalidDecl = 5;
1609 ShowDeclName = false;
1610 break;
1611
1612 case DeclarationName::CXXOperatorName:
1613 case DeclarationName::CXXConversionFunctionName:
1614 InvalidDecl = 6;
1615 break;
1616
1617 default:
1618 InvalidDecl = 0;
1619 break;
1620 }
1621
1622 if (InvalidDecl) {
1623 if (ShowDeclName)
1624 Diag(Loc, diag::err_invalid_member_in_interface)
1625 << (InvalidDecl-1) << Name;
1626 else
1627 Diag(Loc, diag::err_invalid_member_in_interface)
1628 << (InvalidDecl-1) << "";
1629 return 0;
1630 }
1631 }
1632
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001633 // C++ 9.2p6: A member shall not be declared to have automatic storage
1634 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001635 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1636 // data members and cannot be applied to names declared const or static,
1637 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001638 switch (DS.getStorageClassSpec()) {
1639 case DeclSpec::SCS_unspecified:
1640 case DeclSpec::SCS_typedef:
1641 case DeclSpec::SCS_static:
1642 // FALL THROUGH.
1643 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001644 case DeclSpec::SCS_mutable:
1645 if (isFunc) {
1646 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001647 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001648 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001649 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001650
Sebastian Redla11f42f2008-11-17 23:24:37 +00001651 // FIXME: It would be nicer if the keyword was ignored only for this
1652 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001653 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001654 }
1655 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001656 default:
1657 if (DS.getStorageClassSpecLoc().isValid())
1658 Diag(DS.getStorageClassSpecLoc(),
1659 diag::err_storageclass_invalid_for_member);
1660 else
1661 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1662 D.getMutableDeclSpec().ClearStorageClassSpecs();
1663 }
1664
Sebastian Redl669d5d72008-11-14 23:42:31 +00001665 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1666 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001667 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001668
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00001669 NamedDecl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001670 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001671 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorb5a01872011-10-09 18:55:59 +00001672
1673 // Data members must have identifiers for names.
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001674 if (!Name.isIdentifier()) {
Douglas Gregorb5a01872011-10-09 18:55:59 +00001675 Diag(Loc, diag::err_bad_variable_name)
1676 << Name;
1677 return 0;
1678 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001679
Benjamin Kramerc1aa40c2012-05-19 16:34:46 +00001680 IdentifierInfo *II = Name.getAsIdentifierInfo();
1681
Douglas Gregorf2503652011-09-21 14:40:46 +00001682 // Member field could not be with "template" keyword.
1683 // So TemplateParameterLists should be empty in this case.
1684 if (TemplateParameterLists.size()) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001685 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregorf2503652011-09-21 14:40:46 +00001686 if (TemplateParams->size()) {
1687 // There is no such thing as a member field template.
1688 Diag(D.getIdentifierLoc(), diag::err_template_member)
1689 << II
1690 << SourceRange(TemplateParams->getTemplateLoc(),
1691 TemplateParams->getRAngleLoc());
1692 } else {
1693 // There is an extraneous 'template<>' for this member.
1694 Diag(TemplateParams->getTemplateLoc(),
1695 diag::err_template_member_noparams)
1696 << II
1697 << SourceRange(TemplateParams->getTemplateLoc(),
1698 TemplateParams->getRAngleLoc());
1699 }
1700 return 0;
1701 }
1702
Douglas Gregor922fff22010-10-13 22:19:53 +00001703 if (SS.isSet() && !SS.isInvalid()) {
1704 // The user provided a superfluous scope specifier inside a class
1705 // definition:
1706 //
1707 // class X {
1708 // int X::member;
1709 // };
Douglas Gregor69605872012-03-28 16:01:27 +00001710 if (DeclContext *DC = computeDeclContext(SS, false))
1711 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregor922fff22010-10-13 22:19:53 +00001712 else
1713 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1714 << Name << SS.getRange();
Douglas Gregor5d8419c2011-11-01 22:13:30 +00001715
Douglas Gregor922fff22010-10-13 22:19:53 +00001716 SS.clear();
1717 }
Douglas Gregorf2503652011-09-21 14:40:46 +00001718
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001719 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
Richard Smithca523302012-06-10 03:12:00 +00001720 InitStyle, AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001721 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001722 } else {
Richard Smithca523302012-06-10 03:12:00 +00001723 assert(InitStyle == ICIS_NoInit);
Richard Smith7a614d82011-06-11 17:19:42 +00001724
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00001725 Member = HandleDeclarator(S, D, TemplateParameterLists);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001726 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001727 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001728 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001729
1730 // Non-instance-fields can't have a bitfield.
1731 if (BitWidth) {
1732 if (Member->isInvalidDecl()) {
1733 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001734 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001735 // C++ 9.6p3: A bit-field shall not be a static member.
1736 // "static member 'A' cannot be a bit-field"
1737 Diag(Loc, diag::err_static_not_bitfield)
1738 << Name << BitWidth->getSourceRange();
1739 } else if (isa<TypedefDecl>(Member)) {
1740 // "typedef member 'x' cannot be a bit-field"
1741 Diag(Loc, diag::err_typedef_not_bitfield)
1742 << Name << BitWidth->getSourceRange();
1743 } else {
1744 // A function typedef ("typedef int f(); f a;").
1745 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1746 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001747 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001748 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001749 }
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Chris Lattner8b963ef2009-03-05 23:01:03 +00001751 BitWidth = 0;
1752 Member->setInvalidDecl();
1753 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001754
1755 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001756
Douglas Gregor37b372b2009-08-20 22:52:58 +00001757 // If we have declared a member function template, set the access of the
1758 // templated declaration as well.
1759 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1760 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001761 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001762
Richard Smitha4b39652012-08-06 03:25:17 +00001763 if (VS.isOverrideSpecified())
1764 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
1765 if (VS.isFinalSpecified())
1766 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson9e682d92011-01-20 05:57:14 +00001767
Douglas Gregorf5251602011-03-08 17:10:18 +00001768 if (VS.getLastLocation().isValid()) {
1769 // Update the end location of a method that has a virt-specifiers.
1770 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1771 MD->setRangeEnd(VS.getLastLocation());
1772 }
Richard Smitha4b39652012-08-06 03:25:17 +00001773
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001774 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001775
Douglas Gregor10bd3682008-11-17 22:58:34 +00001776 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001777
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001778 if (isInstField) {
1779 FieldDecl *FD = cast<FieldDecl>(Member);
1780 FieldCollector->Add(FD);
1781
1782 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
1783 FD->getLocation())
1784 != DiagnosticsEngine::Ignored) {
1785 // Remember all explicit private FieldDecls that have a name, no side
1786 // effects and are not part of a dependent type declaration.
1787 if (!FD->isImplicit() && FD->getDeclName() &&
1788 FD->getAccess() == AS_private &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001789 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0b8220a2012-08-07 21:30:42 +00001790 !FD->getParent()->isDependentContext() &&
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00001791 !InitializationHasSideEffects(*FD))
1792 UnusedPrivateFields.insert(FD);
1793 }
1794 }
1795
John McCalld226f652010-08-21 09:40:31 +00001796 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001797}
1798
Hans Wennborg471f9852012-09-18 15:58:06 +00001799namespace {
1800 class UninitializedFieldVisitor
1801 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
1802 Sema &S;
1803 ValueDecl *VD;
1804 public:
1805 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
1806 UninitializedFieldVisitor(Sema &S, ValueDecl *VD) : Inherited(S.Context),
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001807 S(S) {
1808 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(VD))
1809 this->VD = IFD->getAnonField();
1810 else
1811 this->VD = VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001812 }
1813
1814 void HandleExpr(Expr *E) {
1815 if (!E) return;
1816
1817 // Expressions like x(x) sometimes lack the surrounding expressions
1818 // but need to be checked anyways.
1819 HandleValue(E);
1820 Visit(E);
1821 }
1822
1823 void HandleValue(Expr *E) {
1824 E = E->IgnoreParens();
1825
1826 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
1827 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001828 return;
1829
1830 // FieldME is the inner-most MemberExpr that is not an anonymous struct
1831 // or union.
1832 MemberExpr *FieldME = ME;
1833
Hans Wennborg471f9852012-09-18 15:58:06 +00001834 Expr *Base = E;
1835 while (isa<MemberExpr>(Base)) {
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001836 ME = cast<MemberExpr>(Base);
1837
1838 if (isa<VarDecl>(ME->getMemberDecl()))
1839 return;
1840
1841 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
1842 if (!FD->isAnonymousStructOrUnion())
1843 FieldME = ME;
1844
Hans Wennborg471f9852012-09-18 15:58:06 +00001845 Base = ME->getBase();
1846 }
1847
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001848 if (VD == FieldME->getMemberDecl() && isa<CXXThisExpr>(Base)) {
Hans Wennborg471f9852012-09-18 15:58:06 +00001849 unsigned diag = VD->getType()->isReferenceType()
1850 ? diag::warn_reference_field_is_uninit
1851 : diag::warn_field_is_uninit;
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001852 S.Diag(FieldME->getExprLoc(), diag) << VD;
Hans Wennborg471f9852012-09-18 15:58:06 +00001853 }
Nick Lewycky621ba4f2012-11-15 08:19:20 +00001854 return;
Hans Wennborg471f9852012-09-18 15:58:06 +00001855 }
1856
1857 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1858 HandleValue(CO->getTrueExpr());
1859 HandleValue(CO->getFalseExpr());
1860 return;
1861 }
1862
1863 if (BinaryConditionalOperator *BCO =
1864 dyn_cast<BinaryConditionalOperator>(E)) {
1865 HandleValue(BCO->getCommon());
1866 HandleValue(BCO->getFalseExpr());
1867 return;
1868 }
1869
1870 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
1871 switch (BO->getOpcode()) {
1872 default:
1873 return;
1874 case(BO_PtrMemD):
1875 case(BO_PtrMemI):
1876 HandleValue(BO->getLHS());
1877 return;
1878 case(BO_Comma):
1879 HandleValue(BO->getRHS());
1880 return;
1881 }
1882 }
1883 }
1884
1885 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
1886 if (E->getCastKind() == CK_LValueToRValue)
1887 HandleValue(E->getSubExpr());
1888
1889 Inherited::VisitImplicitCastExpr(E);
1890 }
1891
1892 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
1893 Expr *Callee = E->getCallee();
1894 if (isa<MemberExpr>(Callee))
1895 HandleValue(Callee);
1896
1897 Inherited::VisitCXXMemberCallExpr(E);
1898 }
1899 };
1900 static void CheckInitExprContainsUninitializedFields(Sema &S, Expr *E,
1901 ValueDecl *VD) {
1902 UninitializedFieldVisitor(S, VD).HandleExpr(E);
1903 }
1904} // namespace
1905
Richard Smith7a614d82011-06-11 17:19:42 +00001906/// ActOnCXXInClassMemberInitializer - This is invoked after parsing an
Richard Smith0ff6f8f2011-07-20 00:12:52 +00001907/// in-class initializer for a non-static C++ class member, and after
1908/// instantiating an in-class initializer in a class template. Such actions
1909/// are deferred until the class is complete.
Richard Smith7a614d82011-06-11 17:19:42 +00001910void
Richard Smithca523302012-06-10 03:12:00 +00001911Sema::ActOnCXXInClassMemberInitializer(Decl *D, SourceLocation InitLoc,
Richard Smith7a614d82011-06-11 17:19:42 +00001912 Expr *InitExpr) {
1913 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smithca523302012-06-10 03:12:00 +00001914 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
1915 "must set init style when field is created");
Richard Smith7a614d82011-06-11 17:19:42 +00001916
1917 if (!InitExpr) {
1918 FD->setInvalidDecl();
1919 FD->removeInClassInitializer();
1920 return;
1921 }
1922
Peter Collingbournefef21892011-10-23 18:59:44 +00001923 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
1924 FD->setInvalidDecl();
1925 FD->removeInClassInitializer();
1926 return;
1927 }
1928
Hans Wennborg471f9852012-09-18 15:58:06 +00001929 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, InitLoc)
1930 != DiagnosticsEngine::Ignored) {
1931 CheckInitExprContainsUninitializedFields(*this, InitExpr, FD);
1932 }
1933
Richard Smith7a614d82011-06-11 17:19:42 +00001934 ExprResult Init = InitExpr;
Richard Smithc83c2302012-12-19 01:39:02 +00001935 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redl772291a2012-02-19 16:31:05 +00001936 if (isa<InitListExpr>(InitExpr) && isStdInitializerList(FD->getType(), 0)) {
Sebastian Redl33deb352012-02-22 10:50:08 +00001937 Diag(FD->getLocation(), diag::warn_dangling_std_initializer_list)
Sebastian Redl772291a2012-02-19 16:31:05 +00001938 << /*at end of ctor*/1 << InitExpr->getSourceRange();
1939 }
Sebastian Redl33deb352012-02-22 10:50:08 +00001940 Expr **Inits = &InitExpr;
1941 unsigned NumInits = 1;
1942 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smithca523302012-06-10 03:12:00 +00001943 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redl33deb352012-02-22 10:50:08 +00001944 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smithca523302012-06-10 03:12:00 +00001945 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Sebastian Redl33deb352012-02-22 10:50:08 +00001946 InitializationSequence Seq(*this, Entity, Kind, Inits, NumInits);
1947 Init = Seq.Perform(*this, Entity, Kind, MultiExprArg(Inits, NumInits));
Richard Smith7a614d82011-06-11 17:19:42 +00001948 if (Init.isInvalid()) {
1949 FD->setInvalidDecl();
1950 return;
1951 }
Richard Smith7a614d82011-06-11 17:19:42 +00001952 }
1953
Richard Smith41956372013-01-14 22:39:08 +00001954 // C++11 [class.base.init]p7:
Richard Smith7a614d82011-06-11 17:19:42 +00001955 // The initialization of each base and member constitutes a
1956 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00001957 Init = ActOnFinishFullExpr(Init.take(), InitLoc);
Richard Smith7a614d82011-06-11 17:19:42 +00001958 if (Init.isInvalid()) {
1959 FD->setInvalidDecl();
1960 return;
1961 }
1962
1963 InitExpr = Init.release();
1964
1965 FD->setInClassInitializer(InitExpr);
1966}
1967
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001968/// \brief Find the direct and/or virtual base specifiers that
1969/// correspond to the given base type, for use in base initialization
1970/// within a constructor.
1971static bool FindBaseInitializer(Sema &SemaRef,
1972 CXXRecordDecl *ClassDecl,
1973 QualType BaseType,
1974 const CXXBaseSpecifier *&DirectBaseSpec,
1975 const CXXBaseSpecifier *&VirtualBaseSpec) {
1976 // First, check for a direct base class.
1977 DirectBaseSpec = 0;
1978 for (CXXRecordDecl::base_class_const_iterator Base
1979 = ClassDecl->bases_begin();
1980 Base != ClassDecl->bases_end(); ++Base) {
1981 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1982 // We found a direct base of this type. That's what we're
1983 // initializing.
1984 DirectBaseSpec = &*Base;
1985 break;
1986 }
1987 }
1988
1989 // Check for a virtual base class.
1990 // FIXME: We might be able to short-circuit this if we know in advance that
1991 // there are no virtual bases.
1992 VirtualBaseSpec = 0;
1993 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1994 // We haven't found a base yet; search the class hierarchy for a
1995 // virtual base class.
1996 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1997 /*DetectVirtual=*/false);
1998 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1999 BaseType, Paths)) {
2000 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2001 Path != Paths.end(); ++Path) {
2002 if (Path->back().Base->isVirtual()) {
2003 VirtualBaseSpec = Path->back().Base;
2004 break;
2005 }
2006 }
2007 }
2008 }
2009
2010 return DirectBaseSpec || VirtualBaseSpec;
2011}
2012
Sebastian Redl6df65482011-09-24 17:48:25 +00002013/// \brief Handle a C++ member initializer using braced-init-list syntax.
2014MemInitResult
2015Sema::ActOnMemInitializer(Decl *ConstructorD,
2016 Scope *S,
2017 CXXScopeSpec &SS,
2018 IdentifierInfo *MemberOrBase,
2019 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002020 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002021 SourceLocation IdLoc,
2022 Expr *InitList,
2023 SourceLocation EllipsisLoc) {
2024 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002025 DS, IdLoc, InitList,
David Blaikief2116622012-01-24 06:03:59 +00002026 EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002027}
2028
2029/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallf312b1e2010-08-26 23:41:50 +00002030MemInitResult
John McCalld226f652010-08-21 09:40:31 +00002031Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002032 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00002033 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002034 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00002035 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002036 const DeclSpec &DS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00002037 SourceLocation IdLoc,
2038 SourceLocation LParenLoc,
Richard Trieuf81e5a92011-09-09 02:00:50 +00002039 Expr **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002040 SourceLocation RParenLoc,
2041 SourceLocation EllipsisLoc) {
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00002042 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
2043 llvm::makeArrayRef(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002044 RParenLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002045 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002046 DS, IdLoc, List, EllipsisLoc);
Sebastian Redl6df65482011-09-24 17:48:25 +00002047}
2048
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002049namespace {
2050
Kaelyn Uhraindc98cd02012-01-11 21:17:51 +00002051// Callback to only accept typo corrections that can be a valid C++ member
2052// intializer: either a non-static field member or a base class.
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002053class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
2054 public:
2055 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2056 : ClassDecl(ClassDecl) {}
2057
2058 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
2059 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2060 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2061 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
2062 else
2063 return isa<TypeDecl>(ND);
2064 }
2065 return false;
2066 }
2067
2068 private:
2069 CXXRecordDecl *ClassDecl;
2070};
2071
2072}
2073
Sebastian Redl6df65482011-09-24 17:48:25 +00002074/// \brief Handle a C++ member initializer.
2075MemInitResult
2076Sema::BuildMemInitializer(Decl *ConstructorD,
2077 Scope *S,
2078 CXXScopeSpec &SS,
2079 IdentifierInfo *MemberOrBase,
2080 ParsedType TemplateTypeTy,
David Blaikief2116622012-01-24 06:03:59 +00002081 const DeclSpec &DS,
Sebastian Redl6df65482011-09-24 17:48:25 +00002082 SourceLocation IdLoc,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002083 Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002084 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002085 if (!ConstructorD)
2086 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002087
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002088 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00002089
2090 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002091 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002092 if (!Constructor) {
2093 // The user wrote a constructor initializer on a function that is
2094 // not a C++ constructor. Ignore the error for now, because we may
2095 // have more member initializers coming; we'll diagnose it just
2096 // once in ActOnMemInitializers.
2097 return true;
2098 }
2099
2100 CXXRecordDecl *ClassDecl = Constructor->getParent();
2101
2102 // C++ [class.base.init]p2:
2103 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00002104 // constructor's class and, if not found in that scope, are looked
2105 // up in the scope containing the constructor's definition.
2106 // [Note: if the constructor's class contains a member with the
2107 // same name as a direct or virtual base class of the class, a
2108 // mem-initializer-id naming the member or base class and composed
2109 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00002110 // mem-initializer-id for the hidden base class may be specified
2111 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00002112 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002113 // Look for a member, first.
Mike Stump1eb44332009-09-09 15:08:12 +00002114 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00002115 = ClassDecl->lookup(MemberOrBase);
David Blaikie3bc93e32012-12-19 00:45:41 +00002116 if (!Result.empty()) {
Peter Collingbournedc69be22011-10-23 18:59:37 +00002117 ValueDecl *Member;
David Blaikie3bc93e32012-12-19 00:45:41 +00002118 if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
2119 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002120 if (EllipsisLoc.isValid())
2121 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002122 << MemberOrBase
2123 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002124
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002125 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002126 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00002127 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002128 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00002129 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00002130 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00002131 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00002132
2133 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00002134 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikief2116622012-01-24 06:03:59 +00002135 } else if (DS.getTypeSpecType() == TST_decltype) {
2136 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCall2b194412009-12-21 10:41:20 +00002137 } else {
2138 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2139 LookupParsedName(R, S, &SS);
2140
2141 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2142 if (!TyD) {
2143 if (R.isAmbiguous()) return true;
2144
John McCallfd225442010-04-09 19:01:14 +00002145 // We don't want access-control diagnostics here.
2146 R.suppressDiagnostics();
2147
Douglas Gregor7a886e12010-01-19 06:46:48 +00002148 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2149 bool NotUnknownSpecialization = false;
2150 DeclContext *DC = computeDeclContext(SS, false);
2151 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2152 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2153
2154 if (!NotUnknownSpecialization) {
2155 // When the scope specifier can refer to a member of an unknown
2156 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00002157 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2158 SS.getWithLocInContext(Context),
2159 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00002160 if (BaseType.isNull())
2161 return true;
2162
Douglas Gregor7a886e12010-01-19 06:46:48 +00002163 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00002164 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002165 }
2166 }
2167
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002168 // If no results were found, try to correct typos.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002169 TypoCorrection Corr;
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002170 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002171 if (R.empty() && BaseType.isNull() &&
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002172 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00002173 Validator, ClassDecl))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002174 std::string CorrectedStr(Corr.getAsString(getLangOpts()));
2175 std::string CorrectedQuotedStr(Corr.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002176 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00002177 // We have found a non-static data member with a similar
2178 // name to what was typed; complain and initialize that
2179 // member.
2180 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
2181 << MemberOrBase << true << CorrectedQuotedStr
2182 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
2183 Diag(Member->getLocation(), diag::note_previous_decl)
2184 << CorrectedQuotedStr;
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002185
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002186 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002187 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002188 const CXXBaseSpecifier *DirectBaseSpec;
2189 const CXXBaseSpecifier *VirtualBaseSpec;
2190 if (FindBaseInitializer(*this, ClassDecl,
2191 Context.getTypeDeclType(Type),
2192 DirectBaseSpec, VirtualBaseSpec)) {
2193 // We have found a direct or virtual base class with a
2194 // similar name to what was typed; complain and initialize
2195 // that base class.
2196 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002197 << MemberOrBase << false << CorrectedQuotedStr
2198 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregor0d535c82010-01-07 00:26:25 +00002199
2200 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
2201 : VirtualBaseSpec;
Daniel Dunbar96a00142012-03-09 18:35:03 +00002202 Diag(BaseSpec->getLocStart(),
Douglas Gregor0d535c82010-01-07 00:26:25 +00002203 diag::note_base_class_specified_here)
2204 << BaseSpec->getType()
2205 << BaseSpec->getSourceRange();
2206
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002207 TyD = Type;
2208 }
2209 }
2210 }
2211
Douglas Gregor7a886e12010-01-19 06:46:48 +00002212 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002213 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002214 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregorfe0241e2009-12-31 09:10:24 +00002215 return true;
2216 }
John McCall2b194412009-12-21 10:41:20 +00002217 }
2218
Douglas Gregor7a886e12010-01-19 06:46:48 +00002219 if (BaseType.isNull()) {
2220 BaseType = Context.getTypeDeclType(TyD);
2221 if (SS.isSet()) {
2222 NestedNameSpecifier *Qualifier =
2223 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00002224
Douglas Gregor7a886e12010-01-19 06:46:48 +00002225 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002226 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00002227 }
John McCall2b194412009-12-21 10:41:20 +00002228 }
2229 }
Mike Stump1eb44332009-09-09 15:08:12 +00002230
John McCalla93c9342009-12-07 02:54:59 +00002231 if (!TInfo)
2232 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002233
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002234 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00002235}
2236
Chandler Carruth81c64772011-09-03 01:14:15 +00002237/// Checks a member initializer expression for cases where reference (or
2238/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth81c64772011-09-03 01:14:15 +00002239static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2240 Expr *Init,
2241 SourceLocation IdLoc) {
2242 QualType MemberTy = Member->getType();
2243
2244 // We only handle pointers and references currently.
2245 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2246 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2247 return;
2248
2249 const bool IsPointer = MemberTy->isPointerType();
2250 if (IsPointer) {
2251 if (const UnaryOperator *Op
2252 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2253 // The only case we're worried about with pointers requires taking the
2254 // address.
2255 if (Op->getOpcode() != UO_AddrOf)
2256 return;
2257
2258 Init = Op->getSubExpr();
2259 } else {
2260 // We only handle address-of expression initializers for pointers.
2261 return;
2262 }
2263 }
2264
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002265 if (isa<MaterializeTemporaryExpr>(Init->IgnoreParens())) {
2266 // Taking the address of a temporary will be diagnosed as a hard error.
2267 if (IsPointer)
2268 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002269
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002270 S.Diag(Init->getExprLoc(), diag::warn_bind_ref_member_to_temporary)
2271 << Member << Init->getSourceRange();
2272 } else if (const DeclRefExpr *DRE
2273 = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
2274 // We only warn when referring to a non-reference parameter declaration.
2275 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2276 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth81c64772011-09-03 01:14:15 +00002277 return;
2278
2279 S.Diag(Init->getExprLoc(),
2280 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2281 : diag::warn_bind_ref_member_to_parameter)
2282 << Member << Parameter << Init->getSourceRange();
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002283 } else {
2284 // Other initializers are fine.
2285 return;
Chandler Carruth81c64772011-09-03 01:14:15 +00002286 }
Chandler Carruthbf3380a2011-09-03 02:21:57 +00002287
2288 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2289 << (unsigned)IsPointer;
Chandler Carruth81c64772011-09-03 01:14:15 +00002290}
2291
John McCallf312b1e2010-08-26 23:41:50 +00002292MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002293Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redl6df65482011-09-24 17:48:25 +00002294 SourceLocation IdLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00002295 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2296 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2297 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00002298 "Member must be a FieldDecl or IndirectFieldDecl");
2299
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002300 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbournefef21892011-10-23 18:59:44 +00002301 return true;
2302
Douglas Gregor464b2f02010-11-05 22:21:31 +00002303 if (Member->isInvalidDecl())
2304 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00002305
John McCallb4190042009-11-04 23:02:40 +00002306 // Diagnose value-uses of fields to initialize themselves, e.g.
2307 // foo(foo)
2308 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00002309 // TODO: implement -Wuninitialized and fold this into that framework.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002310 Expr **Args;
2311 unsigned NumArgs;
2312 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2313 Args = ParenList->getExprs();
2314 NumArgs = ParenList->getNumExprs();
Richard Smithc83c2302012-12-19 01:39:02 +00002315 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002316 Args = InitList->getInits();
2317 NumArgs = InitList->getNumInits();
Richard Smithc83c2302012-12-19 01:39:02 +00002318 } else {
2319 // Template instantiation doesn't reconstruct ParenListExprs for us.
2320 Args = &Init;
2321 NumArgs = 1;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002322 }
Daniel Jasperf8cc02e2012-06-06 08:32:04 +00002323
Richard Trieude5e75c2012-06-14 23:11:34 +00002324 if (getDiagnostics().getDiagnosticLevel(diag::warn_field_is_uninit, IdLoc)
2325 != DiagnosticsEngine::Ignored)
2326 for (unsigned i = 0; i < NumArgs; ++i)
2327 // FIXME: Warn about the case when other fields are used before being
Hans Wennborg471f9852012-09-18 15:58:06 +00002328 // initialized. For example, let this field be the i'th field. When
John McCallb4190042009-11-04 23:02:40 +00002329 // initializing the i'th field, throw a warning if any of the >= i'th
2330 // fields are used, as they are not yet initialized.
2331 // Right now we are only handling the case where the i'th field uses
2332 // itself in its initializer.
Hans Wennborg471f9852012-09-18 15:58:06 +00002333 // Also need to take into account that some fields may be initialized by
2334 // in-class initializers, see C++11 [class.base.init]p9.
Richard Trieude5e75c2012-06-14 23:11:34 +00002335 CheckInitExprContainsUninitializedFields(*this, Args[i], Member);
John McCallb4190042009-11-04 23:02:40 +00002336
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002337 SourceRange InitRange = Init->getSourceRange();
Eli Friedman59c04372009-07-29 19:44:27 +00002338
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002339 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002340 // Can't check initialization for a member of dependent type or when
2341 // any of the arguments are type-dependent expressions.
John McCallf85e1932011-06-15 23:02:42 +00002342 DiscardCleanupsInEvaluationContext();
Chandler Carruth894aed92010-12-06 09:23:57 +00002343 } else {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002344 bool InitList = false;
2345 if (isa<InitListExpr>(Init)) {
2346 InitList = true;
2347 Args = &Init;
2348 NumArgs = 1;
Sebastian Redl772291a2012-02-19 16:31:05 +00002349
2350 if (isStdInitializerList(Member->getType(), 0)) {
2351 Diag(IdLoc, diag::warn_dangling_std_initializer_list)
2352 << /*at end of ctor*/1 << InitRange;
2353 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002354 }
2355
Chandler Carruth894aed92010-12-06 09:23:57 +00002356 // Initialize the member.
2357 InitializedEntity MemberEntity =
2358 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
2359 : InitializedEntity::InitializeMember(IndirectMember, 0);
2360 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002361 InitList ? InitializationKind::CreateDirectList(IdLoc)
2362 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2363 InitRange.getEnd());
John McCallb4eb64d2010-10-08 02:01:28 +00002364
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002365 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
2366 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002367 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002368 0);
Chandler Carruth894aed92010-12-06 09:23:57 +00002369 if (MemberInit.isInvalid())
2370 return true;
2371
Richard Smith41956372013-01-14 22:39:08 +00002372 // C++11 [class.base.init]p7:
Chandler Carruth894aed92010-12-06 09:23:57 +00002373 // The initialization of each base and member constitutes a
2374 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002375 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
Chandler Carruth894aed92010-12-06 09:23:57 +00002376 if (MemberInit.isInvalid())
2377 return true;
2378
Richard Smithc83c2302012-12-19 01:39:02 +00002379 Init = MemberInit.get();
2380 CheckForDanglingReferenceOrPointer(*this, Member, Init, IdLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002381 }
2382
Chandler Carruth894aed92010-12-06 09:23:57 +00002383 if (DirectMember) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002384 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2385 InitRange.getBegin(), Init,
2386 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002387 } else {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002388 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2389 InitRange.getBegin(), Init,
2390 InitRange.getEnd());
Chandler Carruth894aed92010-12-06 09:23:57 +00002391 }
Eli Friedman59c04372009-07-29 19:44:27 +00002392}
2393
John McCallf312b1e2010-08-26 23:41:50 +00002394MemInitResult
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002395Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Sean Hunt41717662011-02-26 19:13:13 +00002396 CXXRecordDecl *ClassDecl) {
Douglas Gregor76852c22011-11-01 01:16:03 +00002397 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Richard Smith80ad52f2013-01-02 11:42:31 +00002398 if (!LangOpts.CPlusPlus11)
Douglas Gregor76852c22011-11-01 01:16:03 +00002399 return Diag(NameLoc, diag::err_delegating_ctor)
Sean Hunt97fcc492011-01-08 19:20:43 +00002400 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor76852c22011-11-01 01:16:03 +00002401 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00002402
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002403 bool InitList = true;
2404 Expr **Args = &Init;
2405 unsigned NumArgs = 1;
2406 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2407 InitList = false;
2408 Args = ParenList->getExprs();
2409 NumArgs = ParenList->getNumExprs();
2410 }
2411
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002412 SourceRange InitRange = Init->getSourceRange();
Sean Hunt41717662011-02-26 19:13:13 +00002413 // Initialize the object.
2414 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2415 QualType(ClassDecl->getTypeForDecl(), 0));
2416 InitializationKind Kind =
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002417 InitList ? InitializationKind::CreateDirectList(NameLoc)
2418 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2419 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002420 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
2421 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002422 MultiExprArg(Args, NumArgs),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002423 0);
Sean Hunt41717662011-02-26 19:13:13 +00002424 if (DelegationInit.isInvalid())
2425 return true;
2426
Matt Beaumont-Gay2eb0ce32011-11-01 18:10:22 +00002427 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2428 "Delegating constructor with no target?");
Sean Hunt41717662011-02-26 19:13:13 +00002429
Richard Smith41956372013-01-14 22:39:08 +00002430 // C++11 [class.base.init]p7:
Sean Hunt41717662011-02-26 19:13:13 +00002431 // The initialization of each base and member constitutes a
2432 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002433 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
2434 InitRange.getBegin());
Sean Hunt41717662011-02-26 19:13:13 +00002435 if (DelegationInit.isInvalid())
2436 return true;
2437
Eli Friedmand21016f2012-05-19 23:35:23 +00002438 // If we are in a dependent context, template instantiation will
2439 // perform this type-checking again. Just save the arguments that we
2440 // received in a ParenListExpr.
2441 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2442 // of the information that we have about the base
2443 // initializer. However, deconstructing the ASTs is a dicey process,
2444 // and this approach is far more likely to get the corner cases right.
2445 if (CurContext->isDependentContext())
2446 DelegationInit = Owned(Init);
2447
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002448 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Sean Hunt41717662011-02-26 19:13:13 +00002449 DelegationInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002450 InitRange.getEnd());
Sean Hunt97fcc492011-01-08 19:20:43 +00002451}
2452
2453MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00002454Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002455 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002456 SourceLocation EllipsisLoc) {
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002457 SourceLocation BaseLoc
2458 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redl6df65482011-09-24 17:48:25 +00002459
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002460 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2461 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2462 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2463
2464 // C++ [class.base.init]p2:
2465 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00002466 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002467 // of that class, the mem-initializer is ill-formed. A
2468 // mem-initializer-list can initialize a base class using any
2469 // name that denotes that base class type.
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002470 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002471
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002472 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002473 if (EllipsisLoc.isValid()) {
2474 // This is a pack expansion.
2475 if (!BaseType->containsUnexpandedParameterPack()) {
2476 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002477 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redl6df65482011-09-24 17:48:25 +00002478
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002479 EllipsisLoc = SourceLocation();
2480 }
2481 } else {
2482 // Check for any unexpanded parameter packs.
2483 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2484 return true;
Sebastian Redl6df65482011-09-24 17:48:25 +00002485
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002486 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redl6df65482011-09-24 17:48:25 +00002487 return true;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002488 }
Sebastian Redl6df65482011-09-24 17:48:25 +00002489
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002490 // Check for direct and virtual base classes.
2491 const CXXBaseSpecifier *DirectBaseSpec = 0;
2492 const CXXBaseSpecifier *VirtualBaseSpec = 0;
2493 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00002494 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2495 BaseType))
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002496 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00002497
Douglas Gregor3956b1a2010-06-16 16:03:14 +00002498 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2499 VirtualBaseSpec);
2500
2501 // C++ [base.class.init]p2:
2502 // Unless the mem-initializer-id names a nonstatic data member of the
2503 // constructor's class or a direct or virtual base of that class, the
2504 // mem-initializer is ill-formed.
2505 if (!DirectBaseSpec && !VirtualBaseSpec) {
2506 // If the class has any dependent bases, then it's possible that
2507 // one of those types will resolve to the same type as
2508 // BaseType. Therefore, just treat this as a dependent base
2509 // class initialization. FIXME: Should we try to check the
2510 // initialization anyway? It seems odd.
2511 if (ClassDecl->hasAnyDependentBases())
2512 Dependent = true;
2513 else
2514 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
2515 << BaseType << Context.getTypeDeclType(ClassDecl)
2516 << BaseTInfo->getTypeLoc().getLocalSourceRange();
2517 }
2518 }
2519
2520 if (Dependent) {
John McCallf85e1932011-06-15 23:02:42 +00002521 DiscardCleanupsInEvaluationContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002522
Sebastian Redl6df65482011-09-24 17:48:25 +00002523 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
2524 /*IsVirtual=*/false,
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002525 InitRange.getBegin(), Init,
2526 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002527 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002528
2529 // C++ [base.class.init]p2:
2530 // If a mem-initializer-id is ambiguous because it designates both
2531 // a direct non-virtual base class and an inherited virtual base
2532 // class, the mem-initializer is ill-formed.
2533 if (DirectBaseSpec && VirtualBaseSpec)
2534 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00002535 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002536
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002537 CXXBaseSpecifier *BaseSpec = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002538 if (!BaseSpec)
2539 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
2540
2541 // Initialize the base.
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002542 bool InitList = true;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002543 Expr **Args = &Init;
2544 unsigned NumArgs = 1;
2545 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002546 InitList = false;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002547 Args = ParenList->getExprs();
2548 NumArgs = ParenList->getNumExprs();
2549 }
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00002550
2551 InitializedEntity BaseEntity =
2552 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
2553 InitializationKind Kind =
2554 InitList ? InitializationKind::CreateDirectList(BaseLoc)
2555 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
2556 InitRange.getEnd());
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002557 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
2558 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind,
Benjamin Kramer5354e772012-08-23 23:38:35 +00002559 MultiExprArg(Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002560 if (BaseInit.isInvalid())
2561 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00002562
Richard Smith41956372013-01-14 22:39:08 +00002563 // C++11 [class.base.init]p7:
2564 // The initialization of each base and member constitutes a
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002565 // full-expression.
Richard Smith41956372013-01-14 22:39:08 +00002566 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002567 if (BaseInit.isInvalid())
2568 return true;
2569
2570 // If we are in a dependent context, template instantiation will
2571 // perform this type-checking again. Just save the arguments that we
2572 // received in a ParenListExpr.
2573 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2574 // of the information that we have about the base
2575 // initializer. However, deconstructing the ASTs is a dicey process,
2576 // and this approach is far more likely to get the corner cases right.
Sebastian Redl6df65482011-09-24 17:48:25 +00002577 if (CurContext->isDependentContext())
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002578 BaseInit = Owned(Init);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002579
Sean Huntcbb67482011-01-08 20:30:50 +00002580 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redl6df65482011-09-24 17:48:25 +00002581 BaseSpec->isVirtual(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002582 InitRange.getBegin(),
Sebastian Redl6df65482011-09-24 17:48:25 +00002583 BaseInit.takeAs<Expr>(),
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002584 InitRange.getEnd(), EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00002585}
2586
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002587// Create a static_cast\<T&&>(expr).
2588static Expr *CastForMoving(Sema &SemaRef, Expr *E) {
2589 QualType ExprType = E->getType();
2590 QualType TargetType = SemaRef.Context.getRValueReferenceType(ExprType);
2591 SourceLocation ExprLoc = E->getLocStart();
2592 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
2593 TargetType, ExprLoc);
2594
2595 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
2596 SourceRange(ExprLoc, ExprLoc),
2597 E->getSourceRange()).take();
2598}
2599
Anders Carlssone5ef7402010-04-23 03:10:23 +00002600/// ImplicitInitializerKind - How an implicit base or member initializer should
2601/// initialize its base or member.
2602enum ImplicitInitializerKind {
2603 IIK_Default,
2604 IIK_Copy,
2605 IIK_Move
2606};
2607
Anders Carlssondefefd22010-04-23 02:00:02 +00002608static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002609BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002610 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00002611 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00002612 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00002613 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00002614 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00002615 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
2616 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00002617
John McCall60d7b3a2010-08-24 06:29:42 +00002618 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002619
2620 switch (ImplicitInitKind) {
2621 case IIK_Default: {
2622 InitializationKind InitKind
2623 = InitializationKind::CreateDefault(Constructor->getLocation());
2624 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
Benjamin Kramer5354e772012-08-23 23:38:35 +00002625 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002626 break;
2627 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002628
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002629 case IIK_Move:
Anders Carlssone5ef7402010-04-23 03:10:23 +00002630 case IIK_Copy: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002631 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssone5ef7402010-04-23 03:10:23 +00002632 ParmVarDecl *Param = Constructor->getParamDecl(0);
2633 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedmancf7c14c2012-01-16 21:00:51 +00002634
Anders Carlssone5ef7402010-04-23 03:10:23 +00002635 Expr *CopyCtorArg =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002636 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002637 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002638 Constructor->getLocation(), ParamType,
2639 VK_LValue, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002640
Eli Friedman5f2987c2012-02-02 03:46:19 +00002641 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
2642
Anders Carlssonc7957502010-04-24 22:02:54 +00002643 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00002644 QualType ArgTy =
2645 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
2646 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00002647
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002648 if (Moving) {
2649 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
2650 }
2651
John McCallf871d0c2010-08-07 06:22:56 +00002652 CXXCastPath BasePath;
2653 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00002654 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
2655 CK_UncheckedDerivedToBase,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002656 Moving ? VK_XValue : VK_LValue,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002657 &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00002658
Anders Carlssone5ef7402010-04-23 03:10:23 +00002659 InitializationKind InitKind
2660 = InitializationKind::CreateDirect(Constructor->getLocation(),
2661 SourceLocation(), SourceLocation());
2662 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
2663 &CopyCtorArg, 1);
2664 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00002665 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00002666 break;
2667 }
Anders Carlssone5ef7402010-04-23 03:10:23 +00002668 }
John McCall9ae2f072010-08-23 23:25:46 +00002669
Douglas Gregor53c374f2010-12-07 00:41:46 +00002670 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00002671 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00002672 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00002673
Anders Carlssondefefd22010-04-23 02:00:02 +00002674 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00002675 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00002676 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
2677 SourceLocation()),
2678 BaseSpec->isVirtual(),
2679 SourceLocation(),
2680 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002681 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00002682 SourceLocation());
2683
Anders Carlssondefefd22010-04-23 02:00:02 +00002684 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00002685}
2686
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002687static bool RefersToRValueRef(Expr *MemRef) {
2688 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
2689 return Referenced->getType()->isRValueReferenceType();
2690}
2691
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002692static bool
2693BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002694 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002695 FieldDecl *Field, IndirectFieldDecl *Indirect,
Sean Huntcbb67482011-01-08 20:30:50 +00002696 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00002697 if (Field->isInvalidDecl())
2698 return true;
2699
Chandler Carruthf186b542010-06-29 23:50:44 +00002700 SourceLocation Loc = Constructor->getLocation();
2701
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002702 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
2703 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002704 ParmVarDecl *Param = Constructor->getParamDecl(0);
2705 QualType ParamType = Param->getType().getNonReferenceType();
John McCallb77115d2011-06-17 00:18:42 +00002706
2707 // Suppress copying zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00002708 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
2709 return false;
Douglas Gregorddb21472011-11-02 23:04:16 +00002710
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002711 Expr *MemberExprBase =
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002712 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00002713 SourceLocation(), Param, false,
John McCallf89e55a2010-11-18 06:31:45 +00002714 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002715
Eli Friedman5f2987c2012-02-02 03:46:19 +00002716 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
2717
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002718 if (Moving) {
2719 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
2720 }
2721
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002722 // Build a reference to this field within the parameter.
2723 CXXScopeSpec SS;
2724 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
2725 Sema::LookupMemberName);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002726 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
2727 : cast<ValueDecl>(Field), AS_public);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002728 MemberLookup.resolveKind();
Sebastian Redl74e611a2011-09-04 18:14:28 +00002729 ExprResult CtorArg
John McCall9ae2f072010-08-23 23:25:46 +00002730 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002731 ParamType, Loc,
2732 /*IsArrow=*/false,
2733 SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002734 /*TemplateKWLoc=*/SourceLocation(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002735 /*FirstQualifierInScope=*/0,
2736 MemberLookup,
2737 /*TemplateArgs=*/0);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002738 if (CtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002739 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002740
2741 // C++11 [class.copy]p15:
2742 // - if a member m has rvalue reference type T&&, it is direct-initialized
2743 // with static_cast<T&&>(x.m);
Sebastian Redl74e611a2011-09-04 18:14:28 +00002744 if (RefersToRValueRef(CtorArg.get())) {
2745 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002746 }
2747
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002748 // When the field we are copying is an array, create index variables for
2749 // each dimension of the array. We use these index variables to subscript
2750 // the source array, and other clients (e.g., CodeGen) will perform the
2751 // necessary iteration with these index variables.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002752 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002753 QualType BaseType = Field->getType();
2754 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002755 bool InitializingArray = false;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002756 while (const ConstantArrayType *Array
2757 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002758 InitializingArray = true;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002759 // Create the iteration variable for this array index.
2760 IdentifierInfo *IterationVarName = 0;
2761 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002762 SmallString<8> Str;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002763 llvm::raw_svector_ostream OS(Str);
2764 OS << "__i" << IndexVariables.size();
2765 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
2766 }
2767 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002768 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002769 IterationVarName, SizeType,
2770 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00002771 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002772 IndexVariables.push_back(IterationVar);
2773
2774 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00002775 ExprResult IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00002776 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002777 assert(!IterationVarRef.isInvalid() &&
2778 "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00002779 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.take());
2780 assert(!IterationVarRef.isInvalid() &&
2781 "Conversion of invented variable cannot fail!");
Sebastian Redl74e611a2011-09-04 18:14:28 +00002782
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002783 // Subscript the array with this iteration variable.
Sebastian Redl74e611a2011-09-04 18:14:28 +00002784 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.take(), Loc,
John McCall9ae2f072010-08-23 23:25:46 +00002785 IterationVarRef.take(),
Sebastian Redl74e611a2011-09-04 18:14:28 +00002786 Loc);
2787 if (CtorArg.isInvalid())
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002788 return true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002789
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002790 BaseType = Array->getElementType();
2791 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002792
2793 // The array subscript expression is an lvalue, which is wrong for moving.
2794 if (Moving && InitializingArray)
Sebastian Redl74e611a2011-09-04 18:14:28 +00002795 CtorArg = CastForMoving(SemaRef, CtorArg.take());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002796
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002797 // Construct the entity that we will be initializing. For an array, this
2798 // will be first element in the array, which may require several levels
2799 // of array-subscript entities.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002800 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002801 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002802 if (Indirect)
2803 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
2804 else
2805 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002806 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
2807 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
2808 0,
2809 Entities.back()));
2810
2811 // Direct-initialize to use the copy constructor.
2812 InitializationKind InitKind =
2813 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
2814
Sebastian Redl74e611a2011-09-04 18:14:28 +00002815 Expr *CtorArgE = CtorArg.takeAs<Expr>();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002816 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002817 &CtorArgE, 1);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002818
John McCall60d7b3a2010-08-24 06:29:42 +00002819 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002820 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redl74e611a2011-09-04 18:14:28 +00002821 MultiExprArg(&CtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00002822 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00002823 if (MemberInit.isInvalid())
2824 return true;
2825
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002826 if (Indirect) {
2827 assert(IndexVariables.size() == 0 &&
2828 "Indirect field improperly initialized");
2829 CXXMemberInit
2830 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
2831 Loc, Loc,
2832 MemberInit.takeAs<Expr>(),
2833 Loc);
2834 } else
2835 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
2836 Loc, MemberInit.takeAs<Expr>(),
2837 Loc,
2838 IndexVariables.data(),
2839 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00002840 return false;
2841 }
2842
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002843 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
2844
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002845 QualType FieldBaseElementType =
2846 SemaRef.Context.getBaseElementType(Field->getType());
2847
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002848 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002849 InitializedEntity InitEntity
2850 = Indirect? InitializedEntity::InitializeMember(Indirect)
2851 : InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00002852 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00002853 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002854
2855 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00002856 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00002857 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00002858
Douglas Gregor53c374f2010-12-07 00:41:46 +00002859 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002860 if (MemberInit.isInvalid())
2861 return true;
2862
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002863 if (Indirect)
2864 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2865 Indirect, Loc,
2866 Loc,
2867 MemberInit.get(),
2868 Loc);
2869 else
2870 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
2871 Field, Loc, Loc,
2872 MemberInit.get(),
2873 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002874 return false;
2875 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002876
Sean Hunt1f2f3842011-05-17 00:19:05 +00002877 if (!Field->getParent()->isUnion()) {
2878 if (FieldBaseElementType->isReferenceType()) {
2879 SemaRef.Diag(Constructor->getLocation(),
2880 diag::err_uninitialized_member_in_ctor)
2881 << (int)Constructor->isImplicit()
2882 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2883 << 0 << Field->getDeclName();
2884 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2885 return true;
2886 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002887
Sean Hunt1f2f3842011-05-17 00:19:05 +00002888 if (FieldBaseElementType.isConstQualified()) {
2889 SemaRef.Diag(Constructor->getLocation(),
2890 diag::err_uninitialized_member_in_ctor)
2891 << (int)Constructor->isImplicit()
2892 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2893 << 1 << Field->getDeclName();
2894 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2895 return true;
2896 }
Anders Carlsson114a2972010-04-23 03:07:47 +00002897 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002898
David Blaikie4e4d0842012-03-11 07:00:24 +00002899 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002900 FieldBaseElementType->isObjCRetainableType() &&
2901 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
2902 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor3fe52ff2012-07-23 04:23:39 +00002903 // ARC:
John McCallf85e1932011-06-15 23:02:42 +00002904 // Default-initialize Objective-C pointers to NULL.
2905 CXXMemberInit
2906 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
2907 Loc, Loc,
2908 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
2909 Loc);
2910 return false;
2911 }
2912
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002913 // Nothing to initialize.
2914 CXXMemberInit = 0;
2915 return false;
2916}
John McCallf1860e52010-05-20 23:23:51 +00002917
2918namespace {
2919struct BaseAndFieldInfo {
2920 Sema &S;
2921 CXXConstructorDecl *Ctor;
2922 bool AnyErrorsInInits;
2923 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00002924 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002925 SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00002926
2927 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2928 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002929 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
2930 if (Generated && Ctor->isCopyConstructor())
John McCallf1860e52010-05-20 23:23:51 +00002931 IIK = IIK_Copy;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00002932 else if (Generated && Ctor->isMoveConstructor())
2933 IIK = IIK_Move;
John McCallf1860e52010-05-20 23:23:51 +00002934 else
2935 IIK = IIK_Default;
2936 }
Douglas Gregorf4853882011-11-28 20:03:15 +00002937
2938 bool isImplicitCopyOrMove() const {
2939 switch (IIK) {
2940 case IIK_Copy:
2941 case IIK_Move:
2942 return true;
2943
2944 case IIK_Default:
2945 return false;
2946 }
David Blaikie30263482012-01-20 21:50:17 +00002947
2948 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregorf4853882011-11-28 20:03:15 +00002949 }
Richard Smith0b8220a2012-08-07 21:30:42 +00002950
2951 bool addFieldInitializer(CXXCtorInitializer *Init) {
2952 AllToInit.push_back(Init);
2953
2954 // Check whether this initializer makes the field "used".
2955 if (Init->getInit() && Init->getInit()->HasSideEffects(S.Context))
2956 S.UnusedPrivateFields.remove(Init->getAnyMember());
2957
2958 return false;
2959 }
John McCallf1860e52010-05-20 23:23:51 +00002960};
2961}
2962
Richard Smitha4950662011-09-19 13:34:43 +00002963/// \brief Determine whether the given indirect field declaration is somewhere
2964/// within an anonymous union.
2965static bool isWithinAnonymousUnion(IndirectFieldDecl *F) {
2966 for (IndirectFieldDecl::chain_iterator C = F->chain_begin(),
2967 CEnd = F->chain_end();
2968 C != CEnd; ++C)
2969 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>((*C)->getDeclContext()))
2970 if (Record->isUnion())
2971 return true;
2972
2973 return false;
2974}
2975
Douglas Gregorddb21472011-11-02 23:04:16 +00002976/// \brief Determine whether the given type is an incomplete or zero-lenfgth
2977/// array type.
2978static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
2979 if (T->isIncompleteArrayType())
2980 return true;
2981
2982 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
2983 if (!ArrayT->getSize())
2984 return true;
2985
2986 T = ArrayT->getElementType();
2987 }
2988
2989 return false;
2990}
2991
Richard Smith7a614d82011-06-11 17:19:42 +00002992static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor4dc41c92011-08-10 15:22:55 +00002993 FieldDecl *Field,
2994 IndirectFieldDecl *Indirect = 0) {
John McCallf1860e52010-05-20 23:23:51 +00002995
Chandler Carruthe861c602010-06-30 02:59:29 +00002996 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smith0b8220a2012-08-07 21:30:42 +00002997 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field))
2998 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00002999
Richard Smith0b8220a2012-08-07 21:30:42 +00003000 // C++11 [class.base.init]p8: if the entity is a non-static data member that
Richard Smith7a614d82011-06-11 17:19:42 +00003001 // has a brace-or-equal-initializer, the entity is initialized as specified
3002 // in [dcl.init].
Douglas Gregorf4853882011-11-28 20:03:15 +00003003 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003004 CXXCtorInitializer *Init;
3005 if (Indirect)
3006 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3007 SourceLocation(),
3008 SourceLocation(), 0,
3009 SourceLocation());
3010 else
3011 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3012 SourceLocation(),
3013 SourceLocation(), 0,
3014 SourceLocation());
Richard Smith0b8220a2012-08-07 21:30:42 +00003015 return Info.addFieldInitializer(Init);
Richard Smith7a614d82011-06-11 17:19:42 +00003016 }
3017
Richard Smithc115f632011-09-18 11:14:50 +00003018 // Don't build an implicit initializer for union members if none was
3019 // explicitly specified.
Richard Smitha4950662011-09-19 13:34:43 +00003020 if (Field->getParent()->isUnion() ||
3021 (Indirect && isWithinAnonymousUnion(Indirect)))
Richard Smithc115f632011-09-18 11:14:50 +00003022 return false;
3023
Douglas Gregorddb21472011-11-02 23:04:16 +00003024 // Don't initialize incomplete or zero-length arrays.
3025 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3026 return false;
3027
John McCallf1860e52010-05-20 23:23:51 +00003028 // Don't try to build an implicit initializer if there were semantic
3029 // errors in any of the initializers (and therefore we might be
3030 // missing some that the user actually wrote).
Richard Smith7a614d82011-06-11 17:19:42 +00003031 if (Info.AnyErrorsInInits || Field->isInvalidDecl())
John McCallf1860e52010-05-20 23:23:51 +00003032 return false;
3033
Sean Huntcbb67482011-01-08 20:30:50 +00003034 CXXCtorInitializer *Init = 0;
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003035 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3036 Indirect, Init))
John McCallf1860e52010-05-20 23:23:51 +00003037 return true;
John McCallf1860e52010-05-20 23:23:51 +00003038
Richard Smith0b8220a2012-08-07 21:30:42 +00003039 if (!Init)
3040 return false;
Francois Pichet00eb3f92010-12-04 09:14:42 +00003041
Richard Smith0b8220a2012-08-07 21:30:42 +00003042 return Info.addFieldInitializer(Init);
John McCallf1860e52010-05-20 23:23:51 +00003043}
Sean Hunt059ce0d2011-05-01 07:04:31 +00003044
3045bool
3046Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3047 CXXCtorInitializer *Initializer) {
Sean Huntfe57eef2011-05-04 05:57:24 +00003048 assert(Initializer->isDelegatingInitializer());
Sean Hunt01aacc02011-05-03 20:43:02 +00003049 Constructor->setNumCtorInitializers(1);
3050 CXXCtorInitializer **initializer =
3051 new (Context) CXXCtorInitializer*[1];
3052 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3053 Constructor->setCtorInitializers(initializer);
3054
Sean Huntb76af9c2011-05-03 23:05:34 +00003055 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003056 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Sean Huntb76af9c2011-05-03 23:05:34 +00003057 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3058 }
3059
Sean Huntc1598702011-05-05 00:05:47 +00003060 DelegatingCtorDecls.push_back(Constructor);
Sean Huntfe57eef2011-05-04 05:57:24 +00003061
Sean Hunt059ce0d2011-05-01 07:04:31 +00003062 return false;
3063}
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003064
John McCallb77115d2011-06-17 00:18:42 +00003065bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
3066 CXXCtorInitializer **Initializers,
3067 unsigned NumInitializers,
3068 bool AnyErrors) {
Douglas Gregord836c0d2011-09-22 23:04:35 +00003069 if (Constructor->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003070 // Just store the initializers as written, they will be checked during
3071 // instantiation.
3072 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003073 Constructor->setNumCtorInitializers(NumInitializers);
3074 CXXCtorInitializer **baseOrMemberInitializers =
3075 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003076 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00003077 NumInitializers * sizeof(CXXCtorInitializer*));
3078 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003079 }
Richard Smith54b3ba82012-09-25 00:23:05 +00003080
3081 // Let template instantiation know whether we had errors.
3082 if (AnyErrors)
3083 Constructor->setInvalidDecl();
3084
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003085 return false;
3086 }
3087
John McCallf1860e52010-05-20 23:23:51 +00003088 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00003089
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003090 // We need to build the initializer AST according to order of construction
3091 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00003092 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00003093 if (!ClassDecl)
3094 return true;
3095
Eli Friedman80c30da2009-11-09 19:20:36 +00003096 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003097
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003098 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003099 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003100
3101 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00003102 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003103 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00003104 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003105 }
3106
Anders Carlsson711f34a2010-04-21 19:52:01 +00003107 // Keep track of the direct virtual bases.
3108 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
3109 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
3110 E = ClassDecl->bases_end(); I != E; ++I) {
3111 if (I->isVirtual())
3112 DirectVBases.insert(I);
3113 }
3114
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003115 // Push virtual bases before others.
3116 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3117 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
3118
Sean Huntcbb67482011-01-08 20:30:50 +00003119 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003120 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
3121 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003122 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00003123 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00003124 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003125 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003126 VBase, IsInheritedVirtualBase,
3127 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003128 HadError = true;
3129 continue;
3130 }
Anders Carlsson84688f22010-04-20 23:11:20 +00003131
John McCallf1860e52010-05-20 23:23:51 +00003132 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003133 }
3134 }
Mike Stump1eb44332009-09-09 15:08:12 +00003135
John McCallf1860e52010-05-20 23:23:51 +00003136 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003137 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3138 E = ClassDecl->bases_end(); Base != E; ++Base) {
3139 // Virtuals are in the virtual base list and already constructed.
3140 if (Base->isVirtual())
3141 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00003142
Sean Huntcbb67482011-01-08 20:30:50 +00003143 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00003144 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
3145 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003146 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00003147 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00003148 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00003149 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00003150 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003151 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003152 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00003153 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00003154
John McCallf1860e52010-05-20 23:23:51 +00003155 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003156 }
3157 }
Mike Stump1eb44332009-09-09 15:08:12 +00003158
John McCallf1860e52010-05-20 23:23:51 +00003159 // Fields.
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003160 for (DeclContext::decl_iterator Mem = ClassDecl->decls_begin(),
3161 MemEnd = ClassDecl->decls_end();
3162 Mem != MemEnd; ++Mem) {
3163 if (FieldDecl *F = dyn_cast<FieldDecl>(*Mem)) {
Douglas Gregord61db332011-10-10 17:22:13 +00003164 // C++ [class.bit]p2:
3165 // A declaration for a bit-field that omits the identifier declares an
3166 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3167 // initialized.
3168 if (F->isUnnamedBitfield())
3169 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003170
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00003171 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003172 // handle anonymous struct/union fields based on their individual
3173 // indirect fields.
3174 if (F->isAnonymousStructOrUnion() && Info.IIK == IIK_Default)
3175 continue;
3176
3177 if (CollectFieldInitializer(*this, Info, F))
3178 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003179 continue;
3180 }
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003181
3182 // Beyond this point, we only consider default initialization.
3183 if (Info.IIK != IIK_Default)
3184 continue;
3185
3186 if (IndirectFieldDecl *F = dyn_cast<IndirectFieldDecl>(*Mem)) {
3187 if (F->getType()->isIncompleteArrayType()) {
3188 assert(ClassDecl->hasFlexibleArrayMember() &&
3189 "Incomplete array type is not valid");
3190 continue;
3191 }
3192
Douglas Gregor4dc41c92011-08-10 15:22:55 +00003193 // Initialize each field of an anonymous struct individually.
3194 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3195 HadError = true;
3196
3197 continue;
3198 }
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00003199 }
Mike Stump1eb44332009-09-09 15:08:12 +00003200
John McCallf1860e52010-05-20 23:23:51 +00003201 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003202 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00003203 Constructor->setNumCtorInitializers(NumInitializers);
3204 CXXCtorInitializer **baseOrMemberInitializers =
3205 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00003206 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00003207 NumInitializers * sizeof(CXXCtorInitializer*));
3208 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00003209
John McCallef027fe2010-03-16 21:39:52 +00003210 // Constructors implicitly reference the base and member
3211 // destructors.
3212 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3213 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003214 }
Eli Friedman80c30da2009-11-09 19:20:36 +00003215
3216 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00003217}
3218
Eli Friedman6347f422009-07-21 19:28:10 +00003219static void *GetKeyForTopLevelField(FieldDecl *Field) {
3220 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00003221 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00003222 if (RT->getDecl()->isAnonymousStructOrUnion())
3223 return static_cast<void *>(RT->getDecl());
3224 }
3225 return static_cast<void *>(Field);
3226}
3227
Anders Carlssonea356fb2010-04-02 05:42:15 +00003228static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00003229 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00003230}
3231
Anders Carlssonea356fb2010-04-02 05:42:15 +00003232static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00003233 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003234 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00003235 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003236
Eli Friedman6347f422009-07-21 19:28:10 +00003237 // For fields injected into the class via declaration of an anonymous union,
3238 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00003239 FieldDecl *Field = Member->getAnyMember();
3240
John McCall3c3ccdb2010-04-10 09:28:51 +00003241 // If the field is a member of an anonymous struct or union, our key
3242 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003243 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003244 if (RD->isAnonymousStructOrUnion()) {
3245 while (true) {
3246 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
3247 if (Parent->isAnonymousStructOrUnion())
3248 RD = Parent;
3249 else
3250 break;
3251 }
3252
Anders Carlssonee11b2d2010-03-30 16:19:37 +00003253 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00003254 }
Mike Stump1eb44332009-09-09 15:08:12 +00003255
Anders Carlsson8f1a2402010-03-30 15:39:27 +00003256 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00003257}
3258
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003259static void
3260DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00003261 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00003262 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00003263 unsigned NumInits) {
3264 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00003265 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003266
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003267 // Don't check initializers order unless the warning is enabled at the
3268 // location of at least one initializer.
3269 bool ShouldCheckOrder = false;
3270 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003271 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003272 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
3273 Init->getSourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +00003274 != DiagnosticsEngine::Ignored) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00003275 ShouldCheckOrder = true;
3276 break;
3277 }
3278 }
3279 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003280 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003281
John McCalld6ca8da2010-04-10 07:37:23 +00003282 // Build the list of bases and members in the order that they'll
3283 // actually be initialized. The explicit initializers should be in
3284 // this same order but may be missing things.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003285 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00003286
Anders Carlsson071d6102010-04-02 03:38:04 +00003287 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3288
John McCalld6ca8da2010-04-10 07:37:23 +00003289 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003290 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003291 ClassDecl->vbases_begin(),
3292 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00003293 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00003294
John McCalld6ca8da2010-04-10 07:37:23 +00003295 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00003296 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003297 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003298 if (Base->isVirtual())
3299 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00003300 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003301 }
Mike Stump1eb44332009-09-09 15:08:12 +00003302
John McCalld6ca8da2010-04-10 07:37:23 +00003303 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003304 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Douglas Gregord61db332011-10-10 17:22:13 +00003305 E = ClassDecl->field_end(); Field != E; ++Field) {
3306 if (Field->isUnnamedBitfield())
3307 continue;
3308
David Blaikie581deb32012-06-06 20:45:41 +00003309 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Douglas Gregord61db332011-10-10 17:22:13 +00003310 }
3311
John McCalld6ca8da2010-04-10 07:37:23 +00003312 unsigned NumIdealInits = IdealInitKeys.size();
3313 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00003314
Sean Huntcbb67482011-01-08 20:30:50 +00003315 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00003316 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00003317 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00003318 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00003319
3320 // Scan forward to try to find this initializer in the idealized
3321 // initializers list.
3322 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3323 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003324 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003325
3326 // If we didn't find this initializer, it must be because we
3327 // scanned past it on a previous iteration. That can only
3328 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00003329 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00003330 Sema::SemaDiagnosticBuilder D =
3331 SemaRef.Diag(PrevInit->getSourceLocation(),
3332 diag::warn_initializer_out_of_order);
3333
Francois Pichet00eb3f92010-12-04 09:14:42 +00003334 if (PrevInit->isAnyMemberInitializer())
3335 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003336 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003337 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003338
Francois Pichet00eb3f92010-12-04 09:14:42 +00003339 if (Init->isAnyMemberInitializer())
3340 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00003341 else
Douglas Gregor76852c22011-11-01 01:16:03 +00003342 D << 1 << Init->getTypeSourceInfo()->getType();
John McCalld6ca8da2010-04-10 07:37:23 +00003343
3344 // Move back to the initializer's location in the ideal list.
3345 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3346 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00003347 break;
John McCalld6ca8da2010-04-10 07:37:23 +00003348
3349 assert(IdealIndex != NumIdealInits &&
3350 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003351 }
John McCalld6ca8da2010-04-10 07:37:23 +00003352
3353 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00003354 }
Anders Carlssona7b35212009-03-25 02:58:17 +00003355}
3356
John McCall3c3ccdb2010-04-10 09:28:51 +00003357namespace {
3358bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003359 CXXCtorInitializer *Init,
3360 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003361 if (!PrevInit) {
3362 PrevInit = Init;
3363 return false;
3364 }
3365
3366 if (FieldDecl *Field = Init->getMember())
3367 S.Diag(Init->getSourceLocation(),
3368 diag::err_multiple_mem_initialization)
3369 << Field->getDeclName()
3370 << Init->getSourceRange();
3371 else {
John McCallf4c73712011-01-19 06:33:43 +00003372 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00003373 assert(BaseClass && "neither field nor base");
3374 S.Diag(Init->getSourceLocation(),
3375 diag::err_multiple_base_initialization)
3376 << QualType(BaseClass, 0)
3377 << Init->getSourceRange();
3378 }
3379 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3380 << 0 << PrevInit->getSourceRange();
3381
3382 return true;
3383}
3384
Sean Huntcbb67482011-01-08 20:30:50 +00003385typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00003386typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3387
3388bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00003389 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00003390 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00003391 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003392 RecordDecl *Parent = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00003393 NamedDecl *Child = Field;
David Blaikie6fe29652011-11-17 06:01:57 +00003394
3395 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003396 if (Parent->isUnion()) {
3397 UnionEntry &En = Unions[Parent];
3398 if (En.first && En.first != Child) {
3399 S.Diag(Init->getSourceLocation(),
3400 diag::err_multiple_mem_union_initialization)
3401 << Field->getDeclName()
3402 << Init->getSourceRange();
3403 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3404 << 0 << En.second->getSourceRange();
3405 return true;
David Blaikie5bbe8162011-11-12 20:54:14 +00003406 }
3407 if (!En.first) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003408 En.first = Child;
3409 En.second = Init;
3410 }
David Blaikie6fe29652011-11-17 06:01:57 +00003411 if (!Parent->isAnonymousStructOrUnion())
3412 return false;
John McCall3c3ccdb2010-04-10 09:28:51 +00003413 }
3414
3415 Child = Parent;
3416 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie6fe29652011-11-17 06:01:57 +00003417 }
John McCall3c3ccdb2010-04-10 09:28:51 +00003418
3419 return false;
3420}
3421}
3422
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003423/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00003424void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003425 SourceLocation ColonLoc,
Richard Trieu90ab75b2011-09-09 03:18:59 +00003426 CXXCtorInitializer **meminits,
3427 unsigned NumMemInits,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003428 bool AnyErrors) {
3429 if (!ConstructorDecl)
3430 return;
3431
3432 AdjustDeclIfTemplate(ConstructorDecl);
3433
3434 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003435 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003436
3437 if (!Constructor) {
3438 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
3439 return;
3440 }
3441
Sean Huntcbb67482011-01-08 20:30:50 +00003442 CXXCtorInitializer **MemInits =
3443 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00003444
3445 // Mapping for the duplicate initializers check.
3446 // For member initializers, this is keyed with a FieldDecl*.
3447 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00003448 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00003449
3450 // Mapping for the inconsistent anonymous-union initializers check.
3451 RedundantUnionMap MemberUnions;
3452
Anders Carlssonea356fb2010-04-02 05:42:15 +00003453 bool HadError = false;
3454 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00003455 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003456
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00003457 // Set the source order index.
3458 Init->setSourceOrder(i);
3459
Francois Pichet00eb3f92010-12-04 09:14:42 +00003460 if (Init->isAnyMemberInitializer()) {
3461 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00003462 if (CheckRedundantInit(*this, Init, Members[Field]) ||
3463 CheckRedundantUnionInit(*this, Init, MemberUnions))
3464 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003465 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00003466 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
3467 if (CheckRedundantInit(*this, Init, Members[Key]))
3468 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00003469 } else {
3470 assert(Init->isDelegatingInitializer());
3471 // This must be the only initializer
Richard Smitha6ddea62012-09-14 18:21:10 +00003472 if (NumMemInits != 1) {
3473 Diag(Init->getSourceLocation(),
Sean Hunt41717662011-02-26 19:13:13 +00003474 diag::err_delegating_initializer_alone)
Richard Smitha6ddea62012-09-14 18:21:10 +00003475 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Sean Hunt059ce0d2011-05-01 07:04:31 +00003476 // We will treat this as being the only initializer.
Sean Hunt41717662011-02-26 19:13:13 +00003477 }
Sean Huntfe57eef2011-05-04 05:57:24 +00003478 SetDelegatingInitializer(Constructor, MemInits[i]);
Sean Hunt059ce0d2011-05-01 07:04:31 +00003479 // Return immediately as the initializer is set.
3480 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003481 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003482 }
3483
Anders Carlssonea356fb2010-04-02 05:42:15 +00003484 if (HadError)
3485 return;
3486
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003487 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00003488
Sean Huntcbb67482011-01-08 20:30:50 +00003489 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00003490}
3491
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003492void
John McCallef027fe2010-03-16 21:39:52 +00003493Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
3494 CXXRecordDecl *ClassDecl) {
Richard Smith416f63e2011-09-18 12:11:43 +00003495 // Ignore dependent contexts. Also ignore unions, since their members never
3496 // have destructors implicitly called.
3497 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003498 return;
John McCall58e6f342010-03-16 05:22:47 +00003499
3500 // FIXME: all the access-control diagnostics are positioned on the
3501 // field/base declaration. That's probably good; that said, the
3502 // user might reasonably want to know why the destructor is being
3503 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003504
Anders Carlsson9f853df2009-11-17 04:44:12 +00003505 // Non-static data members.
3506 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
3507 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00003508 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00003509 if (Field->isInvalidDecl())
3510 continue;
Douglas Gregorddb21472011-11-02 23:04:16 +00003511
3512 // Don't destroy incomplete or zero-length arrays.
3513 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
3514 continue;
3515
Anders Carlsson9f853df2009-11-17 04:44:12 +00003516 QualType FieldType = Context.getBaseElementType(Field->getType());
3517
3518 const RecordType* RT = FieldType->getAs<RecordType>();
3519 if (!RT)
3520 continue;
3521
3522 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003523 if (FieldClassDecl->isInvalidDecl())
3524 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003525 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003526 continue;
Richard Smith9a561d52012-02-26 09:11:52 +00003527 // The destructor for an implicit anonymous union member is never invoked.
3528 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
3529 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00003530
Douglas Gregordb89f282010-07-01 22:47:18 +00003531 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003532 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003533 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003534 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00003535 << Field->getDeclName()
3536 << FieldType);
3537
Eli Friedman5f2987c2012-02-02 03:46:19 +00003538 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003539 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003540 }
3541
John McCall58e6f342010-03-16 05:22:47 +00003542 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
3543
Anders Carlsson9f853df2009-11-17 04:44:12 +00003544 // Bases.
3545 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3546 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00003547 // Bases are always records in a well-formed non-dependent class.
3548 const RecordType *RT = Base->getType()->getAs<RecordType>();
3549
3550 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00003551 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00003552 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003553
John McCall58e6f342010-03-16 05:22:47 +00003554 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003555 // If our base class is invalid, we probably can't get its dtor anyway.
3556 if (BaseClassDecl->isInvalidDecl())
3557 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003558 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlsson9f853df2009-11-17 04:44:12 +00003559 continue;
John McCall58e6f342010-03-16 05:22:47 +00003560
Douglas Gregordb89f282010-07-01 22:47:18 +00003561 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003562 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003563
3564 // FIXME: caret should be on the start of the class name
Daniel Dunbar96a00142012-03-09 18:35:03 +00003565 CheckDestructorAccess(Base->getLocStart(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003566 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00003567 << Base->getType()
John McCallb9abd8722012-04-07 03:04:20 +00003568 << Base->getSourceRange(),
3569 Context.getTypeDeclType(ClassDecl));
Anders Carlsson9f853df2009-11-17 04:44:12 +00003570
Eli Friedman5f2987c2012-02-02 03:46:19 +00003571 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003572 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlsson9f853df2009-11-17 04:44:12 +00003573 }
3574
3575 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003576 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
3577 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00003578
3579 // Bases are always records in a well-formed non-dependent class.
John McCall63f55782012-04-09 21:51:56 +00003580 const RecordType *RT = VBase->getType()->castAs<RecordType>();
John McCall58e6f342010-03-16 05:22:47 +00003581
3582 // Ignore direct virtual bases.
3583 if (DirectVirtualBases.count(RT))
3584 continue;
3585
John McCall58e6f342010-03-16 05:22:47 +00003586 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003587 // If our base class is invalid, we probably can't get its dtor anyway.
3588 if (BaseClassDecl->isInvalidDecl())
3589 continue;
Richard Smith213d70b2012-02-18 04:13:32 +00003590 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003591 continue;
John McCall58e6f342010-03-16 05:22:47 +00003592
Douglas Gregordb89f282010-07-01 22:47:18 +00003593 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00003594 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00003595 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003596 PDiag(diag::err_access_dtor_vbase)
John McCall63f55782012-04-09 21:51:56 +00003597 << VBase->getType(),
3598 Context.getTypeDeclType(ClassDecl));
John McCall58e6f342010-03-16 05:22:47 +00003599
Eli Friedman5f2987c2012-02-02 03:46:19 +00003600 MarkFunctionReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Richard Smith213d70b2012-02-18 04:13:32 +00003601 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian34374e62009-09-03 23:18:17 +00003602 }
3603}
3604
John McCalld226f652010-08-21 09:40:31 +00003605void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00003606 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003607 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003608
Mike Stump1eb44332009-09-09 15:08:12 +00003609 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00003610 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00003611 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00003612}
3613
Mike Stump1eb44332009-09-09 15:08:12 +00003614bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00003615 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003616 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
3617 unsigned DiagID;
3618 AbstractDiagSelID SelID;
3619
3620 public:
3621 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
3622 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
3623
3624 virtual void diagnose(Sema &S, SourceLocation Loc, QualType T) {
Eli Friedman2217f852012-08-14 02:06:07 +00003625 if (Suppressed) return;
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003626 if (SelID == -1)
3627 S.Diag(Loc, DiagID) << T;
3628 else
3629 S.Diag(Loc, DiagID) << SelID << T;
3630 }
3631 } Diagnoser(DiagID, SelID);
3632
3633 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003634}
3635
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00003636bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003637 TypeDiagnoser &Diagnoser) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003638 if (!getLangOpts().CPlusPlus)
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003639 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003640
Anders Carlsson11f21a02009-03-23 19:10:31 +00003641 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003642 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump1eb44332009-09-09 15:08:12 +00003643
Ted Kremenek6217b802009-07-29 21:53:49 +00003644 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003645 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003646 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003647 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00003648
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003649 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003650 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00003651 }
Mike Stump1eb44332009-09-09 15:08:12 +00003652
Ted Kremenek6217b802009-07-29 21:53:49 +00003653 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003654 if (!RT)
3655 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003656
John McCall86ff3082010-02-04 22:26:26 +00003657 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003658
John McCall94c3b562010-08-18 09:41:07 +00003659 // We can't answer whether something is abstract until it has a
3660 // definition. If it's currently being defined, we'll walk back
3661 // over all the declarations when we have a full definition.
3662 const CXXRecordDecl *Def = RD->getDefinition();
3663 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00003664 return false;
3665
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003666 if (!RD->isAbstract())
3667 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00003668
Douglas Gregor6a26e2e2012-05-04 17:09:59 +00003669 Diagnoser.diagnose(*this, Loc, T);
John McCall94c3b562010-08-18 09:41:07 +00003670 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00003671
John McCall94c3b562010-08-18 09:41:07 +00003672 return true;
3673}
3674
3675void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
3676 // Check if we've already emitted the list of pure virtual functions
3677 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003678 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00003679 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003680
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003681 CXXFinalOverriderMap FinalOverriders;
3682 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00003683
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003684 // Keep a set of seen pure methods so we won't diagnose the same method
3685 // more than once.
3686 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
3687
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003688 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
3689 MEnd = FinalOverriders.end();
3690 M != MEnd;
3691 ++M) {
3692 for (OverridingMethods::iterator SO = M->second.begin(),
3693 SOEnd = M->second.end();
3694 SO != SOEnd; ++SO) {
3695 // C++ [class.abstract]p4:
3696 // A class is abstract if it contains or inherits at least one
3697 // pure virtual function for which the final overrider is pure
3698 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00003699
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003700 //
3701 if (SO->second.size() != 1)
3702 continue;
3703
3704 if (!SO->second.front().Method->isPure())
3705 continue;
3706
Anders Carlssonffdb2d22010-06-03 01:00:02 +00003707 if (!SeenPureMethods.insert(SO->second.front().Method))
3708 continue;
3709
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003710 Diag(SO->second.front().Method->getLocation(),
3711 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00003712 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00003713 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003714 }
3715
3716 if (!PureVirtualClassDiagSet)
3717 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
3718 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00003719}
3720
Anders Carlsson8211eff2009-03-24 01:19:16 +00003721namespace {
John McCall94c3b562010-08-18 09:41:07 +00003722struct AbstractUsageInfo {
3723 Sema &S;
3724 CXXRecordDecl *Record;
3725 CanQualType AbstractType;
3726 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00003727
John McCall94c3b562010-08-18 09:41:07 +00003728 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
3729 : S(S), Record(Record),
3730 AbstractType(S.Context.getCanonicalType(
3731 S.Context.getTypeDeclType(Record))),
3732 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00003733
John McCall94c3b562010-08-18 09:41:07 +00003734 void DiagnoseAbstractType() {
3735 if (Invalid) return;
3736 S.DiagnoseAbstractType(Record);
3737 Invalid = true;
3738 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00003739
John McCall94c3b562010-08-18 09:41:07 +00003740 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
3741};
3742
3743struct CheckAbstractUsage {
3744 AbstractUsageInfo &Info;
3745 const NamedDecl *Ctx;
3746
3747 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
3748 : Info(Info), Ctx(Ctx) {}
3749
3750 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3751 switch (TL.getTypeLocClass()) {
3752#define ABSTRACT_TYPELOC(CLASS, PARENT)
3753#define TYPELOC(CLASS, PARENT) \
3754 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
3755#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00003756 }
John McCall94c3b562010-08-18 09:41:07 +00003757 }
Mike Stump1eb44332009-09-09 15:08:12 +00003758
John McCall94c3b562010-08-18 09:41:07 +00003759 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3760 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
3761 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00003762 if (!TL.getArg(I))
3763 continue;
3764
John McCall94c3b562010-08-18 09:41:07 +00003765 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
3766 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003767 }
John McCall94c3b562010-08-18 09:41:07 +00003768 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003769
John McCall94c3b562010-08-18 09:41:07 +00003770 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3771 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
3772 }
Mike Stump1eb44332009-09-09 15:08:12 +00003773
John McCall94c3b562010-08-18 09:41:07 +00003774 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
3775 // Visit the type parameters from a permissive context.
3776 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
3777 TemplateArgumentLoc TAL = TL.getArgLoc(I);
3778 if (TAL.getArgument().getKind() == TemplateArgument::Type)
3779 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
3780 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
3781 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00003782 }
John McCall94c3b562010-08-18 09:41:07 +00003783 }
Mike Stump1eb44332009-09-09 15:08:12 +00003784
John McCall94c3b562010-08-18 09:41:07 +00003785 // Visit pointee types from a permissive context.
3786#define CheckPolymorphic(Type) \
3787 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
3788 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
3789 }
3790 CheckPolymorphic(PointerTypeLoc)
3791 CheckPolymorphic(ReferenceTypeLoc)
3792 CheckPolymorphic(MemberPointerTypeLoc)
3793 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedmanb001de72011-10-06 23:00:33 +00003794 CheckPolymorphic(AtomicTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00003795
John McCall94c3b562010-08-18 09:41:07 +00003796 /// Handle all the types we haven't given a more specific
3797 /// implementation for above.
3798 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
3799 // Every other kind of type that we haven't called out already
3800 // that has an inner type is either (1) sugar or (2) contains that
3801 // inner type in some way as a subobject.
3802 if (TypeLoc Next = TL.getNextTypeLoc())
3803 return Visit(Next, Sel);
3804
3805 // If there's no inner type and we're in a permissive context,
3806 // don't diagnose.
3807 if (Sel == Sema::AbstractNone) return;
3808
3809 // Check whether the type matches the abstract type.
3810 QualType T = TL.getType();
3811 if (T->isArrayType()) {
3812 Sel = Sema::AbstractArrayType;
3813 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00003814 }
John McCall94c3b562010-08-18 09:41:07 +00003815 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
3816 if (CT != Info.AbstractType) return;
3817
3818 // It matched; do some magic.
3819 if (Sel == Sema::AbstractArrayType) {
3820 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
3821 << T << TL.getSourceRange();
3822 } else {
3823 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
3824 << Sel << T << TL.getSourceRange();
3825 }
3826 Info.DiagnoseAbstractType();
3827 }
3828};
3829
3830void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
3831 Sema::AbstractDiagSelID Sel) {
3832 CheckAbstractUsage(*this, D).Visit(TL, Sel);
3833}
3834
3835}
3836
3837/// Check for invalid uses of an abstract type in a method declaration.
3838static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3839 CXXMethodDecl *MD) {
3840 // No need to do the check on definitions, which require that
3841 // the return/param types be complete.
Sean Hunt10620eb2011-05-06 20:44:56 +00003842 if (MD->doesThisDeclarationHaveABody())
John McCall94c3b562010-08-18 09:41:07 +00003843 return;
3844
3845 // For safety's sake, just ignore it if we don't have type source
3846 // information. This should never happen for non-implicit methods,
3847 // but...
3848 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
3849 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
3850}
3851
3852/// Check for invalid uses of an abstract type within a class definition.
3853static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
3854 CXXRecordDecl *RD) {
3855 for (CXXRecordDecl::decl_iterator
3856 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
3857 Decl *D = *I;
3858 if (D->isImplicit()) continue;
3859
3860 // Methods and method templates.
3861 if (isa<CXXMethodDecl>(D)) {
3862 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
3863 } else if (isa<FunctionTemplateDecl>(D)) {
3864 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
3865 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
3866
3867 // Fields and static variables.
3868 } else if (isa<FieldDecl>(D)) {
3869 FieldDecl *FD = cast<FieldDecl>(D);
3870 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
3871 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
3872 } else if (isa<VarDecl>(D)) {
3873 VarDecl *VD = cast<VarDecl>(D);
3874 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
3875 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
3876
3877 // Nested classes and class templates.
3878 } else if (isa<CXXRecordDecl>(D)) {
3879 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
3880 } else if (isa<ClassTemplateDecl>(D)) {
3881 CheckAbstractClassUsage(Info,
3882 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
3883 }
3884 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00003885}
3886
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003887/// \brief Perform semantic checks on a class definition that has been
3888/// completing, introducing implicitly-declared members, checking for
3889/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003890void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00003891 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003892 return;
3893
John McCall94c3b562010-08-18 09:41:07 +00003894 if (Record->isAbstract() && !Record->isInvalidDecl()) {
3895 AbstractUsageInfo Info(*this, Record);
3896 CheckAbstractClassUsage(Info, Record);
3897 }
Douglas Gregor325e5932010-04-15 00:00:53 +00003898
3899 // If this is not an aggregate type and has no user-declared constructor,
3900 // complain about any non-static data members of reference or const scalar
3901 // type, since they will never get initializers.
3902 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregor5e058eb2012-02-09 02:20:38 +00003903 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
3904 !Record->isLambda()) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003905 bool Complained = false;
3906 for (RecordDecl::field_iterator F = Record->field_begin(),
3907 FEnd = Record->field_end();
3908 F != FEnd; ++F) {
Douglas Gregord61db332011-10-10 17:22:13 +00003909 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith7a614d82011-06-11 17:19:42 +00003910 continue;
3911
Douglas Gregor325e5932010-04-15 00:00:53 +00003912 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00003913 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00003914 if (!Complained) {
3915 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
3916 << Record->getTagKind() << Record;
3917 Complained = true;
3918 }
3919
3920 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
3921 << F->getType()->isReferenceType()
3922 << F->getDeclName();
3923 }
3924 }
3925 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003926
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00003927 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00003928 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00003929
3930 if (Record->getIdentifier()) {
3931 // C++ [class.mem]p13:
3932 // If T is the name of a class, then each of the following shall have a
3933 // name different from T:
3934 // - every member of every anonymous union that is a member of class T.
3935 //
3936 // C++ [class.mem]p14:
3937 // In addition, if class T has a user-declared constructor (12.1), every
3938 // non-static data member of class T shall have a name different from T.
David Blaikie3bc93e32012-12-19 00:45:41 +00003939 DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
3940 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
3941 ++I) {
3942 NamedDecl *D = *I;
Francois Pichet87c2e122010-11-21 06:08:52 +00003943 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
3944 isa<IndirectFieldDecl>(D)) {
3945 Diag(D->getLocation(), diag::err_member_name_of_class)
3946 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00003947 break;
3948 }
Francois Pichet87c2e122010-11-21 06:08:52 +00003949 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00003950 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003951
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003952 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00003953 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003954 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00003955 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00003956 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
3957 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
3958 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003959
David Blaikieb6b5b972012-09-21 03:21:07 +00003960 if (Record->isAbstract() && Record->hasAttr<FinalAttr>()) {
3961 Diag(Record->getLocation(), diag::warn_abstract_final_class);
3962 DiagnoseAbstractType(Record);
3963 }
3964
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00003965 if (!Record->isDependentType()) {
3966 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
3967 MEnd = Record->method_end();
3968 M != MEnd; ++M) {
Richard Smith1d28caf2012-12-11 01:14:52 +00003969 // See if a method overloads virtual methods in a base
3970 // class without overriding any.
David Blaikie262bc182012-04-30 02:36:29 +00003971 if (!M->isStatic())
David Blaikie581deb32012-06-06 20:45:41 +00003972 DiagnoseHiddenVirtualMethods(Record, *M);
Richard Smith1d28caf2012-12-11 01:14:52 +00003973
3974 // Check whether the explicitly-defaulted special members are valid.
3975 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
3976 CheckExplicitlyDefaultedSpecialMember(*M);
3977
3978 // For an explicitly defaulted or deleted special member, we defer
3979 // determining triviality until the class is complete. That time is now!
3980 if (!M->isImplicit() && !M->isUserProvided()) {
3981 CXXSpecialMember CSM = getSpecialMember(*M);
3982 if (CSM != CXXInvalid) {
3983 M->setTrivial(SpecialMemberIsTrivial(*M, CSM));
3984
3985 // Inform the class that we've finished declaring this member.
3986 Record->finishedDefaultedOrDeletedMember(*M);
3987 }
3988 }
3989 }
3990 }
3991
3992 // C++11 [dcl.constexpr]p8: A constexpr specifier for a non-static member
3993 // function that is not a constructor declares that member function to be
3994 // const. [...] The class of which that function is a member shall be
3995 // a literal type.
3996 //
3997 // If the class has virtual bases, any constexpr members will already have
3998 // been diagnosed by the checks performed on the member declaration, so
3999 // suppress this (less useful) diagnostic.
4000 //
4001 // We delay this until we know whether an explicitly-defaulted (or deleted)
4002 // destructor for the class is trivial.
Richard Smith80ad52f2013-01-02 11:42:31 +00004003 if (LangOpts.CPlusPlus11 && !Record->isDependentType() &&
Richard Smith1d28caf2012-12-11 01:14:52 +00004004 !Record->isLiteral() && !Record->getNumVBases()) {
4005 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
4006 MEnd = Record->method_end();
4007 M != MEnd; ++M) {
4008 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(*M)) {
4009 switch (Record->getTemplateSpecializationKind()) {
4010 case TSK_ImplicitInstantiation:
4011 case TSK_ExplicitInstantiationDeclaration:
4012 case TSK_ExplicitInstantiationDefinition:
4013 // If a template instantiates to a non-literal type, but its members
4014 // instantiate to constexpr functions, the template is technically
4015 // ill-formed, but we allow it for sanity.
4016 continue;
4017
4018 case TSK_Undeclared:
4019 case TSK_ExplicitSpecialization:
4020 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
4021 diag::err_constexpr_method_non_literal);
4022 break;
4023 }
4024
4025 // Only produce one error per class.
4026 break;
4027 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004028 }
4029 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00004030
4031 // Declare inherited constructors. We do this eagerly here because:
4032 // - The standard requires an eager diagnostic for conflicting inherited
4033 // constructors from different classes.
4034 // - The lazy declaration of the other implicit constructors is so as to not
4035 // waste space and performance on classes that are not meant to be
4036 // instantiated (e.g. meta-functions). This doesn't apply to classes that
4037 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004038 DeclareInheritedConstructors(Record);
Sean Hunt001cad92011-05-10 00:49:42 +00004039}
4040
Richard Smith7756afa2012-06-10 05:43:50 +00004041/// Is the special member function which would be selected to perform the
4042/// specified operation on the specified class type a constexpr constructor?
4043static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4044 Sema::CXXSpecialMember CSM,
4045 bool ConstArg) {
4046 Sema::SpecialMemberOverloadResult *SMOR =
4047 S.LookupSpecialMember(ClassDecl, CSM, ConstArg,
4048 false, false, false, false);
4049 if (!SMOR || !SMOR->getMethod())
4050 // A constructor we wouldn't select can't be "involved in initializing"
4051 // anything.
4052 return true;
4053 return SMOR->getMethod()->isConstexpr();
4054}
4055
4056/// Determine whether the specified special member function would be constexpr
4057/// if it were implicitly defined.
4058static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4059 Sema::CXXSpecialMember CSM,
4060 bool ConstArg) {
Richard Smith80ad52f2013-01-02 11:42:31 +00004061 if (!S.getLangOpts().CPlusPlus11)
Richard Smith7756afa2012-06-10 05:43:50 +00004062 return false;
4063
4064 // C++11 [dcl.constexpr]p4:
4065 // In the definition of a constexpr constructor [...]
4066 switch (CSM) {
4067 case Sema::CXXDefaultConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004068 // Since default constructor lookup is essentially trivial (and cannot
4069 // involve, for instance, template instantiation), we compute whether a
4070 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4071 //
4072 // This is important for performance; we need to know whether the default
4073 // constructor is constexpr to determine whether the type is a literal type.
4074 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4075
Richard Smith7756afa2012-06-10 05:43:50 +00004076 case Sema::CXXCopyConstructor:
4077 case Sema::CXXMoveConstructor:
Richard Smithd3861ce2012-06-10 07:07:24 +00004078 // For copy or move constructors, we need to perform overload resolution.
Richard Smith7756afa2012-06-10 05:43:50 +00004079 break;
4080
4081 case Sema::CXXCopyAssignment:
4082 case Sema::CXXMoveAssignment:
4083 case Sema::CXXDestructor:
4084 case Sema::CXXInvalid:
4085 return false;
4086 }
4087
4088 // -- if the class is a non-empty union, or for each non-empty anonymous
4089 // union member of a non-union class, exactly one non-static data member
4090 // shall be initialized; [DR1359]
Richard Smithd3861ce2012-06-10 07:07:24 +00004091 //
4092 // If we squint, this is guaranteed, since exactly one non-static data member
4093 // will be initialized (if the constructor isn't deleted), we just don't know
4094 // which one.
Richard Smith7756afa2012-06-10 05:43:50 +00004095 if (ClassDecl->isUnion())
Richard Smithd3861ce2012-06-10 07:07:24 +00004096 return true;
Richard Smith7756afa2012-06-10 05:43:50 +00004097
4098 // -- the class shall not have any virtual base classes;
4099 if (ClassDecl->getNumVBases())
4100 return false;
4101
4102 // -- every constructor involved in initializing [...] base class
4103 // sub-objects shall be a constexpr constructor;
4104 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4105 BEnd = ClassDecl->bases_end();
4106 B != BEnd; ++B) {
4107 const RecordType *BaseType = B->getType()->getAs<RecordType>();
4108 if (!BaseType) continue;
4109
4110 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4111 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, ConstArg))
4112 return false;
4113 }
4114
4115 // -- every constructor involved in initializing non-static data members
4116 // [...] shall be a constexpr constructor;
4117 // -- every non-static data member and base class sub-object shall be
4118 // initialized
4119 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4120 FEnd = ClassDecl->field_end();
4121 F != FEnd; ++F) {
4122 if (F->isInvalidDecl())
4123 continue;
Richard Smithd3861ce2012-06-10 07:07:24 +00004124 if (const RecordType *RecordTy =
4125 S.Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Richard Smith7756afa2012-06-10 05:43:50 +00004126 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4127 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, ConstArg))
4128 return false;
Richard Smith7756afa2012-06-10 05:43:50 +00004129 }
4130 }
4131
4132 // All OK, it's constexpr!
4133 return true;
4134}
4135
Richard Smithb9d0b762012-07-27 04:22:15 +00004136static Sema::ImplicitExceptionSpecification
4137computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4138 switch (S.getSpecialMember(MD)) {
4139 case Sema::CXXDefaultConstructor:
4140 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4141 case Sema::CXXCopyConstructor:
4142 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4143 case Sema::CXXCopyAssignment:
4144 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4145 case Sema::CXXMoveConstructor:
4146 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4147 case Sema::CXXMoveAssignment:
4148 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4149 case Sema::CXXDestructor:
4150 return S.ComputeDefaultedDtorExceptionSpec(MD);
4151 case Sema::CXXInvalid:
4152 break;
4153 }
4154 llvm_unreachable("only special members have implicit exception specs");
4155}
4156
Richard Smithdd25e802012-07-30 23:48:14 +00004157static void
4158updateExceptionSpec(Sema &S, FunctionDecl *FD, const FunctionProtoType *FPT,
4159 const Sema::ImplicitExceptionSpecification &ExceptSpec) {
4160 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
4161 ExceptSpec.getEPI(EPI);
4162 const FunctionProtoType *NewFPT = cast<FunctionProtoType>(
4163 S.Context.getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
4164 FPT->getNumArgs(), EPI));
4165 FD->setType(QualType(NewFPT, 0));
4166}
4167
Richard Smithb9d0b762012-07-27 04:22:15 +00004168void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4169 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4170 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4171 return;
4172
Richard Smithdd25e802012-07-30 23:48:14 +00004173 // Evaluate the exception specification.
4174 ImplicitExceptionSpecification ExceptSpec =
4175 computeImplicitExceptionSpec(*this, Loc, MD);
4176
4177 // Update the type of the special member to use it.
4178 updateExceptionSpec(*this, MD, FPT, ExceptSpec);
4179
4180 // A user-provided destructor can be defined outside the class. When that
4181 // happens, be sure to update the exception specification on both
4182 // declarations.
4183 const FunctionProtoType *CanonicalFPT =
4184 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4185 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
4186 updateExceptionSpec(*this, MD->getCanonicalDecl(),
4187 CanonicalFPT, ExceptSpec);
Richard Smithb9d0b762012-07-27 04:22:15 +00004188}
4189
Richard Smith3003e1d2012-05-15 04:39:51 +00004190void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4191 CXXRecordDecl *RD = MD->getParent();
4192 CXXSpecialMember CSM = getSpecialMember(MD);
Sean Hunt001cad92011-05-10 00:49:42 +00004193
Richard Smith3003e1d2012-05-15 04:39:51 +00004194 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4195 "not an explicitly-defaulted special member");
Sean Hunt49634cf2011-05-13 06:10:58 +00004196
4197 // Whether this was the first-declared instance of the constructor.
Richard Smith3003e1d2012-05-15 04:39:51 +00004198 // This affects whether we implicitly add an exception spec and constexpr.
Sean Hunt2b188082011-05-14 05:23:28 +00004199 bool First = MD == MD->getCanonicalDecl();
4200
4201 bool HadError = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004202
4203 // C++11 [dcl.fct.def.default]p1:
4204 // A function that is explicitly defaulted shall
4205 // -- be a special member function (checked elsewhere),
4206 // -- have the same type (except for ref-qualifiers, and except that a
4207 // copy operation can take a non-const reference) as an implicit
4208 // declaration, and
4209 // -- not have default arguments.
4210 unsigned ExpectedParams = 1;
4211 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4212 ExpectedParams = 0;
4213 if (MD->getNumParams() != ExpectedParams) {
4214 // This also checks for default arguments: a copy or move constructor with a
4215 // default argument is classified as a default constructor, and assignment
4216 // operations and destructors can't have default arguments.
4217 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4218 << CSM << MD->getSourceRange();
Sean Hunt2b188082011-05-14 05:23:28 +00004219 HadError = true;
Richard Smith50464392012-12-07 02:10:28 +00004220 } else if (MD->isVariadic()) {
4221 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
4222 << CSM << MD->getSourceRange();
4223 HadError = true;
Sean Hunt2b188082011-05-14 05:23:28 +00004224 }
4225
Richard Smith3003e1d2012-05-15 04:39:51 +00004226 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Sean Hunt2b188082011-05-14 05:23:28 +00004227
Richard Smith7756afa2012-06-10 05:43:50 +00004228 bool CanHaveConstParam = false;
Richard Smithac713512012-12-08 02:53:02 +00004229 if (CSM == CXXCopyConstructor)
Richard Smithacf796b2012-11-28 06:23:12 +00004230 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smithac713512012-12-08 02:53:02 +00004231 else if (CSM == CXXCopyAssignment)
Richard Smithacf796b2012-11-28 06:23:12 +00004232 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Sean Hunt2b188082011-05-14 05:23:28 +00004233
Richard Smith3003e1d2012-05-15 04:39:51 +00004234 QualType ReturnType = Context.VoidTy;
4235 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4236 // Check for return type matching.
4237 ReturnType = Type->getResultType();
4238 QualType ExpectedReturnType =
4239 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4240 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4241 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4242 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4243 HadError = true;
4244 }
4245
4246 // A defaulted special member cannot have cv-qualifiers.
4247 if (Type->getTypeQuals()) {
4248 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
4249 << (CSM == CXXMoveAssignment);
4250 HadError = true;
4251 }
4252 }
4253
4254 // Check for parameter type matching.
4255 QualType ArgType = ExpectedParams ? Type->getArgType(0) : QualType();
Richard Smith7756afa2012-06-10 05:43:50 +00004256 bool HasConstParam = false;
Richard Smith3003e1d2012-05-15 04:39:51 +00004257 if (ExpectedParams && ArgType->isReferenceType()) {
4258 // Argument must be reference to possibly-const T.
4259 QualType ReferentType = ArgType->getPointeeType();
Richard Smith7756afa2012-06-10 05:43:50 +00004260 HasConstParam = ReferentType.isConstQualified();
Richard Smith3003e1d2012-05-15 04:39:51 +00004261
4262 if (ReferentType.isVolatileQualified()) {
4263 Diag(MD->getLocation(),
4264 diag::err_defaulted_special_member_volatile_param) << CSM;
4265 HadError = true;
4266 }
4267
Richard Smith7756afa2012-06-10 05:43:50 +00004268 if (HasConstParam && !CanHaveConstParam) {
Richard Smith3003e1d2012-05-15 04:39:51 +00004269 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
4270 Diag(MD->getLocation(),
4271 diag::err_defaulted_special_member_copy_const_param)
4272 << (CSM == CXXCopyAssignment);
4273 // FIXME: Explain why this special member can't be const.
4274 } else {
4275 Diag(MD->getLocation(),
4276 diag::err_defaulted_special_member_move_const_param)
4277 << (CSM == CXXMoveAssignment);
4278 }
4279 HadError = true;
4280 }
Richard Smith3003e1d2012-05-15 04:39:51 +00004281 } else if (ExpectedParams) {
4282 // A copy assignment operator can take its argument by value, but a
4283 // defaulted one cannot.
4284 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Sean Huntbe631222011-05-17 20:44:43 +00004285 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Sean Hunt2b188082011-05-14 05:23:28 +00004286 HadError = true;
4287 }
Sean Huntbe631222011-05-17 20:44:43 +00004288
Richard Smith61802452011-12-22 02:22:31 +00004289 // C++11 [dcl.fct.def.default]p2:
4290 // An explicitly-defaulted function may be declared constexpr only if it
4291 // would have been implicitly declared as constexpr,
Richard Smith3003e1d2012-05-15 04:39:51 +00004292 // Do not apply this rule to members of class templates, since core issue 1358
4293 // makes such functions always instantiate to constexpr functions. For
4294 // non-constructors, this is checked elsewhere.
Richard Smith7756afa2012-06-10 05:43:50 +00004295 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
4296 HasConstParam);
Richard Smith3003e1d2012-05-15 04:39:51 +00004297 if (isa<CXXConstructorDecl>(MD) && MD->isConstexpr() && !Constexpr &&
4298 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
4299 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith7756afa2012-06-10 05:43:50 +00004300 // FIXME: Explain why the constructor can't be constexpr.
Richard Smith3003e1d2012-05-15 04:39:51 +00004301 HadError = true;
Richard Smith61802452011-12-22 02:22:31 +00004302 }
Richard Smith1d28caf2012-12-11 01:14:52 +00004303
Richard Smith61802452011-12-22 02:22:31 +00004304 // and may have an explicit exception-specification only if it is compatible
4305 // with the exception-specification on the implicit declaration.
Richard Smith1d28caf2012-12-11 01:14:52 +00004306 if (Type->hasExceptionSpec()) {
4307 // Delay the check if this is the first declaration of the special member,
4308 // since we may not have parsed some necessary in-class initializers yet.
4309 if (First)
4310 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
4311 else
4312 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
4313 }
Richard Smith61802452011-12-22 02:22:31 +00004314
4315 // If a function is explicitly defaulted on its first declaration,
4316 if (First) {
4317 // -- it is implicitly considered to be constexpr if the implicit
4318 // definition would be,
Richard Smith3003e1d2012-05-15 04:39:51 +00004319 MD->setConstexpr(Constexpr);
Richard Smith61802452011-12-22 02:22:31 +00004320
Richard Smith3003e1d2012-05-15 04:39:51 +00004321 // -- it is implicitly considered to have the same exception-specification
4322 // as if it had been implicitly declared,
Richard Smith1d28caf2012-12-11 01:14:52 +00004323 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
4324 EPI.ExceptionSpecType = EST_Unevaluated;
4325 EPI.ExceptionSpecDecl = MD;
4326 MD->setType(Context.getFunctionType(ReturnType, &ArgType,
4327 ExpectedParams, EPI));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004328 }
4329
Richard Smith3003e1d2012-05-15 04:39:51 +00004330 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004331 if (First) {
4332 MD->setDeletedAsWritten();
4333 } else {
Richard Smith3003e1d2012-05-15 04:39:51 +00004334 // C++11 [dcl.fct.def.default]p4:
4335 // [For a] user-provided explicitly-defaulted function [...] if such a
4336 // function is implicitly defined as deleted, the program is ill-formed.
4337 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
4338 HadError = true;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004339 }
4340 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00004341
Richard Smith3003e1d2012-05-15 04:39:51 +00004342 if (HadError)
4343 MD->setInvalidDecl();
Sean Huntcb45a0f2011-05-12 22:46:25 +00004344}
4345
Richard Smith1d28caf2012-12-11 01:14:52 +00004346/// Check whether the exception specification provided for an
4347/// explicitly-defaulted special member matches the exception specification
4348/// that would have been generated for an implicit special member, per
4349/// C++11 [dcl.fct.def.default]p2.
4350void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
4351 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
4352 // Compute the implicit exception specification.
4353 FunctionProtoType::ExtProtoInfo EPI;
4354 computeImplicitExceptionSpec(*this, MD->getLocation(), MD).getEPI(EPI);
4355 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
4356 Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
4357
4358 // Ensure that it matches.
4359 CheckEquivalentExceptionSpec(
4360 PDiag(diag::err_incorrect_defaulted_exception_spec)
4361 << getSpecialMember(MD), PDiag(),
4362 ImplicitType, SourceLocation(),
4363 SpecifiedType, MD->getLocation());
4364}
4365
4366void Sema::CheckDelayedExplicitlyDefaultedMemberExceptionSpecs() {
4367 for (unsigned I = 0, N = DelayedDefaultedMemberExceptionSpecs.size();
4368 I != N; ++I)
4369 CheckExplicitlyDefaultedMemberExceptionSpec(
4370 DelayedDefaultedMemberExceptionSpecs[I].first,
4371 DelayedDefaultedMemberExceptionSpecs[I].second);
4372
4373 DelayedDefaultedMemberExceptionSpecs.clear();
4374}
4375
Richard Smith7d5088a2012-02-18 02:02:13 +00004376namespace {
4377struct SpecialMemberDeletionInfo {
4378 Sema &S;
4379 CXXMethodDecl *MD;
4380 Sema::CXXSpecialMember CSM;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004381 bool Diagnose;
Richard Smith7d5088a2012-02-18 02:02:13 +00004382
4383 // Properties of the special member, computed for convenience.
4384 bool IsConstructor, IsAssignment, IsMove, ConstArg, VolatileArg;
4385 SourceLocation Loc;
4386
4387 bool AllFieldsAreConst;
4388
4389 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004390 Sema::CXXSpecialMember CSM, bool Diagnose)
4391 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smith7d5088a2012-02-18 02:02:13 +00004392 IsConstructor(false), IsAssignment(false), IsMove(false),
4393 ConstArg(false), VolatileArg(false), Loc(MD->getLocation()),
4394 AllFieldsAreConst(true) {
4395 switch (CSM) {
4396 case Sema::CXXDefaultConstructor:
4397 case Sema::CXXCopyConstructor:
4398 IsConstructor = true;
4399 break;
4400 case Sema::CXXMoveConstructor:
4401 IsConstructor = true;
4402 IsMove = true;
4403 break;
4404 case Sema::CXXCopyAssignment:
4405 IsAssignment = true;
4406 break;
4407 case Sema::CXXMoveAssignment:
4408 IsAssignment = true;
4409 IsMove = true;
4410 break;
4411 case Sema::CXXDestructor:
4412 break;
4413 case Sema::CXXInvalid:
4414 llvm_unreachable("invalid special member kind");
4415 }
4416
4417 if (MD->getNumParams()) {
4418 ConstArg = MD->getParamDecl(0)->getType().isConstQualified();
4419 VolatileArg = MD->getParamDecl(0)->getType().isVolatileQualified();
4420 }
4421 }
4422
4423 bool inUnion() const { return MD->getParent()->isUnion(); }
4424
4425 /// Look up the corresponding special member in the given class.
Richard Smith517bb842012-07-18 03:51:16 +00004426 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
4427 unsigned Quals) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004428 unsigned TQ = MD->getTypeQualifiers();
Richard Smith517bb842012-07-18 03:51:16 +00004429 // cv-qualifiers on class members don't affect default ctor / dtor calls.
4430 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4431 Quals = 0;
4432 return S.LookupSpecialMember(Class, CSM,
4433 ConstArg || (Quals & Qualifiers::Const),
4434 VolatileArg || (Quals & Qualifiers::Volatile),
Richard Smith7d5088a2012-02-18 02:02:13 +00004435 MD->getRefQualifier() == RQ_RValue,
4436 TQ & Qualifiers::Const,
4437 TQ & Qualifiers::Volatile);
4438 }
4439
Richard Smith6c4c36c2012-03-30 20:53:28 +00004440 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith9a561d52012-02-26 09:11:52 +00004441
Richard Smith6c4c36c2012-03-30 20:53:28 +00004442 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smith7d5088a2012-02-18 02:02:13 +00004443 bool shouldDeleteForField(FieldDecl *FD);
4444 bool shouldDeleteForAllConstMembers();
Richard Smith6c4c36c2012-03-30 20:53:28 +00004445
Richard Smith517bb842012-07-18 03:51:16 +00004446 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
4447 unsigned Quals);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004448 bool shouldDeleteForSubobjectCall(Subobject Subobj,
4449 Sema::SpecialMemberOverloadResult *SMOR,
4450 bool IsDtorCallInCtor);
John McCall12d8d802012-04-09 20:53:23 +00004451
4452 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smith7d5088a2012-02-18 02:02:13 +00004453};
4454}
4455
John McCall12d8d802012-04-09 20:53:23 +00004456/// Is the given special member inaccessible when used on the given
4457/// sub-object.
4458bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
4459 CXXMethodDecl *target) {
4460 /// If we're operating on a base class, the object type is the
4461 /// type of this special member.
4462 QualType objectTy;
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +00004463 AccessSpecifier access = target->getAccess();
John McCall12d8d802012-04-09 20:53:23 +00004464 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
4465 objectTy = S.Context.getTypeDeclType(MD->getParent());
4466 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
4467
4468 // If we're operating on a field, the object type is the type of the field.
4469 } else {
4470 objectTy = S.Context.getTypeDeclType(target->getParent());
4471 }
4472
4473 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
4474}
4475
Richard Smith6c4c36c2012-03-30 20:53:28 +00004476/// Check whether we should delete a special member due to the implicit
4477/// definition containing a call to a special member of a subobject.
4478bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
4479 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
4480 bool IsDtorCallInCtor) {
4481 CXXMethodDecl *Decl = SMOR->getMethod();
4482 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
4483
4484 int DiagKind = -1;
4485
4486 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
4487 DiagKind = !Decl ? 0 : 1;
4488 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4489 DiagKind = 2;
John McCall12d8d802012-04-09 20:53:23 +00004490 else if (!isAccessible(Subobj, Decl))
Richard Smith6c4c36c2012-03-30 20:53:28 +00004491 DiagKind = 3;
4492 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
4493 !Decl->isTrivial()) {
4494 // A member of a union must have a trivial corresponding special member.
4495 // As a weird special case, a destructor call from a union's constructor
4496 // must be accessible and non-deleted, but need not be trivial. Such a
4497 // destructor is never actually called, but is semantically checked as
4498 // if it were.
4499 DiagKind = 4;
4500 }
4501
4502 if (DiagKind == -1)
4503 return false;
4504
4505 if (Diagnose) {
4506 if (Field) {
4507 S.Diag(Field->getLocation(),
4508 diag::note_deleted_special_member_class_subobject)
4509 << CSM << MD->getParent() << /*IsField*/true
4510 << Field << DiagKind << IsDtorCallInCtor;
4511 } else {
4512 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
4513 S.Diag(Base->getLocStart(),
4514 diag::note_deleted_special_member_class_subobject)
4515 << CSM << MD->getParent() << /*IsField*/false
4516 << Base->getType() << DiagKind << IsDtorCallInCtor;
4517 }
4518
4519 if (DiagKind == 1)
4520 S.NoteDeletedFunction(Decl);
4521 // FIXME: Explain inaccessibility if DiagKind == 3.
4522 }
4523
4524 return true;
4525}
4526
Richard Smith9a561d52012-02-26 09:11:52 +00004527/// Check whether we should delete a special member function due to having a
Richard Smith517bb842012-07-18 03:51:16 +00004528/// direct or virtual base class or non-static data member of class type M.
Richard Smith9a561d52012-02-26 09:11:52 +00004529bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smith517bb842012-07-18 03:51:16 +00004530 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith6c4c36c2012-03-30 20:53:28 +00004531 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith7d5088a2012-02-18 02:02:13 +00004532
4533 // C++11 [class.ctor]p5:
Richard Smithdf8dc862012-03-29 19:00:10 +00004534 // -- any direct or virtual base class, or non-static data member with no
4535 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smith7d5088a2012-02-18 02:02:13 +00004536 // either M has no default constructor or overload resolution as applied
4537 // to M's default constructor results in an ambiguity or in a function
4538 // that is deleted or inaccessible
4539 // C++11 [class.copy]p11, C++11 [class.copy]p23:
4540 // -- a direct or virtual base class B that cannot be copied/moved because
4541 // overload resolution, as applied to B's corresponding special member,
4542 // results in an ambiguity or a function that is deleted or inaccessible
4543 // from the defaulted special member
Richard Smith6c4c36c2012-03-30 20:53:28 +00004544 // C++11 [class.dtor]p5:
4545 // -- any direct or virtual base class [...] has a type with a destructor
4546 // that is deleted or inaccessible
4547 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smith1c931be2012-04-02 18:40:40 +00004548 Field && Field->hasInClassInitializer()) &&
Richard Smith517bb842012-07-18 03:51:16 +00004549 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals), false))
Richard Smith1c931be2012-04-02 18:40:40 +00004550 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004551
Richard Smith6c4c36c2012-03-30 20:53:28 +00004552 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
4553 // -- any direct or virtual base class or non-static data member has a
4554 // type with a destructor that is deleted or inaccessible
4555 if (IsConstructor) {
4556 Sema::SpecialMemberOverloadResult *SMOR =
4557 S.LookupSpecialMember(Class, Sema::CXXDestructor,
4558 false, false, false, false, false);
4559 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
4560 return true;
4561 }
4562
Richard Smith9a561d52012-02-26 09:11:52 +00004563 return false;
4564}
4565
4566/// Check whether we should delete a special member function due to the class
4567/// having a particular direct or virtual base class.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004568bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smith1c931be2012-04-02 18:40:40 +00004569 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smith517bb842012-07-18 03:51:16 +00004570 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smith7d5088a2012-02-18 02:02:13 +00004571}
4572
4573/// Check whether we should delete a special member function due to the class
4574/// having a particular non-static data member.
4575bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
4576 QualType FieldType = S.Context.getBaseElementType(FD->getType());
4577 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
4578
4579 if (CSM == Sema::CXXDefaultConstructor) {
4580 // For a default constructor, all references must be initialized in-class
4581 // and, if a union, it must have a non-const member.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004582 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
4583 if (Diagnose)
4584 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
4585 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004586 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004587 }
Richard Smith79363f52012-02-27 06:07:25 +00004588 // C++11 [class.ctor]p5: any non-variant non-static data member of
4589 // const-qualified type (or array thereof) with no
4590 // brace-or-equal-initializer does not have a user-provided default
4591 // constructor.
4592 if (!inUnion() && FieldType.isConstQualified() &&
4593 !FD->hasInClassInitializer() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004594 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
4595 if (Diagnose)
4596 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004597 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith79363f52012-02-27 06:07:25 +00004598 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004599 }
4600
4601 if (inUnion() && !FieldType.isConstQualified())
4602 AllFieldsAreConst = false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004603 } else if (CSM == Sema::CXXCopyConstructor) {
4604 // For a copy constructor, data members must not be of rvalue reference
4605 // type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004606 if (FieldType->isRValueReferenceType()) {
4607 if (Diagnose)
4608 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
4609 << MD->getParent() << FD << FieldType;
Richard Smith7d5088a2012-02-18 02:02:13 +00004610 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004611 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004612 } else if (IsAssignment) {
4613 // For an assignment operator, data members must not be of reference type.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004614 if (FieldType->isReferenceType()) {
4615 if (Diagnose)
4616 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
4617 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smith7d5088a2012-02-18 02:02:13 +00004618 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004619 }
4620 if (!FieldRecord && FieldType.isConstQualified()) {
4621 // C++11 [class.copy]p23:
4622 // -- a non-static data member of const non-class type (or array thereof)
4623 if (Diagnose)
4624 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smitha2e76f52012-04-29 06:32:34 +00004625 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004626 return true;
4627 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004628 }
4629
4630 if (FieldRecord) {
Richard Smith7d5088a2012-02-18 02:02:13 +00004631 // Some additional restrictions exist on the variant members.
4632 if (!inUnion() && FieldRecord->isUnion() &&
4633 FieldRecord->isAnonymousStructOrUnion()) {
4634 bool AllVariantFieldsAreConst = true;
4635
Richard Smithdf8dc862012-03-29 19:00:10 +00004636 // FIXME: Handle anonymous unions declared within anonymous unions.
Richard Smith7d5088a2012-02-18 02:02:13 +00004637 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
4638 UE = FieldRecord->field_end();
4639 UI != UE; ++UI) {
4640 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smith7d5088a2012-02-18 02:02:13 +00004641
4642 if (!UnionFieldType.isConstQualified())
4643 AllVariantFieldsAreConst = false;
4644
Richard Smith9a561d52012-02-26 09:11:52 +00004645 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
4646 if (UnionFieldRecord &&
Richard Smith517bb842012-07-18 03:51:16 +00004647 shouldDeleteForClassSubobject(UnionFieldRecord, *UI,
4648 UnionFieldType.getCVRQualifiers()))
Richard Smith9a561d52012-02-26 09:11:52 +00004649 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004650 }
4651
4652 // At least one member in each anonymous union must be non-const
Douglas Gregor221c27f2012-02-24 21:25:53 +00004653 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004654 FieldRecord->field_begin() != FieldRecord->field_end()) {
4655 if (Diagnose)
4656 S.Diag(FieldRecord->getLocation(),
4657 diag::note_deleted_default_ctor_all_const)
4658 << MD->getParent() << /*anonymous union*/1;
Richard Smith7d5088a2012-02-18 02:02:13 +00004659 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004660 }
Richard Smith7d5088a2012-02-18 02:02:13 +00004661
Richard Smithdf8dc862012-03-29 19:00:10 +00004662 // Don't check the implicit member of the anonymous union type.
Richard Smith7d5088a2012-02-18 02:02:13 +00004663 // This is technically non-conformant, but sanity demands it.
4664 return false;
4665 }
4666
Richard Smith517bb842012-07-18 03:51:16 +00004667 if (shouldDeleteForClassSubobject(FieldRecord, FD,
4668 FieldType.getCVRQualifiers()))
Richard Smithdf8dc862012-03-29 19:00:10 +00004669 return true;
Richard Smith7d5088a2012-02-18 02:02:13 +00004670 }
4671
4672 return false;
4673}
4674
4675/// C++11 [class.ctor] p5:
4676/// A defaulted default constructor for a class X is defined as deleted if
4677/// X is a union and all of its variant members are of const-qualified type.
4678bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor221c27f2012-02-24 21:25:53 +00004679 // This is a silly definition, because it gives an empty union a deleted
4680 // default constructor. Don't do that.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004681 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
4682 (MD->getParent()->field_begin() != MD->getParent()->field_end())) {
4683 if (Diagnose)
4684 S.Diag(MD->getParent()->getLocation(),
4685 diag::note_deleted_default_ctor_all_const)
4686 << MD->getParent() << /*not anonymous union*/0;
4687 return true;
4688 }
4689 return false;
Richard Smith7d5088a2012-02-18 02:02:13 +00004690}
4691
4692/// Determine whether a defaulted special member function should be defined as
4693/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
4694/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith6c4c36c2012-03-30 20:53:28 +00004695bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
4696 bool Diagnose) {
Richard Smitheef00292012-08-06 02:25:10 +00004697 if (MD->isInvalidDecl())
4698 return false;
Sean Hunte16da072011-10-10 06:18:57 +00004699 CXXRecordDecl *RD = MD->getParent();
Sean Huntcdee3fe2011-05-11 22:34:38 +00004700 assert(!RD->isDependentType() && "do deletion after instantiation");
Richard Smith80ad52f2013-01-02 11:42:31 +00004701 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004702 return false;
4703
Richard Smith7d5088a2012-02-18 02:02:13 +00004704 // C++11 [expr.lambda.prim]p19:
4705 // The closure type associated with a lambda-expression has a
4706 // deleted (8.4.3) default constructor and a deleted copy
4707 // assignment operator.
4708 if (RD->isLambda() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004709 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
4710 if (Diagnose)
4711 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smith7d5088a2012-02-18 02:02:13 +00004712 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004713 }
4714
Richard Smith5bdaac52012-04-02 20:59:25 +00004715 // For an anonymous struct or union, the copy and assignment special members
4716 // will never be used, so skip the check. For an anonymous union declared at
4717 // namespace scope, the constructor and destructor are used.
4718 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
4719 RD->isAnonymousStructOrUnion())
4720 return false;
4721
Richard Smith6c4c36c2012-03-30 20:53:28 +00004722 // C++11 [class.copy]p7, p18:
4723 // If the class definition declares a move constructor or move assignment
4724 // operator, an implicitly declared copy constructor or copy assignment
4725 // operator is defined as deleted.
4726 if (MD->isImplicit() &&
4727 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
4728 CXXMethodDecl *UserDeclaredMove = 0;
4729
4730 // In Microsoft mode, a user-declared move only causes the deletion of the
4731 // corresponding copy operation, not both copy operations.
4732 if (RD->hasUserDeclaredMoveConstructor() &&
4733 (!getLangOpts().MicrosoftMode || CSM == CXXCopyConstructor)) {
4734 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004735
4736 // Find any user-declared move constructor.
4737 for (CXXRecordDecl::ctor_iterator I = RD->ctor_begin(),
4738 E = RD->ctor_end(); I != E; ++I) {
4739 if (I->isMoveConstructor()) {
4740 UserDeclaredMove = *I;
4741 break;
4742 }
4743 }
Richard Smith1c931be2012-04-02 18:40:40 +00004744 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004745 } else if (RD->hasUserDeclaredMoveAssignment() &&
4746 (!getLangOpts().MicrosoftMode || CSM == CXXCopyAssignment)) {
4747 if (!Diagnose) return true;
Richard Smith55798652012-12-08 04:10:18 +00004748
4749 // Find any user-declared move assignment operator.
4750 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
4751 E = RD->method_end(); I != E; ++I) {
4752 if (I->isMoveAssignmentOperator()) {
4753 UserDeclaredMove = *I;
4754 break;
4755 }
4756 }
Richard Smith1c931be2012-04-02 18:40:40 +00004757 assert(UserDeclaredMove);
Richard Smith6c4c36c2012-03-30 20:53:28 +00004758 }
4759
4760 if (UserDeclaredMove) {
4761 Diag(UserDeclaredMove->getLocation(),
4762 diag::note_deleted_copy_user_declared_move)
Richard Smithe6af6602012-04-02 21:07:48 +00004763 << (CSM == CXXCopyAssignment) << RD
Richard Smith6c4c36c2012-03-30 20:53:28 +00004764 << UserDeclaredMove->isMoveAssignmentOperator();
4765 return true;
4766 }
4767 }
Sean Hunte16da072011-10-10 06:18:57 +00004768
Richard Smith5bdaac52012-04-02 20:59:25 +00004769 // Do access control from the special member function
4770 ContextRAII MethodContext(*this, MD);
4771
Richard Smith9a561d52012-02-26 09:11:52 +00004772 // C++11 [class.dtor]p5:
4773 // -- for a virtual destructor, lookup of the non-array deallocation function
4774 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith6c4c36c2012-03-30 20:53:28 +00004775 if (CSM == CXXDestructor && MD->isVirtual()) {
Richard Smith9a561d52012-02-26 09:11:52 +00004776 FunctionDecl *OperatorDelete = 0;
4777 DeclarationName Name =
4778 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
4779 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith6c4c36c2012-03-30 20:53:28 +00004780 OperatorDelete, false)) {
4781 if (Diagnose)
4782 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith9a561d52012-02-26 09:11:52 +00004783 return true;
Richard Smith6c4c36c2012-03-30 20:53:28 +00004784 }
Richard Smith9a561d52012-02-26 09:11:52 +00004785 }
4786
Richard Smith6c4c36c2012-03-30 20:53:28 +00004787 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Sean Huntcdee3fe2011-05-11 22:34:38 +00004788
Sean Huntcdee3fe2011-05-11 22:34:38 +00004789 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004790 BE = RD->bases_end(); BI != BE; ++BI)
4791 if (!BI->isVirtual() &&
Richard Smith6c4c36c2012-03-30 20:53:28 +00004792 SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004793 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004794
4795 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004796 BE = RD->vbases_end(); BI != BE; ++BI)
Richard Smith6c4c36c2012-03-30 20:53:28 +00004797 if (SMI.shouldDeleteForBase(BI))
Richard Smith7d5088a2012-02-18 02:02:13 +00004798 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004799
4800 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
Richard Smith7d5088a2012-02-18 02:02:13 +00004801 FE = RD->field_end(); FI != FE; ++FI)
4802 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
David Blaikie581deb32012-06-06 20:45:41 +00004803 SMI.shouldDeleteForField(*FI))
Sean Hunte3406822011-05-20 21:43:47 +00004804 return true;
Sean Huntcdee3fe2011-05-11 22:34:38 +00004805
Richard Smith7d5088a2012-02-18 02:02:13 +00004806 if (SMI.shouldDeleteForAllConstMembers())
Sean Huntcdee3fe2011-05-11 22:34:38 +00004807 return true;
4808
4809 return false;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00004810}
4811
Richard Smithac713512012-12-08 02:53:02 +00004812/// Perform lookup for a special member of the specified kind, and determine
4813/// whether it is trivial. If the triviality can be determined without the
4814/// lookup, skip it. This is intended for use when determining whether a
4815/// special member of a containing object is trivial, and thus does not ever
4816/// perform overload resolution for default constructors.
4817///
4818/// If \p Selected is not \c NULL, \c *Selected will be filled in with the
4819/// member that was most likely to be intended to be trivial, if any.
4820static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
4821 Sema::CXXSpecialMember CSM, unsigned Quals,
4822 CXXMethodDecl **Selected) {
4823 if (Selected)
4824 *Selected = 0;
4825
4826 switch (CSM) {
4827 case Sema::CXXInvalid:
4828 llvm_unreachable("not a special member");
4829
4830 case Sema::CXXDefaultConstructor:
4831 // C++11 [class.ctor]p5:
4832 // A default constructor is trivial if:
4833 // - all the [direct subobjects] have trivial default constructors
4834 //
4835 // Note, no overload resolution is performed in this case.
4836 if (RD->hasTrivialDefaultConstructor())
4837 return true;
4838
4839 if (Selected) {
4840 // If there's a default constructor which could have been trivial, dig it
4841 // out. Otherwise, if there's any user-provided default constructor, point
4842 // to that as an example of why there's not a trivial one.
4843 CXXConstructorDecl *DefCtor = 0;
4844 if (RD->needsImplicitDefaultConstructor())
4845 S.DeclareImplicitDefaultConstructor(RD);
4846 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(),
4847 CE = RD->ctor_end(); CI != CE; ++CI) {
4848 if (!CI->isDefaultConstructor())
4849 continue;
4850 DefCtor = *CI;
4851 if (!DefCtor->isUserProvided())
4852 break;
4853 }
4854
4855 *Selected = DefCtor;
4856 }
4857
4858 return false;
4859
4860 case Sema::CXXDestructor:
4861 // C++11 [class.dtor]p5:
4862 // A destructor is trivial if:
4863 // - all the direct [subobjects] have trivial destructors
4864 if (RD->hasTrivialDestructor())
4865 return true;
4866
4867 if (Selected) {
4868 if (RD->needsImplicitDestructor())
4869 S.DeclareImplicitDestructor(RD);
4870 *Selected = RD->getDestructor();
4871 }
4872
4873 return false;
4874
4875 case Sema::CXXCopyConstructor:
4876 // C++11 [class.copy]p12:
4877 // A copy constructor is trivial if:
4878 // - the constructor selected to copy each direct [subobject] is trivial
4879 if (RD->hasTrivialCopyConstructor()) {
4880 if (Quals == Qualifiers::Const)
4881 // We must either select the trivial copy constructor or reach an
4882 // ambiguity; no need to actually perform overload resolution.
4883 return true;
4884 } else if (!Selected) {
4885 return false;
4886 }
4887 // In C++98, we are not supposed to perform overload resolution here, but we
4888 // treat that as a language defect, as suggested on cxx-abi-dev, to treat
4889 // cases like B as having a non-trivial copy constructor:
4890 // struct A { template<typename T> A(T&); };
4891 // struct B { mutable A a; };
4892 goto NeedOverloadResolution;
4893
4894 case Sema::CXXCopyAssignment:
4895 // C++11 [class.copy]p25:
4896 // A copy assignment operator is trivial if:
4897 // - the assignment operator selected to copy each direct [subobject] is
4898 // trivial
4899 if (RD->hasTrivialCopyAssignment()) {
4900 if (Quals == Qualifiers::Const)
4901 return true;
4902 } else if (!Selected) {
4903 return false;
4904 }
4905 // In C++98, we are not supposed to perform overload resolution here, but we
4906 // treat that as a language defect.
4907 goto NeedOverloadResolution;
4908
4909 case Sema::CXXMoveConstructor:
4910 case Sema::CXXMoveAssignment:
4911 NeedOverloadResolution:
4912 Sema::SpecialMemberOverloadResult *SMOR =
4913 S.LookupSpecialMember(RD, CSM,
4914 Quals & Qualifiers::Const,
4915 Quals & Qualifiers::Volatile,
4916 /*RValueThis*/false, /*ConstThis*/false,
4917 /*VolatileThis*/false);
4918
4919 // The standard doesn't describe how to behave if the lookup is ambiguous.
4920 // We treat it as not making the member non-trivial, just like the standard
4921 // mandates for the default constructor. This should rarely matter, because
4922 // the member will also be deleted.
4923 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
4924 return true;
4925
4926 if (!SMOR->getMethod()) {
4927 assert(SMOR->getKind() ==
4928 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
4929 return false;
4930 }
4931
4932 // We deliberately don't check if we found a deleted special member. We're
4933 // not supposed to!
4934 if (Selected)
4935 *Selected = SMOR->getMethod();
4936 return SMOR->getMethod()->isTrivial();
4937 }
4938
4939 llvm_unreachable("unknown special method kind");
4940}
4941
4942CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
4943 for (CXXRecordDecl::ctor_iterator CI = RD->ctor_begin(), CE = RD->ctor_end();
4944 CI != CE; ++CI)
4945 if (!CI->isImplicit())
4946 return *CI;
4947
4948 // Look for constructor templates.
4949 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
4950 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
4951 if (CXXConstructorDecl *CD =
4952 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
4953 return CD;
4954 }
4955
4956 return 0;
4957}
4958
4959/// The kind of subobject we are checking for triviality. The values of this
4960/// enumeration are used in diagnostics.
4961enum TrivialSubobjectKind {
4962 /// The subobject is a base class.
4963 TSK_BaseClass,
4964 /// The subobject is a non-static data member.
4965 TSK_Field,
4966 /// The object is actually the complete object.
4967 TSK_CompleteObject
4968};
4969
4970/// Check whether the special member selected for a given type would be trivial.
4971static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
4972 QualType SubType,
4973 Sema::CXXSpecialMember CSM,
4974 TrivialSubobjectKind Kind,
4975 bool Diagnose) {
4976 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
4977 if (!SubRD)
4978 return true;
4979
4980 CXXMethodDecl *Selected;
4981 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
4982 Diagnose ? &Selected : 0))
4983 return true;
4984
4985 if (Diagnose) {
4986 if (!Selected && CSM == Sema::CXXDefaultConstructor) {
4987 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
4988 << Kind << SubType.getUnqualifiedType();
4989 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
4990 S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
4991 } else if (!Selected)
4992 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
4993 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
4994 else if (Selected->isUserProvided()) {
4995 if (Kind == TSK_CompleteObject)
4996 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
4997 << Kind << SubType.getUnqualifiedType() << CSM;
4998 else {
4999 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
5000 << Kind << SubType.getUnqualifiedType() << CSM;
5001 S.Diag(Selected->getLocation(), diag::note_declared_at);
5002 }
5003 } else {
5004 if (Kind != TSK_CompleteObject)
5005 S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
5006 << Kind << SubType.getUnqualifiedType() << CSM;
5007
5008 // Explain why the defaulted or deleted special member isn't trivial.
5009 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
5010 }
5011 }
5012
5013 return false;
5014}
5015
5016/// Check whether the members of a class type allow a special member to be
5017/// trivial.
5018static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
5019 Sema::CXXSpecialMember CSM,
5020 bool ConstArg, bool Diagnose) {
5021 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
5022 FE = RD->field_end(); FI != FE; ++FI) {
5023 if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
5024 continue;
5025
5026 QualType FieldType = S.Context.getBaseElementType(FI->getType());
5027
5028 // Pretend anonymous struct or union members are members of this class.
5029 if (FI->isAnonymousStructOrUnion()) {
5030 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
5031 CSM, ConstArg, Diagnose))
5032 return false;
5033 continue;
5034 }
5035
5036 // C++11 [class.ctor]p5:
5037 // A default constructor is trivial if [...]
5038 // -- no non-static data member of its class has a
5039 // brace-or-equal-initializer
5040 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
5041 if (Diagnose)
5042 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << *FI;
5043 return false;
5044 }
5045
5046 // Objective C ARC 4.3.5:
5047 // [...] nontrivally ownership-qualified types are [...] not trivially
5048 // default constructible, copy constructible, move constructible, copy
5049 // assignable, move assignable, or destructible [...]
5050 if (S.getLangOpts().ObjCAutoRefCount &&
5051 FieldType.hasNonTrivialObjCLifetime()) {
5052 if (Diagnose)
5053 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
5054 << RD << FieldType.getObjCLifetime();
5055 return false;
5056 }
5057
5058 if (ConstArg && !FI->isMutable())
5059 FieldType.addConst();
5060 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, CSM,
5061 TSK_Field, Diagnose))
5062 return false;
5063 }
5064
5065 return true;
5066}
5067
5068/// Diagnose why the specified class does not have a trivial special member of
5069/// the given kind.
5070void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
5071 QualType Ty = Context.getRecordType(RD);
5072 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)
5073 Ty.addConst();
5074
5075 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, CSM,
5076 TSK_CompleteObject, /*Diagnose*/true);
5077}
5078
5079/// Determine whether a defaulted or deleted special member function is trivial,
5080/// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
5081/// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
5082bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
5083 bool Diagnose) {
Richard Smithac713512012-12-08 02:53:02 +00005084 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
5085
5086 CXXRecordDecl *RD = MD->getParent();
5087
5088 bool ConstArg = false;
5089 ParmVarDecl *Param0 = MD->getNumParams() ? MD->getParamDecl(0) : 0;
5090
5091 // C++11 [class.copy]p12, p25:
5092 // A [special member] is trivial if its declared parameter type is the same
5093 // as if it had been implicitly declared [...]
5094 switch (CSM) {
5095 case CXXDefaultConstructor:
5096 case CXXDestructor:
5097 // Trivial default constructors and destructors cannot have parameters.
5098 break;
5099
5100 case CXXCopyConstructor:
5101 case CXXCopyAssignment: {
5102 // Trivial copy operations always have const, non-volatile parameter types.
5103 ConstArg = true;
5104 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
5105 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
5106 if (Diagnose)
5107 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5108 << Param0->getSourceRange() << Param0->getType()
5109 << Context.getLValueReferenceType(
5110 Context.getRecordType(RD).withConst());
5111 return false;
5112 }
5113 break;
5114 }
5115
5116 case CXXMoveConstructor:
5117 case CXXMoveAssignment: {
5118 // Trivial move operations always have non-cv-qualified parameters.
5119 const RValueReferenceType *RT =
5120 Param0->getType()->getAs<RValueReferenceType>();
5121 if (!RT || RT->getPointeeType().getCVRQualifiers()) {
5122 if (Diagnose)
5123 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5124 << Param0->getSourceRange() << Param0->getType()
5125 << Context.getRValueReferenceType(Context.getRecordType(RD));
5126 return false;
5127 }
5128 break;
5129 }
5130
5131 case CXXInvalid:
5132 llvm_unreachable("not a special member");
5133 }
5134
5135 // FIXME: We require that the parameter-declaration-clause is equivalent to
5136 // that of an implicit declaration, not just that the declared parameter type
5137 // matches, in order to prevent absuridities like a function simultaneously
5138 // being a trivial copy constructor and a non-trivial default constructor.
5139 // This issue has not yet been assigned a core issue number.
5140 if (MD->getMinRequiredArguments() < MD->getNumParams()) {
5141 if (Diagnose)
5142 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
5143 diag::note_nontrivial_default_arg)
5144 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
5145 return false;
5146 }
5147 if (MD->isVariadic()) {
5148 if (Diagnose)
5149 Diag(MD->getLocation(), diag::note_nontrivial_variadic);
5150 return false;
5151 }
5152
5153 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5154 // A copy/move [constructor or assignment operator] is trivial if
5155 // -- the [member] selected to copy/move each direct base class subobject
5156 // is trivial
5157 //
5158 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5159 // A [default constructor or destructor] is trivial if
5160 // -- all the direct base classes have trivial [default constructors or
5161 // destructors]
5162 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
5163 BE = RD->bases_end(); BI != BE; ++BI)
5164 if (!checkTrivialSubobjectCall(*this, BI->getLocStart(),
5165 ConstArg ? BI->getType().withConst()
5166 : BI->getType(),
5167 CSM, TSK_BaseClass, Diagnose))
5168 return false;
5169
5170 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5171 // A copy/move [constructor or assignment operator] for a class X is
5172 // trivial if
5173 // -- for each non-static data member of X that is of class type (or array
5174 // thereof), the constructor selected to copy/move that member is
5175 // trivial
5176 //
5177 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5178 // A [default constructor or destructor] is trivial if
5179 // -- for all of the non-static data members of its class that are of class
5180 // type (or array thereof), each such class has a trivial [default
5181 // constructor or destructor]
5182 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
5183 return false;
5184
5185 // C++11 [class.dtor]p5:
5186 // A destructor is trivial if [...]
5187 // -- the destructor is not virtual
5188 if (CSM == CXXDestructor && MD->isVirtual()) {
5189 if (Diagnose)
5190 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
5191 return false;
5192 }
5193
5194 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
5195 // A [special member] for class X is trivial if [...]
5196 // -- class X has no virtual functions and no virtual base classes
5197 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
5198 if (!Diagnose)
5199 return false;
5200
5201 if (RD->getNumVBases()) {
5202 // Check for virtual bases. We already know that the corresponding
5203 // member in all bases is trivial, so vbases must all be direct.
5204 CXXBaseSpecifier &BS = *RD->vbases_begin();
5205 assert(BS.isVirtual());
5206 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
5207 return false;
5208 }
5209
5210 // Must have a virtual method.
5211 for (CXXRecordDecl::method_iterator MI = RD->method_begin(),
5212 ME = RD->method_end(); MI != ME; ++MI) {
5213 if (MI->isVirtual()) {
5214 SourceLocation MLoc = MI->getLocStart();
5215 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
5216 return false;
5217 }
5218 }
5219
5220 llvm_unreachable("dynamic class with no vbases and no virtual functions");
5221 }
5222
5223 // Looks like it's trivial!
5224 return true;
5225}
5226
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005227/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005228namespace {
5229 struct FindHiddenVirtualMethodData {
5230 Sema *S;
5231 CXXMethodDecl *Method;
5232 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005233 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramerc54061a2011-03-04 13:12:48 +00005234 };
5235}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005236
David Blaikie5f750682012-10-19 00:53:08 +00005237/// \brief Check whether any most overriden method from MD in Methods
5238static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
5239 const llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5240 if (MD->size_overridden_methods() == 0)
5241 return Methods.count(MD->getCanonicalDecl());
5242 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5243 E = MD->end_overridden_methods();
5244 I != E; ++I)
5245 if (CheckMostOverridenMethods(*I, Methods))
5246 return true;
5247 return false;
5248}
5249
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005250/// \brief Member lookup function that determines whether a given C++
5251/// method overloads virtual methods in a base class without overriding any,
5252/// to be used with CXXRecordDecl::lookupInBases().
5253static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
5254 CXXBasePath &Path,
5255 void *UserData) {
5256 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
5257
5258 FindHiddenVirtualMethodData &Data
5259 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
5260
5261 DeclarationName Name = Data.Method->getDeclName();
5262 assert(Name.getNameKind() == DeclarationName::Identifier);
5263
5264 bool foundSameNameMethod = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005265 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005266 for (Path.Decls = BaseRecord->lookup(Name);
David Blaikie3bc93e32012-12-19 00:45:41 +00005267 !Path.Decls.empty();
5268 Path.Decls = Path.Decls.slice(1)) {
5269 NamedDecl *D = Path.Decls.front();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005270 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00005271 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005272 foundSameNameMethod = true;
5273 // Interested only in hidden virtual methods.
5274 if (!MD->isVirtual())
5275 continue;
5276 // If the method we are checking overrides a method from its base
5277 // don't warn about the other overloaded methods.
5278 if (!Data.S->IsOverload(Data.Method, MD, false))
5279 return true;
5280 // Collect the overload only if its hidden.
David Blaikie5f750682012-10-19 00:53:08 +00005281 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005282 overloadedMethods.push_back(MD);
5283 }
5284 }
5285
5286 if (foundSameNameMethod)
5287 Data.OverloadedMethods.append(overloadedMethods.begin(),
5288 overloadedMethods.end());
5289 return foundSameNameMethod;
5290}
5291
David Blaikie5f750682012-10-19 00:53:08 +00005292/// \brief Add the most overriden methods from MD to Methods
5293static void AddMostOverridenMethods(const CXXMethodDecl *MD,
5294 llvm::SmallPtrSet<const CXXMethodDecl *, 8>& Methods) {
5295 if (MD->size_overridden_methods() == 0)
5296 Methods.insert(MD->getCanonicalDecl());
5297 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5298 E = MD->end_overridden_methods();
5299 I != E; ++I)
5300 AddMostOverridenMethods(*I, Methods);
5301}
5302
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005303/// \brief See if a method overloads virtual methods in a base class without
5304/// overriding any.
5305void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
5306 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
David Blaikied6471f72011-09-25 23:23:43 +00005307 MD->getLocation()) == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005308 return;
Benjamin Kramerc4704422012-05-19 16:03:58 +00005309 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005310 return;
5311
5312 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
5313 /*bool RecordPaths=*/false,
5314 /*bool DetectVirtual=*/false);
5315 FindHiddenVirtualMethodData Data;
5316 Data.Method = MD;
5317 Data.S = this;
5318
5319 // Keep the base methods that were overriden or introduced in the subclass
5320 // by 'using' in a set. A base method not in this set is hidden.
David Blaikie3bc93e32012-12-19 00:45:41 +00005321 DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
5322 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
5323 NamedDecl *ND = *I;
5324 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
David Blaikie5f750682012-10-19 00:53:08 +00005325 ND = shad->getTargetDecl();
5326 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
5327 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00005328 }
5329
5330 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
5331 !Data.OverloadedMethods.empty()) {
5332 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
5333 << MD << (Data.OverloadedMethods.size() > 1);
5334
5335 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
5336 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
5337 Diag(overloadedMD->getLocation(),
5338 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
5339 }
5340 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005341}
5342
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005343void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00005344 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005345 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00005346 SourceLocation RBrac,
5347 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005348 if (!TagDecl)
5349 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005350
Douglas Gregor42af25f2009-05-11 19:58:34 +00005351 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00005352
Rafael Espindolaf729ce02012-07-12 04:32:30 +00005353 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
5354 if (l->getKind() != AttributeList::AT_Visibility)
5355 continue;
5356 l->setInvalid();
5357 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
5358 l->getName();
5359 }
5360
David Blaikie77b6de02011-09-22 02:58:26 +00005361 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCalld226f652010-08-21 09:40:31 +00005362 // strict aliasing violation!
5363 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie77b6de02011-09-22 02:58:26 +00005364 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00005365
Douglas Gregor23c94db2010-07-02 17:43:08 +00005366 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00005367 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00005368}
5369
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005370/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
5371/// special functions, such as the default constructor, copy
5372/// constructor, or destructor, to the given C++ class (C++
5373/// [special]p1). This routine can only be executed just before the
5374/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00005375void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00005376 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00005377 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005378
Richard Smithbc2a35d2012-12-08 08:32:28 +00005379 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005380 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005381
Richard Smithbc2a35d2012-12-08 08:32:28 +00005382 // If the properties or semantics of the copy constructor couldn't be
5383 // determined while the class was being declared, force a declaration
5384 // of it now.
5385 if (ClassDecl->needsOverloadResolutionForCopyConstructor())
5386 DeclareImplicitCopyConstructor(ClassDecl);
5387 }
5388
Richard Smith80ad52f2013-01-02 11:42:31 +00005389 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00005390 ++ASTContext::NumImplicitMoveConstructors;
5391
Richard Smithbc2a35d2012-12-08 08:32:28 +00005392 if (ClassDecl->needsOverloadResolutionForMoveConstructor())
5393 DeclareImplicitMoveConstructor(ClassDecl);
5394 }
5395
Douglas Gregora376d102010-07-02 21:50:04 +00005396 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
5397 ++ASTContext::NumImplicitCopyAssignmentOperators;
Richard Smithbc2a35d2012-12-08 08:32:28 +00005398
5399 // If we have a dynamic class, then the copy assignment operator may be
Douglas Gregora376d102010-07-02 21:50:04 +00005400 // virtual, so we have to declare it immediately. This ensures that, e.g.,
Richard Smithbc2a35d2012-12-08 08:32:28 +00005401 // it shows up in the right place in the vtable and that we diagnose
5402 // problems with the implicit exception specification.
5403 if (ClassDecl->isDynamicClass() ||
5404 ClassDecl->needsOverloadResolutionForCopyAssignment())
Douglas Gregora376d102010-07-02 21:50:04 +00005405 DeclareImplicitCopyAssignment(ClassDecl);
5406 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005407
Richard Smith80ad52f2013-01-02 11:42:31 +00005408 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smithb701d3d2011-12-24 21:56:24 +00005409 ++ASTContext::NumImplicitMoveAssignmentOperators;
5410
5411 // Likewise for the move assignment operator.
Richard Smithbc2a35d2012-12-08 08:32:28 +00005412 if (ClassDecl->isDynamicClass() ||
5413 ClassDecl->needsOverloadResolutionForMoveAssignment())
Richard Smithb701d3d2011-12-24 21:56:24 +00005414 DeclareImplicitMoveAssignment(ClassDecl);
5415 }
5416
Douglas Gregor4923aa22010-07-02 20:37:36 +00005417 if (!ClassDecl->hasUserDeclaredDestructor()) {
5418 ++ASTContext::NumImplicitDestructors;
Richard Smithbc2a35d2012-12-08 08:32:28 +00005419
5420 // If we have a dynamic class, then the destructor may be virtual, so we
Douglas Gregor4923aa22010-07-02 20:37:36 +00005421 // have to declare the destructor immediately. This ensures that, e.g., it
5422 // shows up in the right place in the vtable and that we diagnose problems
5423 // with the implicit exception specification.
Richard Smithbc2a35d2012-12-08 08:32:28 +00005424 if (ClassDecl->isDynamicClass() ||
5425 ClassDecl->needsOverloadResolutionForDestructor())
Douglas Gregor4923aa22010-07-02 20:37:36 +00005426 DeclareImplicitDestructor(ClassDecl);
5427 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00005428}
5429
Francois Pichet8387e2a2011-04-22 22:18:13 +00005430void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
5431 if (!D)
5432 return;
5433
5434 int NumParamList = D->getNumTemplateParameterLists();
5435 for (int i = 0; i < NumParamList; i++) {
5436 TemplateParameterList* Params = D->getTemplateParameterList(i);
5437 for (TemplateParameterList::iterator Param = Params->begin(),
5438 ParamEnd = Params->end();
5439 Param != ParamEnd; ++Param) {
5440 NamedDecl *Named = cast<NamedDecl>(*Param);
5441 if (Named->getDeclName()) {
5442 S->AddDecl(Named);
5443 IdResolver.AddDecl(Named);
5444 }
5445 }
5446 }
5447}
5448
John McCalld226f652010-08-21 09:40:31 +00005449void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00005450 if (!D)
5451 return;
5452
5453 TemplateParameterList *Params = 0;
5454 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
5455 Params = Template->getTemplateParameters();
5456 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5457 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
5458 Params = PartialSpec->getTemplateParameters();
5459 else
Douglas Gregor6569d682009-05-27 23:11:45 +00005460 return;
5461
Douglas Gregor6569d682009-05-27 23:11:45 +00005462 for (TemplateParameterList::iterator Param = Params->begin(),
5463 ParamEnd = Params->end();
5464 Param != ParamEnd; ++Param) {
5465 NamedDecl *Named = cast<NamedDecl>(*Param);
5466 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00005467 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00005468 IdResolver.AddDecl(Named);
5469 }
5470 }
5471}
5472
John McCalld226f652010-08-21 09:40:31 +00005473void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005474 if (!RecordD) return;
5475 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00005476 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00005477 PushDeclContext(S, Record);
5478}
5479
John McCalld226f652010-08-21 09:40:31 +00005480void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00005481 if (!RecordD) return;
5482 PopDeclContext();
5483}
5484
Douglas Gregor72b505b2008-12-16 21:30:33 +00005485/// ActOnStartDelayedCXXMethodDeclaration - We have completed
5486/// parsing a top-level (non-nested) C++ class, and we are now
5487/// parsing those parts of the given Method declaration that could
5488/// not be parsed earlier (C++ [class.mem]p2), such as default
5489/// arguments. This action should enter the scope of the given
5490/// Method declaration as if we had just parsed the qualified method
5491/// name. However, it should not bring the parameters into scope;
5492/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00005493void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005494}
5495
5496/// ActOnDelayedCXXMethodParameter - We've already started a delayed
5497/// C++ method declaration. We're (re-)introducing the given
5498/// function parameter into scope for use in parsing later parts of
5499/// the method declaration. For example, we could see an
5500/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00005501void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005502 if (!ParamD)
5503 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005504
John McCalld226f652010-08-21 09:40:31 +00005505 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00005506
5507 // If this parameter has an unparsed default argument, clear it out
5508 // to make way for the parsed default argument.
5509 if (Param->hasUnparsedDefaultArg())
5510 Param->setDefaultArg(0);
5511
John McCalld226f652010-08-21 09:40:31 +00005512 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005513 if (Param->getDeclName())
5514 IdResolver.AddDecl(Param);
5515}
5516
5517/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
5518/// processing the delayed method declaration for Method. The method
5519/// declaration is now considered finished. There may be a separate
5520/// ActOnStartOfFunctionDef action later (not necessarily
5521/// immediately!) for this method, if it was also defined inside the
5522/// class body.
John McCalld226f652010-08-21 09:40:31 +00005523void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00005524 if (!MethodD)
5525 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005526
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005527 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00005528
John McCalld226f652010-08-21 09:40:31 +00005529 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005530
5531 // Now that we have our default arguments, check the constructor
5532 // again. It could produce additional diagnostics or affect whether
5533 // the class has implicitly-declared destructors, among other
5534 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00005535 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
5536 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00005537
5538 // Check the default arguments, which we may have added.
5539 if (!Method->isInvalidDecl())
5540 CheckCXXDefaultArguments(Method);
5541}
5542
Douglas Gregor42a552f2008-11-05 20:51:48 +00005543/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00005544/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00005545/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005546/// emit diagnostics and set the invalid bit to true. In any case, the type
5547/// will be updated to reflect a well-formed type for the constructor and
5548/// returned.
5549QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005550 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005551 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005552
5553 // C++ [class.ctor]p3:
5554 // A constructor shall not be virtual (10.3) or static (9.4). A
5555 // constructor can be invoked for a const, volatile or const
5556 // volatile object. A constructor shall not be declared const,
5557 // volatile, or const volatile (9.3.2).
5558 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00005559 if (!D.isInvalidType())
5560 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5561 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
5562 << SourceRange(D.getIdentifierLoc());
5563 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005564 }
John McCalld931b082010-08-26 03:08:43 +00005565 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005566 if (!D.isInvalidType())
5567 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
5568 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5569 << SourceRange(D.getIdentifierLoc());
5570 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005571 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005572 }
Mike Stump1eb44332009-09-09 15:08:12 +00005573
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005574 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005575 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00005576 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005577 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5578 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005579 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005580 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5581 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005582 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005583 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
5584 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00005585 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005586 }
Mike Stump1eb44332009-09-09 15:08:12 +00005587
Douglas Gregorc938c162011-01-26 05:01:58 +00005588 // C++0x [class.ctor]p4:
5589 // A constructor shall not be declared with a ref-qualifier.
5590 if (FTI.hasRefQualifier()) {
5591 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
5592 << FTI.RefQualifierIsLValueRef
5593 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5594 D.setInvalidType();
5595 }
5596
Douglas Gregor42a552f2008-11-05 20:51:48 +00005597 // Rebuild the function type "R" without any type qualifiers (in
5598 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00005599 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00005600 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005601 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
5602 return R;
5603
5604 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5605 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005606 EPI.RefQualifier = RQ_None;
5607
Chris Lattner65401802009-04-25 08:28:21 +00005608 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00005609 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005610}
5611
Douglas Gregor72b505b2008-12-16 21:30:33 +00005612/// CheckConstructor - Checks a fully-formed constructor for
5613/// well-formedness, issuing any diagnostics required. Returns true if
5614/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00005615void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00005616 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00005617 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
5618 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00005619 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005620
5621 // C++ [class.copy]p3:
5622 // A declaration of a constructor for a class X is ill-formed if
5623 // its first parameter is of type (optionally cv-qualified) X and
5624 // either there are no other parameters or else all other
5625 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00005626 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00005627 ((Constructor->getNumParams() == 1) ||
5628 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00005629 Constructor->getParamDecl(1)->hasDefaultArg())) &&
5630 Constructor->getTemplateSpecializationKind()
5631 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00005632 QualType ParamType = Constructor->getParamDecl(0)->getType();
5633 QualType ClassTy = Context.getTagDeclType(ClassDecl);
5634 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00005635 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005636 const char *ConstRef
5637 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
5638 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00005639 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00005640 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00005641
5642 // FIXME: Rather that making the constructor invalid, we should endeavor
5643 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00005644 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00005645 }
5646 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00005647}
5648
John McCall15442822010-08-04 01:04:25 +00005649/// CheckDestructor - Checks a fully-formed destructor definition for
5650/// well-formedness, issuing any diagnostics required. Returns true
5651/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005652bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00005653 CXXRecordDecl *RD = Destructor->getParent();
5654
5655 if (Destructor->isVirtual()) {
5656 SourceLocation Loc;
5657
5658 if (!Destructor->isImplicit())
5659 Loc = Destructor->getLocation();
5660 else
5661 Loc = RD->getLocation();
5662
5663 // If we have a virtual destructor, look up the deallocation function
5664 FunctionDecl *OperatorDelete = 0;
5665 DeclarationName Name =
5666 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00005667 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00005668 return true;
John McCall5efd91a2010-07-03 18:33:00 +00005669
Eli Friedman5f2987c2012-02-02 03:46:19 +00005670 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00005671
5672 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00005673 }
Anders Carlsson37909802009-11-30 21:24:50 +00005674
5675 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00005676}
5677
Mike Stump1eb44332009-09-09 15:08:12 +00005678static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005679FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
5680 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
5681 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00005682 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005683}
5684
Douglas Gregor42a552f2008-11-05 20:51:48 +00005685/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
5686/// the well-formednes of the destructor declarator @p D with type @p
5687/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00005688/// emit diagnostics and set the declarator to invalid. Even if this happens,
5689/// will be updated to reflect a well-formed type for the destructor and
5690/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00005691QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00005692 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005693 // C++ [class.dtor]p1:
5694 // [...] A typedef-name that names a class is a class-name
5695 // (7.1.3); however, a typedef-name that names a class shall not
5696 // be used as the identifier in the declarator for a destructor
5697 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005698 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00005699 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00005700 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00005701 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3e4c6c42011-05-05 21:57:07 +00005702 else if (const TemplateSpecializationType *TST =
5703 DeclaratorType->getAs<TemplateSpecializationType>())
5704 if (TST->isTypeAlias())
5705 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
5706 << DeclaratorType << 1;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005707
5708 // C++ [class.dtor]p2:
5709 // A destructor is used to destroy objects of its class type. A
5710 // destructor takes no parameters, and no return type can be
5711 // specified for it (not even void). The address of a destructor
5712 // shall not be taken. A destructor shall not be static. A
5713 // destructor can be invoked for a const, volatile or const
5714 // volatile object. A destructor shall not be declared const,
5715 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00005716 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00005717 if (!D.isInvalidType())
5718 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
5719 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00005720 << SourceRange(D.getIdentifierLoc())
5721 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5722
John McCalld931b082010-08-26 03:08:43 +00005723 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00005724 }
Chris Lattner65401802009-04-25 08:28:21 +00005725 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005726 // Destructors don't have return types, but the parser will
5727 // happily parse something like:
5728 //
5729 // class X {
5730 // float ~X();
5731 // };
5732 //
5733 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005734 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
5735 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5736 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00005737 }
Mike Stump1eb44332009-09-09 15:08:12 +00005738
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005739 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00005740 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00005741 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005742 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5743 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005744 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005745 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5746 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00005747 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005748 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
5749 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00005750 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005751 }
5752
Douglas Gregorc938c162011-01-26 05:01:58 +00005753 // C++0x [class.dtor]p2:
5754 // A destructor shall not be declared with a ref-qualifier.
5755 if (FTI.hasRefQualifier()) {
5756 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
5757 << FTI.RefQualifierIsLValueRef
5758 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
5759 D.setInvalidType();
5760 }
5761
Douglas Gregor42a552f2008-11-05 20:51:48 +00005762 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00005763 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005764 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
5765
5766 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00005767 FTI.freeArgs();
5768 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00005769 }
5770
Mike Stump1eb44332009-09-09 15:08:12 +00005771 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00005772 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00005773 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00005774 D.setInvalidType();
5775 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00005776
5777 // Rebuild the function type "R" without any type qualifiers or
5778 // parameters (in case any of the errors above fired) and with
5779 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00005780 // types.
John McCalle23cf432010-12-14 08:05:40 +00005781 if (!D.isInvalidType())
5782 return R;
5783
Douglas Gregord92ec472010-07-01 05:10:53 +00005784 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00005785 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
5786 EPI.Variadic = false;
5787 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00005788 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00005789 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00005790}
5791
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005792/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
5793/// well-formednes of the conversion function declarator @p D with
5794/// type @p R. If there are any errors in the declarator, this routine
5795/// will emit diagnostics and return true. Otherwise, it will return
5796/// false. Either way, the type @p R will be updated to reflect a
5797/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00005798void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00005799 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005800 // C++ [class.conv.fct]p1:
5801 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00005802 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00005803 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00005804 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00005805 if (!D.isInvalidType())
5806 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
5807 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
5808 << SourceRange(D.getIdentifierLoc());
5809 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005810 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005811 }
John McCalla3f81372010-04-13 00:04:31 +00005812
5813 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
5814
Chris Lattner6e475012009-04-25 08:35:12 +00005815 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005816 // Conversion functions don't have return types, but the parser will
5817 // happily parse something like:
5818 //
5819 // class X {
5820 // float operator bool();
5821 // };
5822 //
5823 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005824 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
5825 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
5826 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00005827 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005828 }
5829
John McCalla3f81372010-04-13 00:04:31 +00005830 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
5831
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005832 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00005833 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005834 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
5835
5836 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00005837 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00005838 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00005839 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005840 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00005841 D.setInvalidType();
5842 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005843
John McCalla3f81372010-04-13 00:04:31 +00005844 // Diagnose "&operator bool()" and other such nonsense. This
5845 // is actually a gcc extension which we don't support.
5846 if (Proto->getResultType() != ConvType) {
5847 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
5848 << Proto->getResultType();
5849 D.setInvalidType();
5850 ConvType = Proto->getResultType();
5851 }
5852
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005853 // C++ [class.conv.fct]p4:
5854 // The conversion-type-id shall not represent a function type nor
5855 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005856 if (ConvType->isArrayType()) {
5857 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
5858 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005859 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005860 } else if (ConvType->isFunctionType()) {
5861 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
5862 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00005863 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005864 }
5865
5866 // Rebuild the function type "R" without any parameters (in case any
5867 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00005868 // return type.
John McCalle23cf432010-12-14 08:05:40 +00005869 if (D.isInvalidType())
5870 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005871
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005872 // C++0x explicit conversion operators.
Richard Smithebaf0e62011-10-18 20:49:44 +00005873 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump1eb44332009-09-09 15:08:12 +00005874 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +00005875 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +00005876 diag::warn_cxx98_compat_explicit_conversion_functions :
5877 diag::ext_explicit_conversion_functions)
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005878 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005879}
5880
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005881/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
5882/// the declaration of the given C++ conversion function. This routine
5883/// is responsible for recording the conversion function in the C++
5884/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00005885Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005886 assert(Conversion && "Expected to receive a conversion function declaration");
5887
Douglas Gregor9d350972008-12-12 08:25:50 +00005888 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005889
5890 // Make sure we aren't redeclaring the conversion function.
5891 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005892
5893 // C++ [class.conv.fct]p1:
5894 // [...] A conversion function is never used to convert a
5895 // (possibly cv-qualified) object to the (possibly cv-qualified)
5896 // same object type (or a reference to it), to a (possibly
5897 // cv-qualified) base class of that type (or a reference to it),
5898 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00005899 // FIXME: Suppress this warning if the conversion function ends up being a
5900 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00005901 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005902 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00005903 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005904 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005905 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
5906 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00005907 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00005908 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005909 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
5910 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00005911 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005912 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005913 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00005914 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005915 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005916 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00005917 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00005918 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005919 }
5920
Douglas Gregore80622f2010-09-29 04:25:11 +00005921 if (FunctionTemplateDecl *ConversionTemplate
5922 = Conversion->getDescribedFunctionTemplate())
5923 return ConversionTemplate;
5924
John McCalld226f652010-08-21 09:40:31 +00005925 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00005926}
5927
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005928//===----------------------------------------------------------------------===//
5929// Namespace Handling
5930//===----------------------------------------------------------------------===//
5931
Richard Smithd1a55a62012-10-04 22:13:39 +00005932/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
5933/// reopened.
5934static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
5935 SourceLocation Loc,
5936 IdentifierInfo *II, bool *IsInline,
5937 NamespaceDecl *PrevNS) {
5938 assert(*IsInline != PrevNS->isInline());
John McCallea318642010-08-26 09:15:37 +00005939
Richard Smithc969e6a2012-10-05 01:46:25 +00005940 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
5941 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
5942 // inline namespaces, with the intention of bringing names into namespace std.
5943 //
5944 // We support this just well enough to get that case working; this is not
5945 // sufficient to support reopening namespaces as inline in general.
Richard Smithd1a55a62012-10-04 22:13:39 +00005946 if (*IsInline && II && II->getName().startswith("__atomic") &&
5947 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithc969e6a2012-10-05 01:46:25 +00005948 // Mark all prior declarations of the namespace as inline.
Richard Smithd1a55a62012-10-04 22:13:39 +00005949 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
5950 NS = NS->getPreviousDecl())
5951 NS->setInline(*IsInline);
5952 // Patch up the lookup table for the containing namespace. This isn't really
5953 // correct, but it's good enough for this particular case.
5954 for (DeclContext::decl_iterator I = PrevNS->decls_begin(),
5955 E = PrevNS->decls_end(); I != E; ++I)
5956 if (NamedDecl *ND = dyn_cast<NamedDecl>(*I))
5957 PrevNS->getParent()->makeDeclVisibleInContext(ND);
5958 return;
5959 }
5960
5961 if (PrevNS->isInline())
5962 // The user probably just forgot the 'inline', so suggest that it
5963 // be added back.
5964 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
5965 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
5966 else
5967 S.Diag(Loc, diag::err_inline_namespace_mismatch)
5968 << IsInline;
5969
5970 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
5971 *IsInline = PrevNS->isInline();
5972}
John McCallea318642010-08-26 09:15:37 +00005973
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005974/// ActOnStartNamespaceDef - This is called at the start of a namespace
5975/// definition.
John McCalld226f652010-08-21 09:40:31 +00005976Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00005977 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005978 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00005979 SourceLocation IdentLoc,
5980 IdentifierInfo *II,
5981 SourceLocation LBrace,
5982 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00005983 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
5984 // For anonymous namespace, take the location of the left brace.
5985 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005986 bool IsInline = InlineLoc.isValid();
Douglas Gregor67310742012-01-10 22:14:10 +00005987 bool IsInvalid = false;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005988 bool IsStd = false;
5989 bool AddToKnown = false;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005990 Scope *DeclRegionScope = NamespcScope->getParent();
5991
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00005992 NamespaceDecl *PrevNS = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00005993 if (II) {
5994 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00005995 // The identifier in an original-namespace-definition shall not
5996 // have been previously defined in the declarative region in
5997 // which the original-namespace-definition appears. The
5998 // identifier in an original-namespace-definition is the name of
5999 // the namespace. Subsequently in that declarative region, it is
6000 // treated as an original-namespace-name.
6001 //
6002 // Since namespace names are unique in their scope, and we don't
Douglas Gregor010157f2011-05-06 23:28:47 +00006003 // look through using directives, just look for any ordinary names.
6004
6005 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006006 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
6007 Decl::IDNS_Namespace;
Douglas Gregor010157f2011-05-06 23:28:47 +00006008 NamedDecl *PrevDecl = 0;
David Blaikie3bc93e32012-12-19 00:45:41 +00006009 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
6010 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
6011 ++I) {
6012 if ((*I)->getIdentifierNamespace() & IDNS) {
6013 PrevDecl = *I;
Douglas Gregor010157f2011-05-06 23:28:47 +00006014 break;
6015 }
6016 }
6017
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006018 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
6019
6020 if (PrevNS) {
Douglas Gregor44b43212008-12-11 16:49:14 +00006021 // This is an extended namespace definition.
Richard Smithd1a55a62012-10-04 22:13:39 +00006022 if (IsInline != PrevNS->isInline())
6023 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
6024 &IsInline, PrevNS);
Douglas Gregor44b43212008-12-11 16:49:14 +00006025 } else if (PrevDecl) {
6026 // This is an invalid name redefinition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006027 Diag(Loc, diag::err_redefinition_different_kind)
6028 << II;
Douglas Gregor44b43212008-12-11 16:49:14 +00006029 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor67310742012-01-10 22:14:10 +00006030 IsInvalid = true;
Douglas Gregor44b43212008-12-11 16:49:14 +00006031 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006032 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00006033 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00006034 // This is the first "real" definition of the namespace "std", so update
6035 // our cache of the "std" namespace to point at this definition.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006036 PrevNS = getStdNamespace();
6037 IsStd = true;
6038 AddToKnown = !IsInline;
6039 } else {
6040 // We've seen this namespace for the first time.
6041 AddToKnown = !IsInline;
Mike Stump1eb44332009-09-09 15:08:12 +00006042 }
Douglas Gregor44b43212008-12-11 16:49:14 +00006043 } else {
John McCall9aeed322009-10-01 00:25:31 +00006044 // Anonymous namespaces.
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006045
6046 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl7a126a42010-08-31 00:36:30 +00006047 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00006048 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006049 PrevNS = TU->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00006050 } else {
6051 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006052 PrevNS = ND->getAnonymousNamespace();
John McCall5fdd7642009-12-16 02:06:49 +00006053 }
6054
Richard Smithd1a55a62012-10-04 22:13:39 +00006055 if (PrevNS && IsInline != PrevNS->isInline())
6056 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
6057 &IsInline, PrevNS);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006058 }
6059
6060 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
6061 StartLoc, Loc, II, PrevNS);
Douglas Gregor67310742012-01-10 22:14:10 +00006062 if (IsInvalid)
6063 Namespc->setInvalidDecl();
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006064
6065 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00006066
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006067 // FIXME: Should we be merging attributes?
6068 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006069 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006070
6071 if (IsStd)
6072 StdNamespace = Namespc;
6073 if (AddToKnown)
6074 KnownNamespaces[Namespc] = false;
6075
6076 if (II) {
6077 PushOnScopeChains(Namespc, DeclRegionScope);
6078 } else {
6079 // Link the anonymous namespace into its parent.
6080 DeclContext *Parent = CurContext->getRedeclContext();
6081 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6082 TU->setAnonymousNamespace(Namespc);
6083 } else {
6084 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall5fdd7642009-12-16 02:06:49 +00006085 }
John McCall9aeed322009-10-01 00:25:31 +00006086
Douglas Gregora4181472010-03-24 00:46:35 +00006087 CurContext->addDecl(Namespc);
6088
John McCall9aeed322009-10-01 00:25:31 +00006089 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
6090 // behaves as if it were replaced by
6091 // namespace unique { /* empty body */ }
6092 // using namespace unique;
6093 // namespace unique { namespace-body }
6094 // where all occurrences of 'unique' in a translation unit are
6095 // replaced by the same identifier and this identifier differs
6096 // from all other identifiers in the entire program.
6097
6098 // We just create the namespace with an empty name and then add an
6099 // implicit using declaration, just like the standard suggests.
6100 //
6101 // CodeGen enforces the "universally unique" aspect by giving all
6102 // declarations semantically contained within an anonymous
6103 // namespace internal linkage.
6104
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006105 if (!PrevNS) {
John McCall5fdd7642009-12-16 02:06:49 +00006106 UsingDirectiveDecl* UD
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006107 = UsingDirectiveDecl::Create(Context, Parent,
John McCall5fdd7642009-12-16 02:06:49 +00006108 /* 'using' */ LBrace,
6109 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00006110 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00006111 /* identifier */ SourceLocation(),
6112 Namespc,
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006113 /* Ancestor */ Parent);
John McCall5fdd7642009-12-16 02:06:49 +00006114 UD->setImplicit();
Nick Lewycky4b7631b2012-11-04 20:21:54 +00006115 Parent->addDecl(UD);
John McCall5fdd7642009-12-16 02:06:49 +00006116 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006117 }
6118
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00006119 ActOnDocumentableDecl(Namespc);
6120
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006121 // Although we could have an invalid decl (i.e. the namespace name is a
6122 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00006123 // FIXME: We should be able to push Namespc here, so that the each DeclContext
6124 // for the namespace has the declarations that showed up in that particular
6125 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00006126 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00006127 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006128}
6129
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006130/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
6131/// is a namespace alias, returns the namespace it points to.
6132static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
6133 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
6134 return AD->getNamespace();
6135 return dyn_cast_or_null<NamespaceDecl>(D);
6136}
6137
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006138/// ActOnFinishNamespaceDef - This callback is called after a namespace is
6139/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00006140void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006141 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
6142 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006143 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006144 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00006145 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola20039ae2012-02-01 23:24:59 +00006146 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00006147}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006148
John McCall384aff82010-08-25 07:42:41 +00006149CXXRecordDecl *Sema::getStdBadAlloc() const {
6150 return cast_or_null<CXXRecordDecl>(
6151 StdBadAlloc.get(Context.getExternalSource()));
6152}
6153
6154NamespaceDecl *Sema::getStdNamespace() const {
6155 return cast_or_null<NamespaceDecl>(
6156 StdNamespace.get(Context.getExternalSource()));
6157}
6158
Douglas Gregor66992202010-06-29 17:53:46 +00006159/// \brief Retrieve the special "std" namespace, which may require us to
6160/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006161NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00006162 if (!StdNamespace) {
6163 // The "std" namespace has not yet been defined, so build one implicitly.
6164 StdNamespace = NamespaceDecl::Create(Context,
6165 Context.getTranslationUnitDecl(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006166 /*Inline=*/false,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00006167 SourceLocation(), SourceLocation(),
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00006168 &PP.getIdentifierTable().get("std"),
6169 /*PrevDecl=*/0);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006170 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00006171 }
6172
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00006173 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00006174}
6175
Sebastian Redl395e04d2012-01-17 22:49:33 +00006176bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006177 assert(getLangOpts().CPlusPlus &&
Sebastian Redl395e04d2012-01-17 22:49:33 +00006178 "Looking for std::initializer_list outside of C++.");
6179
6180 // We're looking for implicit instantiations of
6181 // template <typename E> class std::initializer_list.
6182
6183 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
6184 return false;
6185
Sebastian Redl84760e32012-01-17 22:49:58 +00006186 ClassTemplateDecl *Template = 0;
6187 const TemplateArgument *Arguments = 0;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006188
Sebastian Redl84760e32012-01-17 22:49:58 +00006189 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl395e04d2012-01-17 22:49:33 +00006190
Sebastian Redl84760e32012-01-17 22:49:58 +00006191 ClassTemplateSpecializationDecl *Specialization =
6192 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
6193 if (!Specialization)
6194 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006195
Sebastian Redl84760e32012-01-17 22:49:58 +00006196 Template = Specialization->getSpecializedTemplate();
6197 Arguments = Specialization->getTemplateArgs().data();
6198 } else if (const TemplateSpecializationType *TST =
6199 Ty->getAs<TemplateSpecializationType>()) {
6200 Template = dyn_cast_or_null<ClassTemplateDecl>(
6201 TST->getTemplateName().getAsTemplateDecl());
6202 Arguments = TST->getArgs();
6203 }
6204 if (!Template)
6205 return false;
Sebastian Redl395e04d2012-01-17 22:49:33 +00006206
6207 if (!StdInitializerList) {
6208 // Haven't recognized std::initializer_list yet, maybe this is it.
6209 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
6210 if (TemplateClass->getIdentifier() !=
6211 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006212 !getStdNamespace()->InEnclosingNamespaceSetOf(
6213 TemplateClass->getDeclContext()))
Sebastian Redl395e04d2012-01-17 22:49:33 +00006214 return false;
6215 // This is a template called std::initializer_list, but is it the right
6216 // template?
6217 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006218 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl395e04d2012-01-17 22:49:33 +00006219 return false;
6220 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
6221 return false;
6222
6223 // It's the right template.
6224 StdInitializerList = Template;
6225 }
6226
6227 if (Template != StdInitializerList)
6228 return false;
6229
6230 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl84760e32012-01-17 22:49:58 +00006231 if (Element)
6232 *Element = Arguments[0].getAsType();
Sebastian Redl395e04d2012-01-17 22:49:33 +00006233 return true;
6234}
6235
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006236static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
6237 NamespaceDecl *Std = S.getStdNamespace();
6238 if (!Std) {
6239 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6240 return 0;
6241 }
6242
6243 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
6244 Loc, Sema::LookupOrdinaryName);
6245 if (!S.LookupQualifiedName(Result, Std)) {
6246 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
6247 return 0;
6248 }
6249 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
6250 if (!Template) {
6251 Result.suppressDiagnostics();
6252 // We found something weird. Complain about the first thing we found.
6253 NamedDecl *Found = *Result.begin();
6254 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
6255 return 0;
6256 }
6257
6258 // We found some template called std::initializer_list. Now verify that it's
6259 // correct.
6260 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redlb832f6d2012-01-23 22:09:39 +00006261 if (Params->getMinRequiredArguments() != 1 ||
6262 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl62b7cfb2012-01-17 22:50:08 +00006263 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
6264 return 0;
6265 }
6266
6267 return Template;
6268}
6269
6270QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
6271 if (!StdInitializerList) {
6272 StdInitializerList = LookupStdInitializerList(*this, Loc);
6273 if (!StdInitializerList)
6274 return QualType();
6275 }
6276
6277 TemplateArgumentListInfo Args(Loc, Loc);
6278 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
6279 Context.getTrivialTypeSourceInfo(Element,
6280 Loc)));
6281 return Context.getCanonicalType(
6282 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
6283}
6284
Sebastian Redl98d36062012-01-17 22:50:14 +00006285bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
6286 // C++ [dcl.init.list]p2:
6287 // A constructor is an initializer-list constructor if its first parameter
6288 // is of type std::initializer_list<E> or reference to possibly cv-qualified
6289 // std::initializer_list<E> for some type E, and either there are no other
6290 // parameters or else all other parameters have default arguments.
6291 if (Ctor->getNumParams() < 1 ||
6292 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
6293 return false;
6294
6295 QualType ArgType = Ctor->getParamDecl(0)->getType();
6296 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
6297 ArgType = RT->getPointeeType().getUnqualifiedType();
6298
6299 return isStdInitializerList(ArgType, 0);
6300}
6301
Douglas Gregor9172aa62011-03-26 22:25:30 +00006302/// \brief Determine whether a using statement is in a context where it will be
6303/// apply in all contexts.
6304static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
6305 switch (CurContext->getDeclKind()) {
6306 case Decl::TranslationUnit:
6307 return true;
6308 case Decl::LinkageSpec:
6309 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
6310 default:
6311 return false;
6312 }
6313}
6314
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006315namespace {
6316
6317// Callback to only accept typo corrections that are namespaces.
6318class NamespaceValidatorCCC : public CorrectionCandidateCallback {
6319 public:
6320 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
6321 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
6322 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
6323 }
6324 return false;
6325 }
6326};
6327
6328}
6329
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006330static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
6331 CXXScopeSpec &SS,
6332 SourceLocation IdentLoc,
6333 IdentifierInfo *Ident) {
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006334 NamespaceValidatorCCC Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006335 R.clear();
6336 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006337 R.getLookupKind(), Sc, &SS,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00006338 Validator)) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006339 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
6340 std::string CorrectedQuotedStr(Corrected.getQuoted(S.getLangOpts()));
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006341 if (DeclContext *DC = S.computeDeclContext(SS, false))
6342 S.Diag(IdentLoc, diag::err_using_directive_member_suggest)
6343 << Ident << DC << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +00006344 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
6345 CorrectedStr);
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006346 else
6347 S.Diag(IdentLoc, diag::err_using_directive_suggest)
6348 << Ident << CorrectedQuotedStr
6349 << FixItHint::CreateReplacement(IdentLoc, CorrectedStr);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006350
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006351 S.Diag(Corrected.getCorrectionDecl()->getLocation(),
6352 diag::note_namespace_defined_here) << CorrectedQuotedStr;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006353
Kaelyn Uhrain7d5e6942012-01-11 19:37:46 +00006354 R.addDecl(Corrected.getCorrectionDecl());
6355 return true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006356 }
6357 return false;
6358}
6359
John McCalld226f652010-08-21 09:40:31 +00006360Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006361 SourceLocation UsingLoc,
6362 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006363 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006364 SourceLocation IdentLoc,
6365 IdentifierInfo *NamespcName,
6366 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00006367 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
6368 assert(NamespcName && "Invalid NamespcName.");
6369 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00006370
6371 // This can only happen along a recovery path.
6372 while (S->getFlags() & Scope::TemplateParamScope)
6373 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006374 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00006375
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006376 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00006377 NestedNameSpecifier *Qualifier = 0;
6378 if (SS.isSet())
6379 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
6380
Douglas Gregoreb11cd02009-01-14 22:20:51 +00006381 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00006382 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
6383 LookupParsedName(R, S, &SS);
6384 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00006385 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00006386
Douglas Gregor66992202010-06-29 17:53:46 +00006387 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006388 R.clear();
Douglas Gregor66992202010-06-29 17:53:46 +00006389 // Allow "using namespace std;" or "using namespace ::std;" even if
6390 // "std" hasn't been defined yet, for GCC compatibility.
6391 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
6392 NamespcName->isStr("std")) {
6393 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00006394 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00006395 R.resolveKind();
6396 }
6397 // Otherwise, attempt typo correction.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00006398 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00006399 }
6400
John McCallf36e02d2009-10-09 21:13:30 +00006401 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006402 NamedDecl *Named = R.getFoundDecl();
6403 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
6404 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006405 // C++ [namespace.udir]p1:
6406 // A using-directive specifies that the names in the nominated
6407 // namespace can be used in the scope in which the
6408 // using-directive appears after the using-directive. During
6409 // unqualified name lookup (3.4.1), the names appear as if they
6410 // were declared in the nearest enclosing namespace which
6411 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00006412 // namespace. [Note: in this context, "contains" means "contains
6413 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006414
6415 // Find enclosing context containing both using-directive and
6416 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006417 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006418 DeclContext *CommonAncestor = cast<DeclContext>(NS);
6419 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
6420 CommonAncestor = CommonAncestor->getParent();
6421
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006422 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00006423 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00006424 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006425
Douglas Gregor9172aa62011-03-26 22:25:30 +00006426 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Chandler Carruth40278532011-07-25 16:49:02 +00006427 !SourceMgr.isFromMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00006428 Diag(IdentLoc, diag::warn_using_directive_in_header);
6429 }
6430
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006431 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006432 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00006433 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00006434 }
6435
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006436 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00006437 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006438}
6439
6440void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006441 // If the scope has an associated entity and the using directive is at
6442 // namespace or translation unit scope, add the UsingDirectiveDecl into
6443 // its lookup structure so qualified name lookup can find it.
6444 DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity());
6445 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006446 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00006447 else
Richard Smith1b7f9cb2012-03-13 03:12:56 +00006448 // Otherwise, it is at block sope. The using-directives will affect lookup
6449 // only to the end of the scope.
John McCalld226f652010-08-21 09:40:31 +00006450 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00006451}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006452
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006453
John McCalld226f652010-08-21 09:40:31 +00006454Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00006455 AccessSpecifier AS,
6456 bool HasUsingKeyword,
6457 SourceLocation UsingLoc,
6458 CXXScopeSpec &SS,
6459 UnqualifiedId &Name,
6460 AttributeList *AttrList,
6461 bool IsTypeName,
6462 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006463 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00006464
Douglas Gregor12c118a2009-11-04 16:30:06 +00006465 switch (Name.getKind()) {
Fariborz Jahanian98a54032011-07-12 17:16:56 +00006466 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006467 case UnqualifiedId::IK_Identifier:
6468 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00006469 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00006470 case UnqualifiedId::IK_ConversionFunctionId:
6471 break;
6472
6473 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00006474 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smitha1366cb2012-04-27 19:33:05 +00006475 // C++11 inheriting constructors.
Daniel Dunbar96a00142012-03-09 18:35:03 +00006476 Diag(Name.getLocStart(),
Richard Smith80ad52f2013-01-02 11:42:31 +00006477 getLangOpts().CPlusPlus11 ?
Richard Smitha1366cb2012-04-27 19:33:05 +00006478 // FIXME: Produce warn_cxx98_compat_using_decl_constructor
6479 // instead once inheriting constructors work.
6480 diag::err_using_decl_constructor_unsupported :
Richard Smithebaf0e62011-10-18 20:49:44 +00006481 diag::err_using_decl_constructor)
6482 << SS.getRange();
6483
Richard Smith80ad52f2013-01-02 11:42:31 +00006484 if (getLangOpts().CPlusPlus11) break;
John McCall604e7f12009-12-08 07:46:18 +00006485
John McCalld226f652010-08-21 09:40:31 +00006486 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006487
6488 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006489 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006490 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00006491 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006492
6493 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar96a00142012-03-09 18:35:03 +00006494 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor12c118a2009-11-04 16:30:06 +00006495 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00006496 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00006497 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006498
6499 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
6500 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00006501 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00006502 return 0;
John McCall604e7f12009-12-08 07:46:18 +00006503
John McCall60fa3cf2009-12-11 02:10:03 +00006504 // Warn about using declarations.
6505 // TODO: store that the declaration was written without 'using' and
6506 // talk about access decls instead of using decls in the
6507 // diagnostics.
6508 if (!HasUsingKeyword) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00006509 UsingLoc = Name.getLocStart();
John McCall60fa3cf2009-12-11 02:10:03 +00006510
6511 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00006512 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00006513 }
6514
Douglas Gregor56c04582010-12-16 00:46:58 +00006515 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
6516 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
6517 return 0;
6518
John McCall9488ea12009-11-17 05:59:44 +00006519 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006520 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006521 /* IsInstantiation */ false,
6522 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00006523 if (UD)
6524 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00006525
John McCalld226f652010-08-21 09:40:31 +00006526 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00006527}
6528
Douglas Gregor09acc982010-07-07 23:08:52 +00006529/// \brief Determine whether a using declaration considers the given
6530/// declarations as "equivalent", e.g., if they are redeclarations of
6531/// the same entity or are both typedefs of the same type.
6532static bool
6533IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
6534 bool &SuppressRedeclaration) {
6535 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
6536 SuppressRedeclaration = false;
6537 return true;
6538 }
6539
Richard Smith162e1c12011-04-15 14:24:37 +00006540 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
6541 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00006542 SuppressRedeclaration = true;
6543 return Context.hasSameType(TD1->getUnderlyingType(),
6544 TD2->getUnderlyingType());
6545 }
6546
6547 return false;
6548}
6549
6550
John McCall9f54ad42009-12-10 09:41:52 +00006551/// Determines whether to create a using shadow decl for a particular
6552/// decl, given the set of decls existing prior to this using lookup.
6553bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
6554 const LookupResult &Previous) {
6555 // Diagnose finding a decl which is not from a base class of the
6556 // current class. We do this now because there are cases where this
6557 // function will silently decide not to build a shadow decl, which
6558 // will pre-empt further diagnostics.
6559 //
6560 // We don't need to do this in C++0x because we do the check once on
6561 // the qualifier.
6562 //
6563 // FIXME: diagnose the following if we care enough:
6564 // struct A { int foo; };
6565 // struct B : A { using A::foo; };
6566 // template <class T> struct C : A {};
6567 // template <class T> struct D : C<T> { using B::foo; } // <---
6568 // This is invalid (during instantiation) in C++03 because B::foo
6569 // resolves to the using decl in B, which is not a base class of D<T>.
6570 // We can't diagnose it immediately because C<T> is an unknown
6571 // specialization. The UsingShadowDecl in D<T> then points directly
6572 // to A::foo, which will look well-formed when we instantiate.
6573 // The right solution is to not collapse the shadow-decl chain.
Richard Smith80ad52f2013-01-02 11:42:31 +00006574 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
John McCall9f54ad42009-12-10 09:41:52 +00006575 DeclContext *OrigDC = Orig->getDeclContext();
6576
6577 // Handle enums and anonymous structs.
6578 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
6579 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
6580 while (OrigRec->isAnonymousStructOrUnion())
6581 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
6582
6583 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
6584 if (OrigDC == CurContext) {
6585 Diag(Using->getLocation(),
6586 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006587 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006588 Diag(Orig->getLocation(), diag::note_using_decl_target);
6589 return true;
6590 }
6591
Douglas Gregordc355712011-02-25 00:36:19 +00006592 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00006593 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00006594 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00006595 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00006596 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00006597 Diag(Orig->getLocation(), diag::note_using_decl_target);
6598 return true;
6599 }
6600 }
6601
6602 if (Previous.empty()) return false;
6603
6604 NamedDecl *Target = Orig;
6605 if (isa<UsingShadowDecl>(Target))
6606 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6607
John McCalld7533ec2009-12-11 02:33:26 +00006608 // If the target happens to be one of the previous declarations, we
6609 // don't have a conflict.
6610 //
6611 // FIXME: but we might be increasing its access, in which case we
6612 // should redeclare it.
6613 NamedDecl *NonTag = 0, *Tag = 0;
6614 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6615 I != E; ++I) {
6616 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00006617 bool Result;
6618 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
6619 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00006620
6621 (isa<TagDecl>(D) ? Tag : NonTag) = D;
6622 }
6623
John McCall9f54ad42009-12-10 09:41:52 +00006624 if (Target->isFunctionOrFunctionTemplate()) {
6625 FunctionDecl *FD;
6626 if (isa<FunctionTemplateDecl>(Target))
6627 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
6628 else
6629 FD = cast<FunctionDecl>(Target);
6630
6631 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00006632 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00006633 case Ovl_Overload:
6634 return false;
6635
6636 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00006637 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006638 break;
6639
6640 // We found a decl with the exact signature.
6641 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00006642 // If we're in a record, we want to hide the target, so we
6643 // return true (without a diagnostic) to tell the caller not to
6644 // build a shadow decl.
6645 if (CurContext->isRecord())
6646 return true;
6647
6648 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00006649 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006650 break;
6651 }
6652
6653 Diag(Target->getLocation(), diag::note_using_decl_target);
6654 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
6655 return true;
6656 }
6657
6658 // Target is not a function.
6659
John McCall9f54ad42009-12-10 09:41:52 +00006660 if (isa<TagDecl>(Target)) {
6661 // No conflict between a tag and a non-tag.
6662 if (!Tag) return false;
6663
John McCall41ce66f2009-12-10 19:51:03 +00006664 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006665 Diag(Target->getLocation(), diag::note_using_decl_target);
6666 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
6667 return true;
6668 }
6669
6670 // No conflict between a tag and a non-tag.
6671 if (!NonTag) return false;
6672
John McCall41ce66f2009-12-10 19:51:03 +00006673 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00006674 Diag(Target->getLocation(), diag::note_using_decl_target);
6675 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
6676 return true;
6677}
6678
John McCall9488ea12009-11-17 05:59:44 +00006679/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00006680UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00006681 UsingDecl *UD,
6682 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00006683
6684 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00006685 NamedDecl *Target = Orig;
6686 if (isa<UsingShadowDecl>(Target)) {
6687 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
6688 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00006689 }
6690
6691 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00006692 = UsingShadowDecl::Create(Context, CurContext,
6693 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00006694 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00006695
6696 Shadow->setAccess(UD->getAccess());
6697 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
6698 Shadow->setInvalidDecl();
6699
John McCall9488ea12009-11-17 05:59:44 +00006700 if (S)
John McCall604e7f12009-12-08 07:46:18 +00006701 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00006702 else
John McCall604e7f12009-12-08 07:46:18 +00006703 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00006704
John McCall604e7f12009-12-08 07:46:18 +00006705
John McCall9f54ad42009-12-10 09:41:52 +00006706 return Shadow;
6707}
John McCall604e7f12009-12-08 07:46:18 +00006708
John McCall9f54ad42009-12-10 09:41:52 +00006709/// Hides a using shadow declaration. This is required by the current
6710/// using-decl implementation when a resolvable using declaration in a
6711/// class is followed by a declaration which would hide or override
6712/// one or more of the using decl's targets; for example:
6713///
6714/// struct Base { void foo(int); };
6715/// struct Derived : Base {
6716/// using Base::foo;
6717/// void foo(int);
6718/// };
6719///
6720/// The governing language is C++03 [namespace.udecl]p12:
6721///
6722/// When a using-declaration brings names from a base class into a
6723/// derived class scope, member functions in the derived class
6724/// override and/or hide member functions with the same name and
6725/// parameter types in a base class (rather than conflicting).
6726///
6727/// There are two ways to implement this:
6728/// (1) optimistically create shadow decls when they're not hidden
6729/// by existing declarations, or
6730/// (2) don't create any shadow decls (or at least don't make them
6731/// visible) until we've fully parsed/instantiated the class.
6732/// The problem with (1) is that we might have to retroactively remove
6733/// a shadow decl, which requires several O(n) operations because the
6734/// decl structures are (very reasonably) not designed for removal.
6735/// (2) avoids this but is very fiddly and phase-dependent.
6736void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00006737 if (Shadow->getDeclName().getNameKind() ==
6738 DeclarationName::CXXConversionFunctionName)
6739 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
6740
John McCall9f54ad42009-12-10 09:41:52 +00006741 // Remove it from the DeclContext...
6742 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006743
John McCall9f54ad42009-12-10 09:41:52 +00006744 // ...and the scope, if applicable...
6745 if (S) {
John McCalld226f652010-08-21 09:40:31 +00006746 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00006747 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00006748 }
6749
John McCall9f54ad42009-12-10 09:41:52 +00006750 // ...and the using decl.
6751 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
6752
6753 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00006754 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00006755}
6756
John McCall7ba107a2009-11-18 02:36:19 +00006757/// Builds a using declaration.
6758///
6759/// \param IsInstantiation - Whether this call arises from an
6760/// instantiation of an unresolved using declaration. We treat
6761/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00006762NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
6763 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00006764 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006765 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00006766 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00006767 bool IsInstantiation,
6768 bool IsTypeName,
6769 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00006770 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006771 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00006772 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00006773
Anders Carlsson550b14b2009-08-28 05:49:21 +00006774 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00006775
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006776 if (SS.isEmpty()) {
6777 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00006778 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006779 }
Mike Stump1eb44332009-09-09 15:08:12 +00006780
John McCall9f54ad42009-12-10 09:41:52 +00006781 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006782 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00006783 ForRedeclaration);
6784 Previous.setHideTags(false);
6785 if (S) {
6786 LookupName(Previous, S);
6787
6788 // It is really dumb that we have to do this.
6789 LookupResult::Filter F = Previous.makeFilter();
6790 while (F.hasNext()) {
6791 NamedDecl *D = F.next();
6792 if (!isDeclInScope(D, CurContext, S))
6793 F.erase();
6794 }
6795 F.done();
6796 } else {
6797 assert(IsInstantiation && "no scope in non-instantiation");
6798 assert(CurContext->isRecord() && "scope not record in instantiation");
6799 LookupQualifiedName(Previous, CurContext);
6800 }
6801
John McCall9f54ad42009-12-10 09:41:52 +00006802 // Check for invalid redeclarations.
6803 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
6804 return 0;
6805
6806 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00006807 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
6808 return 0;
6809
John McCallaf8e6ed2009-11-12 03:15:40 +00006810 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00006811 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00006812 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00006813 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00006814 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00006815 // FIXME: not all declaration name kinds are legal here
6816 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
6817 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00006818 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006819 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00006820 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006821 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
6822 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00006823 }
John McCalled976492009-12-04 22:46:56 +00006824 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00006825 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
6826 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00006827 }
John McCalled976492009-12-04 22:46:56 +00006828 D->setAccess(AS);
6829 CurContext->addDecl(D);
6830
6831 if (!LookupContext) return D;
6832 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00006833
John McCall77bb1aa2010-05-01 00:40:08 +00006834 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00006835 UD->setInvalidDecl();
6836 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006837 }
6838
Richard Smithc5a89a12012-04-02 01:30:27 +00006839 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redlf677ea32011-02-05 19:23:19 +00006840 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smithc5a89a12012-04-02 01:30:27 +00006841 if (CheckInheritingConstructorUsingDecl(UD))
Sebastian Redlcaa35e42011-03-12 13:44:32 +00006842 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006843 return UD;
6844 }
6845
6846 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00006847
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006848 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00006849
John McCall604e7f12009-12-08 07:46:18 +00006850 // Unlike most lookups, we don't always want to hide tag
6851 // declarations: tag names are visible through the using declaration
6852 // even if hidden by ordinary names, *except* in a dependent context
6853 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00006854 if (!IsInstantiation)
6855 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00006856
John McCallb9abd8722012-04-07 03:04:20 +00006857 // For the purposes of this lookup, we have a base object type
6858 // equal to that of the current context.
6859 if (CurContext->isRecord()) {
6860 R.setBaseObjectType(
6861 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
6862 }
6863
John McCalla24dc2e2009-11-17 02:14:36 +00006864 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00006865
John McCallf36e02d2009-10-09 21:13:30 +00006866 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00006867 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00006868 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006869 UD->setInvalidDecl();
6870 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006871 }
6872
John McCalled976492009-12-04 22:46:56 +00006873 if (R.isAmbiguous()) {
6874 UD->setInvalidDecl();
6875 return UD;
6876 }
Mike Stump1eb44332009-09-09 15:08:12 +00006877
John McCall7ba107a2009-11-18 02:36:19 +00006878 if (IsTypeName) {
6879 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00006880 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006881 Diag(IdentLoc, diag::err_using_typename_non_type);
6882 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
6883 Diag((*I)->getUnderlyingDecl()->getLocation(),
6884 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006885 UD->setInvalidDecl();
6886 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006887 }
6888 } else {
6889 // If we asked for a non-typename and we got a type, error out,
6890 // but only if this is an instantiation of an unresolved using
6891 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00006892 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00006893 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
6894 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00006895 UD->setInvalidDecl();
6896 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00006897 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00006898 }
6899
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006900 // C++0x N2914 [namespace.udecl]p6:
6901 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00006902 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006903 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
6904 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00006905 UD->setInvalidDecl();
6906 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00006907 }
Mike Stump1eb44332009-09-09 15:08:12 +00006908
John McCall9f54ad42009-12-10 09:41:52 +00006909 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
6910 if (!CheckUsingShadowDecl(UD, *I, Previous))
6911 BuildUsingShadowDecl(S, UD, *I);
6912 }
John McCall9488ea12009-11-17 05:59:44 +00006913
6914 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00006915}
6916
Sebastian Redlf677ea32011-02-05 19:23:19 +00006917/// Additional checks for a using declaration referring to a constructor name.
Richard Smithc5a89a12012-04-02 01:30:27 +00006918bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
6919 assert(!UD->isTypeName() && "expecting a constructor name");
Sebastian Redlf677ea32011-02-05 19:23:19 +00006920
Douglas Gregordc355712011-02-25 00:36:19 +00006921 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006922 assert(SourceType &&
6923 "Using decl naming constructor doesn't have type in scope spec.");
6924 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
6925
6926 // Check whether the named type is a direct base class.
6927 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
6928 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
6929 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
6930 BaseIt != BaseE; ++BaseIt) {
6931 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
6932 if (CanonicalSourceType == BaseType)
6933 break;
Richard Smithc5a89a12012-04-02 01:30:27 +00006934 if (BaseIt->getType()->isDependentType())
6935 break;
Sebastian Redlf677ea32011-02-05 19:23:19 +00006936 }
6937
6938 if (BaseIt == BaseE) {
6939 // Did not find SourceType in the bases.
6940 Diag(UD->getUsingLocation(),
6941 diag::err_using_decl_constructor_not_in_direct_base)
6942 << UD->getNameInfo().getSourceRange()
6943 << QualType(SourceType, 0) << TargetClass;
6944 return true;
6945 }
6946
Richard Smithc5a89a12012-04-02 01:30:27 +00006947 if (!CurContext->isDependentContext())
6948 BaseIt->setInheritConstructors();
Sebastian Redlf677ea32011-02-05 19:23:19 +00006949
6950 return false;
6951}
6952
John McCall9f54ad42009-12-10 09:41:52 +00006953/// Checks that the given using declaration is not an invalid
6954/// redeclaration. Note that this is checking only for the using decl
6955/// itself, not for any ill-formedness among the UsingShadowDecls.
6956bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6957 bool isTypeName,
6958 const CXXScopeSpec &SS,
6959 SourceLocation NameLoc,
6960 const LookupResult &Prev) {
6961 // C++03 [namespace.udecl]p8:
6962 // C++0x [namespace.udecl]p10:
6963 // A using-declaration is a declaration and can therefore be used
6964 // repeatedly where (and only where) multiple declarations are
6965 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00006966 //
John McCall8a726212010-11-29 18:01:58 +00006967 // That's in non-member contexts.
6968 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00006969 return false;
6970
6971 NestedNameSpecifier *Qual
6972 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
6973
6974 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
6975 NamedDecl *D = *I;
6976
6977 bool DTypename;
6978 NestedNameSpecifier *DQual;
6979 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
6980 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00006981 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006982 } else if (UnresolvedUsingValueDecl *UD
6983 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
6984 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00006985 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006986 } else if (UnresolvedUsingTypenameDecl *UD
6987 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
6988 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00006989 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00006990 } else continue;
6991
6992 // using decls differ if one says 'typename' and the other doesn't.
6993 // FIXME: non-dependent using decls?
6994 if (isTypeName != DTypename) continue;
6995
6996 // using decls differ if they name different scopes (but note that
6997 // template instantiation can cause this check to trigger when it
6998 // didn't before instantiation).
6999 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
7000 Context.getCanonicalNestedNameSpecifier(DQual))
7001 continue;
7002
7003 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00007004 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00007005 return true;
7006 }
7007
7008 return false;
7009}
7010
John McCall604e7f12009-12-08 07:46:18 +00007011
John McCalled976492009-12-04 22:46:56 +00007012/// Checks that the given nested-name qualifier used in a using decl
7013/// in the current context is appropriately related to the current
7014/// scope. If an error is found, diagnoses it and returns true.
7015bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
7016 const CXXScopeSpec &SS,
7017 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00007018 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00007019
John McCall604e7f12009-12-08 07:46:18 +00007020 if (!CurContext->isRecord()) {
7021 // C++03 [namespace.udecl]p3:
7022 // C++0x [namespace.udecl]p8:
7023 // A using-declaration for a class member shall be a member-declaration.
7024
7025 // If we weren't able to compute a valid scope, it must be a
7026 // dependent class scope.
7027 if (!NamedContext || NamedContext->isRecord()) {
7028 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
7029 << SS.getRange();
7030 return true;
7031 }
7032
7033 // Otherwise, everything is known to be fine.
7034 return false;
7035 }
7036
7037 // The current scope is a record.
7038
7039 // If the named context is dependent, we can't decide much.
7040 if (!NamedContext) {
7041 // FIXME: in C++0x, we can diagnose if we can prove that the
7042 // nested-name-specifier does not refer to a base class, which is
7043 // still possible in some cases.
7044
7045 // Otherwise we have to conservatively report that things might be
7046 // okay.
7047 return false;
7048 }
7049
7050 if (!NamedContext->isRecord()) {
7051 // Ideally this would point at the last name in the specifier,
7052 // but we don't have that level of source info.
7053 Diag(SS.getRange().getBegin(),
7054 diag::err_using_decl_nested_name_specifier_is_not_class)
7055 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
7056 return true;
7057 }
7058
Douglas Gregor6fb07292010-12-21 07:41:49 +00007059 if (!NamedContext->isDependentContext() &&
7060 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
7061 return true;
7062
Richard Smith80ad52f2013-01-02 11:42:31 +00007063 if (getLangOpts().CPlusPlus11) {
John McCall604e7f12009-12-08 07:46:18 +00007064 // C++0x [namespace.udecl]p3:
7065 // In a using-declaration used as a member-declaration, the
7066 // nested-name-specifier shall name a base class of the class
7067 // being defined.
7068
7069 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
7070 cast<CXXRecordDecl>(NamedContext))) {
7071 if (CurContext == NamedContext) {
7072 Diag(NameLoc,
7073 diag::err_using_decl_nested_name_specifier_is_current_class)
7074 << SS.getRange();
7075 return true;
7076 }
7077
7078 Diag(SS.getRange().getBegin(),
7079 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7080 << (NestedNameSpecifier*) SS.getScopeRep()
7081 << cast<CXXRecordDecl>(CurContext)
7082 << SS.getRange();
7083 return true;
7084 }
7085
7086 return false;
7087 }
7088
7089 // C++03 [namespace.udecl]p4:
7090 // A using-declaration used as a member-declaration shall refer
7091 // to a member of a base class of the class being defined [etc.].
7092
7093 // Salient point: SS doesn't have to name a base class as long as
7094 // lookup only finds members from base classes. Therefore we can
7095 // diagnose here only if we can prove that that can't happen,
7096 // i.e. if the class hierarchies provably don't intersect.
7097
7098 // TODO: it would be nice if "definitely valid" results were cached
7099 // in the UsingDecl and UsingShadowDecl so that these checks didn't
7100 // need to be repeated.
7101
7102 struct UserData {
Benjamin Kramer8c43dcc2012-02-23 16:06:01 +00007103 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall604e7f12009-12-08 07:46:18 +00007104
7105 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
7106 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7107 Data->Bases.insert(Base);
7108 return true;
7109 }
7110
7111 bool hasDependentBases(const CXXRecordDecl *Class) {
7112 return !Class->forallBases(collect, this);
7113 }
7114
7115 /// Returns true if the base is dependent or is one of the
7116 /// accumulated base classes.
7117 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
7118 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
7119 return !Data->Bases.count(Base);
7120 }
7121
7122 bool mightShareBases(const CXXRecordDecl *Class) {
7123 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
7124 }
7125 };
7126
7127 UserData Data;
7128
7129 // Returns false if we find a dependent base.
7130 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
7131 return false;
7132
7133 // Returns false if the class has a dependent base or if it or one
7134 // of its bases is present in the base set of the current context.
7135 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
7136 return false;
7137
7138 Diag(SS.getRange().getBegin(),
7139 diag::err_using_decl_nested_name_specifier_is_not_base_class)
7140 << (NestedNameSpecifier*) SS.getScopeRep()
7141 << cast<CXXRecordDecl>(CurContext)
7142 << SS.getRange();
7143
7144 return true;
John McCalled976492009-12-04 22:46:56 +00007145}
7146
Richard Smith162e1c12011-04-15 14:24:37 +00007147Decl *Sema::ActOnAliasDeclaration(Scope *S,
7148 AccessSpecifier AS,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007149 MultiTemplateParamsArg TemplateParamLists,
Richard Smith162e1c12011-04-15 14:24:37 +00007150 SourceLocation UsingLoc,
7151 UnqualifiedId &Name,
7152 TypeResult Type) {
Richard Smith3e4c6c42011-05-05 21:57:07 +00007153 // Skip up to the relevant declaration scope.
7154 while (S->getFlags() & Scope::TemplateParamScope)
7155 S = S->getParent();
Richard Smith162e1c12011-04-15 14:24:37 +00007156 assert((S->getFlags() & Scope::DeclScope) &&
7157 "got alias-declaration outside of declaration scope");
7158
7159 if (Type.isInvalid())
7160 return 0;
7161
7162 bool Invalid = false;
7163 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
7164 TypeSourceInfo *TInfo = 0;
Nick Lewyckyb79bf1d2011-05-02 01:07:19 +00007165 GetTypeFromParser(Type.get(), &TInfo);
Richard Smith162e1c12011-04-15 14:24:37 +00007166
7167 if (DiagnoseClassNameShadow(CurContext, NameInfo))
7168 return 0;
7169
7170 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3e4c6c42011-05-05 21:57:07 +00007171 UPPC_DeclarationType)) {
Richard Smith162e1c12011-04-15 14:24:37 +00007172 Invalid = true;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007173 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
7174 TInfo->getTypeLoc().getBeginLoc());
7175 }
Richard Smith162e1c12011-04-15 14:24:37 +00007176
7177 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
7178 LookupName(Previous, S);
7179
7180 // Warn about shadowing the name of a template parameter.
7181 if (Previous.isSingleResult() &&
7182 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorcb8f9512011-10-20 17:58:49 +00007183 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smith162e1c12011-04-15 14:24:37 +00007184 Previous.clear();
7185 }
7186
7187 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
7188 "name in alias declaration must be an identifier");
7189 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
7190 Name.StartLocation,
7191 Name.Identifier, TInfo);
7192
7193 NewTD->setAccess(AS);
7194
7195 if (Invalid)
7196 NewTD->setInvalidDecl();
7197
Richard Smith3e4c6c42011-05-05 21:57:07 +00007198 CheckTypedefForVariablyModifiedType(S, NewTD);
7199 Invalid |= NewTD->isInvalidDecl();
7200
Richard Smith162e1c12011-04-15 14:24:37 +00007201 bool Redeclaration = false;
Richard Smith3e4c6c42011-05-05 21:57:07 +00007202
7203 NamedDecl *NewND;
7204 if (TemplateParamLists.size()) {
7205 TypeAliasTemplateDecl *OldDecl = 0;
7206 TemplateParameterList *OldTemplateParams = 0;
7207
7208 if (TemplateParamLists.size() != 1) {
7209 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007210 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
7211 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3e4c6c42011-05-05 21:57:07 +00007212 }
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00007213 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3e4c6c42011-05-05 21:57:07 +00007214
7215 // Only consider previous declarations in the same scope.
7216 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
7217 /*ExplicitInstantiationOrSpecialization*/false);
7218 if (!Previous.empty()) {
7219 Redeclaration = true;
7220
7221 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
7222 if (!OldDecl && !Invalid) {
7223 Diag(UsingLoc, diag::err_redefinition_different_kind)
7224 << Name.Identifier;
7225
7226 NamedDecl *OldD = Previous.getRepresentativeDecl();
7227 if (OldD->getLocation().isValid())
7228 Diag(OldD->getLocation(), diag::note_previous_definition);
7229
7230 Invalid = true;
7231 }
7232
7233 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
7234 if (TemplateParameterListsAreEqual(TemplateParams,
7235 OldDecl->getTemplateParameters(),
7236 /*Complain=*/true,
7237 TPL_TemplateMatch))
7238 OldTemplateParams = OldDecl->getTemplateParameters();
7239 else
7240 Invalid = true;
7241
7242 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
7243 if (!Invalid &&
7244 !Context.hasSameType(OldTD->getUnderlyingType(),
7245 NewTD->getUnderlyingType())) {
7246 // FIXME: The C++0x standard does not clearly say this is ill-formed,
7247 // but we can't reasonably accept it.
7248 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
7249 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
7250 if (OldTD->getLocation().isValid())
7251 Diag(OldTD->getLocation(), diag::note_previous_definition);
7252 Invalid = true;
7253 }
7254 }
7255 }
7256
7257 // Merge any previous default template arguments into our parameters,
7258 // and check the parameter list.
7259 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
7260 TPC_TypeAliasTemplate))
7261 return 0;
7262
7263 TypeAliasTemplateDecl *NewDecl =
7264 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
7265 Name.Identifier, TemplateParams,
7266 NewTD);
7267
7268 NewDecl->setAccess(AS);
7269
7270 if (Invalid)
7271 NewDecl->setInvalidDecl();
7272 else if (OldDecl)
7273 NewDecl->setPreviousDeclaration(OldDecl);
7274
7275 NewND = NewDecl;
7276 } else {
7277 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
7278 NewND = NewTD;
7279 }
Richard Smith162e1c12011-04-15 14:24:37 +00007280
7281 if (!Redeclaration)
Richard Smith3e4c6c42011-05-05 21:57:07 +00007282 PushOnScopeChains(NewND, S);
Richard Smith162e1c12011-04-15 14:24:37 +00007283
Dmitri Gribenkoc27bc802012-08-02 20:49:51 +00007284 ActOnDocumentableDecl(NewND);
Richard Smith3e4c6c42011-05-05 21:57:07 +00007285 return NewND;
Richard Smith162e1c12011-04-15 14:24:37 +00007286}
7287
John McCalld226f652010-08-21 09:40:31 +00007288Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007289 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00007290 SourceLocation AliasLoc,
7291 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00007292 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00007293 SourceLocation IdentLoc,
7294 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00007295
Anders Carlsson81c85c42009-03-28 23:53:49 +00007296 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00007297 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
7298 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00007299
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007300 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00007301 NamedDecl *PrevDecl
7302 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
7303 ForRedeclaration);
7304 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
7305 PrevDecl = 0;
7306
7307 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00007308 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00007309 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00007310 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00007311 // FIXME: At some point, we'll want to create the (redundant)
7312 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00007313 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00007314 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00007315 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00007316 }
Mike Stump1eb44332009-09-09 15:08:12 +00007317
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007318 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
7319 diag::err_redefinition_different_kind;
7320 Diag(AliasLoc, DiagID) << Alias;
7321 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00007322 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00007323 }
7324
John McCalla24dc2e2009-11-17 02:14:36 +00007325 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00007326 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00007327
John McCallf36e02d2009-10-09 21:13:30 +00007328 if (R.empty()) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00007329 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smithbf9658c2012-04-05 23:13:23 +00007330 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00007331 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00007332 }
Anders Carlsson5721c682009-03-28 06:42:02 +00007333 }
Mike Stump1eb44332009-09-09 15:08:12 +00007334
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007335 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00007336 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00007337 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00007338 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00007339
John McCall3dbd3d52010-02-16 06:53:13 +00007340 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00007341 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00007342}
7343
Sean Hunt001cad92011-05-10 00:49:42 +00007344Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007345Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
7346 CXXMethodDecl *MD) {
7347 CXXRecordDecl *ClassDecl = MD->getParent();
7348
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007349 // C++ [except.spec]p14:
7350 // An implicitly declared special member function (Clause 12) shall have an
7351 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00007352 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007353 if (ClassDecl->isInvalidDecl())
7354 return ExceptSpec;
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007355
Sebastian Redl60618fa2011-03-12 11:50:43 +00007356 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007357 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7358 BEnd = ClassDecl->bases_end();
7359 B != BEnd; ++B) {
7360 if (B->isVirtual()) // Handled below.
7361 continue;
7362
Douglas Gregor18274032010-07-03 00:47:00 +00007363 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7364 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007365 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7366 // If this is a deleted function, add it anyway. This might be conformant
7367 // with the standard. This might not. I'm not sure. It might not matter.
7368 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007369 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007370 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007371 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007372
7373 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007374 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7375 BEnd = ClassDecl->vbases_end();
7376 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00007377 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
7378 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Sean Huntb320e0c2011-06-10 03:50:41 +00007379 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
7380 // If this is a deleted function, add it anyway. This might be conformant
7381 // with the standard. This might not. I'm not sure. It might not matter.
7382 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007383 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007384 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007385 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007386
7387 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007388 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7389 FEnd = ClassDecl->field_end();
7390 F != FEnd; ++F) {
Richard Smith7a614d82011-06-11 17:19:42 +00007391 if (F->hasInClassInitializer()) {
7392 if (Expr *E = F->getInClassInitializer())
7393 ExceptSpec.CalledExpr(E);
7394 else if (!F->isInvalidDecl())
Richard Smithb9d0b762012-07-27 04:22:15 +00007395 // DR1351:
7396 // If the brace-or-equal-initializer of a non-static data member
7397 // invokes a defaulted default constructor of its class or of an
7398 // enclosing class in a potentially evaluated subexpression, the
7399 // program is ill-formed.
7400 //
7401 // This resolution is unworkable: the exception specification of the
7402 // default constructor can be needed in an unevaluated context, in
7403 // particular, in the operand of a noexcept-expression, and we can be
7404 // unable to compute an exception specification for an enclosed class.
7405 //
7406 // We do not allow an in-class initializer to require the evaluation
7407 // of the exception specification for any in-class initializer whose
7408 // definition is not lexically complete.
7409 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith7a614d82011-06-11 17:19:42 +00007410 } else if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00007411 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Sean Huntb320e0c2011-06-10 03:50:41 +00007412 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
7413 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
7414 // If this is a deleted function, add it anyway. This might be conformant
7415 // with the standard. This might not. I'm not sure. It might not matter.
7416 // In particular, the problem is that this function never gets called. It
7417 // might just be ill-formed because this function attempts to refer to
7418 // a deleted function here.
7419 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00007420 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00007421 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007422 }
John McCalle23cf432010-12-14 08:05:40 +00007423
Sean Hunt001cad92011-05-10 00:49:42 +00007424 return ExceptSpec;
7425}
7426
Richard Smithafb49182012-11-29 01:34:07 +00007427namespace {
7428/// RAII object to register a special member as being currently declared.
7429struct DeclaringSpecialMember {
7430 Sema &S;
7431 Sema::SpecialMemberDecl D;
7432 bool WasAlreadyBeingDeclared;
7433
7434 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
7435 : S(S), D(RD, CSM) {
7436 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
7437 if (WasAlreadyBeingDeclared)
7438 // This almost never happens, but if it does, ensure that our cache
7439 // doesn't contain a stale result.
7440 S.SpecialMemberCache.clear();
7441
7442 // FIXME: Register a note to be produced if we encounter an error while
7443 // declaring the special member.
7444 }
7445 ~DeclaringSpecialMember() {
7446 if (!WasAlreadyBeingDeclared)
7447 S.SpecialMembersBeingDeclared.erase(D);
7448 }
7449
7450 /// \brief Are we already trying to declare this special member?
7451 bool isAlreadyBeingDeclared() const {
7452 return WasAlreadyBeingDeclared;
7453 }
7454};
7455}
7456
Sean Hunt001cad92011-05-10 00:49:42 +00007457CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
7458 CXXRecordDecl *ClassDecl) {
7459 // C++ [class.ctor]p5:
7460 // A default constructor for a class X is a constructor of class X
7461 // that can be called without an argument. If there is no
7462 // user-declared constructor for class X, a default constructor is
7463 // implicitly declared. An implicitly-declared default constructor
7464 // is an inline public member of its class.
Richard Smithd0adeb62012-11-27 21:20:31 +00007465 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Sean Hunt001cad92011-05-10 00:49:42 +00007466 "Should not build implicit default constructor!");
7467
Richard Smithafb49182012-11-29 01:34:07 +00007468 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
7469 if (DSM.isAlreadyBeingDeclared())
7470 return 0;
7471
Richard Smith7756afa2012-06-10 05:43:50 +00007472 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
7473 CXXDefaultConstructor,
7474 false);
7475
Douglas Gregoreb8c6702010-07-01 22:31:05 +00007476 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00007477 CanQualType ClassType
7478 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007479 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007480 DeclarationName Name
7481 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007482 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith61802452011-12-22 02:22:31 +00007483 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00007484 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00007485 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00007486 Constexpr);
Douglas Gregor32df23e2010-07-01 22:02:46 +00007487 DefaultCon->setAccess(AS_public);
Sean Hunt1e238652011-05-12 03:51:51 +00007488 DefaultCon->setDefaulted();
Douglas Gregor32df23e2010-07-01 22:02:46 +00007489 DefaultCon->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00007490
7491 // Build an exception specification pointing back at this constructor.
7492 FunctionProtoType::ExtProtoInfo EPI;
7493 EPI.ExceptionSpecType = EST_Unevaluated;
7494 EPI.ExceptionSpecDecl = DefaultCon;
7495 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7496
Richard Smithbc2a35d2012-12-08 08:32:28 +00007497 // We don't need to use SpecialMemberIsTrivial here; triviality for default
7498 // constructors is easy to compute.
7499 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
7500
7501 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
7502 DefaultCon->setDeletedAsWritten();
7503
Douglas Gregor18274032010-07-03 00:47:00 +00007504 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00007505 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
Richard Smithbc2a35d2012-12-08 08:32:28 +00007506
Douglas Gregor23c94db2010-07-02 17:43:08 +00007507 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00007508 PushOnScopeChains(DefaultCon, S, false);
7509 ClassDecl->addDecl(DefaultCon);
Sean Hunt71a682f2011-05-18 03:41:58 +00007510
Douglas Gregor32df23e2010-07-01 22:02:46 +00007511 return DefaultCon;
7512}
7513
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007514void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
7515 CXXConstructorDecl *Constructor) {
Sean Hunt1e238652011-05-12 03:51:51 +00007516 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Sean Huntcd10dec2011-05-23 23:14:04 +00007517 !Constructor->doesThisDeclarationHaveABody() &&
7518 !Constructor->isDeleted()) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00007519 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00007520
Anders Carlssonf6513ed2010-04-23 16:04:08 +00007521 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00007522 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00007523
Eli Friedman9a14db32012-10-18 20:14:08 +00007524 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007525 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00007526 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007527 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007528 Diag(CurrentLocation, diag::note_member_synthesized_at)
Sean Huntf961ea52011-05-10 19:08:14 +00007529 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00007530 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007531 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00007532 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007533
7534 SourceLocation Loc = Constructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007535 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007536
7537 Constructor->setUsed();
7538 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007539
7540 if (ASTMutationListener *L = getASTMutationListener()) {
7541 L->CompletedImplicitDefinition(Constructor);
7542 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00007543}
7544
Richard Smith7a614d82011-06-11 17:19:42 +00007545void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
Richard Smith1d28caf2012-12-11 01:14:52 +00007546 // Check that any explicitly-defaulted methods have exception specifications
7547 // compatible with their implicit exception specifications.
7548 CheckDelayedExplicitlyDefaultedMemberExceptionSpecs();
Richard Smith7a614d82011-06-11 17:19:42 +00007549}
7550
Sebastian Redlf677ea32011-02-05 19:23:19 +00007551void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
7552 // We start with an initial pass over the base classes to collect those that
7553 // inherit constructors from. If there are none, we can forgo all further
7554 // processing.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007555 typedef SmallVector<const RecordType *, 4> BasesVector;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007556 BasesVector BasesToInheritFrom;
7557 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
7558 BaseE = ClassDecl->bases_end();
7559 BaseIt != BaseE; ++BaseIt) {
7560 if (BaseIt->getInheritConstructors()) {
7561 QualType Base = BaseIt->getType();
7562 if (Base->isDependentType()) {
7563 // If we inherit constructors from anything that is dependent, just
7564 // abort processing altogether. We'll get another chance for the
7565 // instantiations.
7566 return;
7567 }
7568 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
7569 }
7570 }
7571 if (BasesToInheritFrom.empty())
7572 return;
7573
7574 // Now collect the constructors that we already have in the current class.
7575 // Those take precedence over inherited constructors.
7576 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
7577 // unless there is a user-declared constructor with the same signature in
7578 // the class where the using-declaration appears.
7579 llvm::SmallSet<const Type *, 8> ExistingConstructors;
7580 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
7581 CtorE = ClassDecl->ctor_end();
7582 CtorIt != CtorE; ++CtorIt) {
7583 ExistingConstructors.insert(
7584 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
7585 }
7586
Sebastian Redlf677ea32011-02-05 19:23:19 +00007587 DeclarationName CreatedCtorName =
7588 Context.DeclarationNames.getCXXConstructorName(
7589 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
7590
7591 // Now comes the true work.
7592 // First, we keep a map from constructor types to the base that introduced
7593 // them. Needed for finding conflicting constructors. We also keep the
7594 // actually inserted declarations in there, for pretty diagnostics.
7595 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
7596 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
7597 ConstructorToSourceMap InheritedConstructors;
7598 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
7599 BaseE = BasesToInheritFrom.end();
7600 BaseIt != BaseE; ++BaseIt) {
7601 const RecordType *Base = *BaseIt;
7602 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
7603 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
7604 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
7605 CtorE = BaseDecl->ctor_end();
7606 CtorIt != CtorE; ++CtorIt) {
7607 // Find the using declaration for inheriting this base's constructors.
Richard Smithc5a89a12012-04-02 01:30:27 +00007608 // FIXME: Don't perform name lookup just to obtain a source location!
Sebastian Redlf677ea32011-02-05 19:23:19 +00007609 DeclarationName Name =
7610 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
Richard Smithc5a89a12012-04-02 01:30:27 +00007611 LookupResult Result(*this, Name, SourceLocation(), LookupUsingDeclName);
7612 LookupQualifiedName(Result, CurContext);
7613 UsingDecl *UD = Result.getAsSingle<UsingDecl>();
Sebastian Redlf677ea32011-02-05 19:23:19 +00007614 SourceLocation UsingLoc = UD ? UD->getLocation() :
7615 ClassDecl->getLocation();
7616
7617 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
7618 // from the class X named in the using-declaration consists of actual
7619 // constructors and notional constructors that result from the
7620 // transformation of defaulted parameters as follows:
7621 // - all non-template default constructors of X, and
7622 // - for each non-template constructor of X that has at least one
7623 // parameter with a default argument, the set of constructors that
7624 // results from omitting any ellipsis parameter specification and
7625 // successively omitting parameters with a default argument from the
7626 // end of the parameter-type-list.
David Blaikie581deb32012-06-06 20:45:41 +00007627 CXXConstructorDecl *BaseCtor = *CtorIt;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007628 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
7629 const FunctionProtoType *BaseCtorType =
7630 BaseCtor->getType()->getAs<FunctionProtoType>();
7631
7632 for (unsigned params = BaseCtor->getMinRequiredArguments(),
7633 maxParams = BaseCtor->getNumParams();
7634 params <= maxParams; ++params) {
7635 // Skip default constructors. They're never inherited.
7636 if (params == 0)
7637 continue;
7638 // Skip copy and move constructors for the same reason.
7639 if (CanBeCopyOrMove && params == 1)
7640 continue;
7641
7642 // Build up a function type for this particular constructor.
7643 // FIXME: The working paper does not consider that the exception spec
7644 // for the inheriting constructor might be larger than that of the
Richard Smith7a614d82011-06-11 17:19:42 +00007645 // source. This code doesn't yet, either. When it does, this code will
7646 // need to be delayed until after exception specifications and in-class
7647 // member initializers are attached.
Sebastian Redlf677ea32011-02-05 19:23:19 +00007648 const Type *NewCtorType;
7649 if (params == maxParams)
7650 NewCtorType = BaseCtorType;
7651 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00007652 SmallVector<QualType, 16> Args;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007653 for (unsigned i = 0; i < params; ++i) {
7654 Args.push_back(BaseCtorType->getArgType(i));
7655 }
7656 FunctionProtoType::ExtProtoInfo ExtInfo =
7657 BaseCtorType->getExtProtoInfo();
7658 ExtInfo.Variadic = false;
7659 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
7660 Args.data(), params, ExtInfo)
7661 .getTypePtr();
7662 }
7663 const Type *CanonicalNewCtorType =
7664 Context.getCanonicalType(NewCtorType);
7665
7666 // Now that we have the type, first check if the class already has a
7667 // constructor with this signature.
7668 if (ExistingConstructors.count(CanonicalNewCtorType))
7669 continue;
7670
7671 // Then we check if we have already declared an inherited constructor
7672 // with this signature.
7673 std::pair<ConstructorToSourceMap::iterator, bool> result =
7674 InheritedConstructors.insert(std::make_pair(
7675 CanonicalNewCtorType,
7676 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
7677 if (!result.second) {
7678 // Already in the map. If it came from a different class, that's an
7679 // error. Not if it's from the same.
7680 CanQualType PreviousBase = result.first->second.first;
7681 if (CanonicalBase != PreviousBase) {
7682 const CXXConstructorDecl *PrevCtor = result.first->second.second;
7683 const CXXConstructorDecl *PrevBaseCtor =
7684 PrevCtor->getInheritedConstructor();
7685 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
7686
7687 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
7688 Diag(BaseCtor->getLocation(),
7689 diag::note_using_decl_constructor_conflict_current_ctor);
7690 Diag(PrevBaseCtor->getLocation(),
7691 diag::note_using_decl_constructor_conflict_previous_ctor);
7692 Diag(PrevCtor->getLocation(),
7693 diag::note_using_decl_constructor_conflict_previous_using);
7694 }
7695 continue;
7696 }
7697
7698 // OK, we're there, now add the constructor.
7699 // C++0x [class.inhctor]p8: [...] that would be performed by a
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007700 // user-written inline constructor [...]
Sebastian Redlf677ea32011-02-05 19:23:19 +00007701 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
7702 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007703 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
7704 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00007705 /*ImplicitlyDeclared=*/true,
7706 // FIXME: Due to a defect in the standard, we treat inherited
7707 // constructors as constexpr even if that makes them ill-formed.
7708 /*Constexpr=*/BaseCtor->isConstexpr());
Sebastian Redlf677ea32011-02-05 19:23:19 +00007709 NewCtor->setAccess(BaseCtor->getAccess());
7710
7711 // Build up the parameter decls and add them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00007712 SmallVector<ParmVarDecl *, 16> ParamDecls;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007713 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007714 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
7715 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007716 /*IdentifierInfo=*/0,
7717 BaseCtorType->getArgType(i),
7718 /*TInfo=*/0, SC_None,
7719 SC_None, /*DefaultArg=*/0));
7720 }
David Blaikie4278c652011-09-21 18:16:56 +00007721 NewCtor->setParams(ParamDecls);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007722 NewCtor->setInheritedConstructor(BaseCtor);
7723
Sebastian Redlf677ea32011-02-05 19:23:19 +00007724 ClassDecl->addDecl(NewCtor);
7725 result.first->second.second = NewCtor;
7726 }
7727 }
7728 }
7729}
7730
Sean Huntcb45a0f2011-05-12 22:46:25 +00007731Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00007732Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
7733 CXXRecordDecl *ClassDecl = MD->getParent();
7734
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007735 // C++ [except.spec]p14:
7736 // An implicitly declared special member function (Clause 12) shall have
7737 // an exception-specification.
Richard Smithe6975e92012-04-17 00:58:00 +00007738 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00007739 if (ClassDecl->isInvalidDecl())
7740 return ExceptSpec;
7741
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007742 // Direct base-class destructors.
7743 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
7744 BEnd = ClassDecl->bases_end();
7745 B != BEnd; ++B) {
7746 if (B->isVirtual()) // Handled below.
7747 continue;
7748
7749 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007750 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007751 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007752 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007753
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007754 // Virtual base-class destructors.
7755 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
7756 BEnd = ClassDecl->vbases_end();
7757 B != BEnd; ++B) {
7758 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007759 ExceptSpec.CalledDecl(B->getLocStart(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007760 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007761 }
Sebastian Redl0ee33912011-05-19 05:13:44 +00007762
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007763 // Field destructors.
7764 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
7765 FEnd = ClassDecl->field_end();
7766 F != FEnd; ++F) {
7767 if (const RecordType *RecordTy
7768 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithe6975e92012-04-17 00:58:00 +00007769 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl0ee33912011-05-19 05:13:44 +00007770 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007771 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00007772
Sean Huntcb45a0f2011-05-12 22:46:25 +00007773 return ExceptSpec;
7774}
7775
7776CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
7777 // C++ [class.dtor]p2:
7778 // If a class has no user-declared destructor, a destructor is
7779 // declared implicitly. An implicitly-declared destructor is an
7780 // inline public member of its class.
Richard Smithe5411b72012-12-01 02:35:44 +00007781 assert(ClassDecl->needsImplicitDestructor());
Sean Huntcb45a0f2011-05-12 22:46:25 +00007782
Richard Smithafb49182012-11-29 01:34:07 +00007783 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
7784 if (DSM.isAlreadyBeingDeclared())
7785 return 0;
7786
Douglas Gregor4923aa22010-07-02 20:37:36 +00007787 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007788 CanQualType ClassType
7789 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007790 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007791 DeclarationName Name
7792 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00007793 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007794 CXXDestructorDecl *Destructor
Richard Smithb9d0b762012-07-27 04:22:15 +00007795 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
7796 QualType(), 0, /*isInline=*/true,
Sebastian Redl60618fa2011-03-12 11:50:43 +00007797 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007798 Destructor->setAccess(AS_public);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007799 Destructor->setDefaulted();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007800 Destructor->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00007801
7802 // Build an exception specification pointing back at this destructor.
7803 FunctionProtoType::ExtProtoInfo EPI;
7804 EPI.ExceptionSpecType = EST_Unevaluated;
7805 EPI.ExceptionSpecDecl = Destructor;
7806 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
7807
Richard Smithbc2a35d2012-12-08 08:32:28 +00007808 AddOverriddenMethods(ClassDecl, Destructor);
7809
7810 // We don't need to use SpecialMemberIsTrivial here; triviality for
7811 // destructors is easy to compute.
7812 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
7813
7814 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
7815 Destructor->setDeletedAsWritten();
7816
Douglas Gregor4923aa22010-07-02 20:37:36 +00007817 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00007818 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithb9d0b762012-07-27 04:22:15 +00007819
Douglas Gregor4923aa22010-07-02 20:37:36 +00007820 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00007821 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00007822 PushOnScopeChains(Destructor, S, false);
7823 ClassDecl->addDecl(Destructor);
Sean Huntcb45a0f2011-05-12 22:46:25 +00007824
Douglas Gregorfabd43a2010-07-01 19:09:28 +00007825 return Destructor;
7826}
7827
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007828void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00007829 CXXDestructorDecl *Destructor) {
Sean Huntcd10dec2011-05-23 23:14:04 +00007830 assert((Destructor->isDefaulted() &&
Richard Smith03f68782012-02-26 07:51:39 +00007831 !Destructor->doesThisDeclarationHaveABody() &&
7832 !Destructor->isDeleted()) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007833 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00007834 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007835 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007836
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007837 if (Destructor->isInvalidDecl())
7838 return;
7839
Eli Friedman9a14db32012-10-18 20:14:08 +00007840 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00007841
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00007842 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00007843 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
7844 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00007845
Douglas Gregorc63d2c82010-05-12 16:39:35 +00007846 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00007847 Diag(CurrentLocation, diag::note_member_synthesized_at)
7848 << CXXDestructor << Context.getTagDeclType(ClassDecl);
7849
7850 Destructor->setInvalidDecl();
7851 return;
7852 }
7853
Douglas Gregor4ada9d32010-09-20 16:48:21 +00007854 SourceLocation Loc = Destructor->getLocation();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00007855 Destructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor690b2db2011-09-22 20:32:43 +00007856 Destructor->setImplicitlyDefined(true);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007857 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007858 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl58a2cd82011-04-24 16:28:06 +00007859
7860 if (ASTMutationListener *L = getASTMutationListener()) {
7861 L->CompletedImplicitDefinition(Destructor);
7862 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00007863}
7864
Richard Smitha4156b82012-04-21 18:42:51 +00007865/// \brief Perform any semantic analysis which needs to be delayed until all
7866/// pending class member declarations have been parsed.
7867void Sema::ActOnFinishCXXMemberDecls() {
Richard Smitha4156b82012-04-21 18:42:51 +00007868 // Perform any deferred checking of exception specifications for virtual
7869 // destructors.
7870 for (unsigned i = 0, e = DelayedDestructorExceptionSpecChecks.size();
7871 i != e; ++i) {
7872 const CXXDestructorDecl *Dtor =
7873 DelayedDestructorExceptionSpecChecks[i].first;
7874 assert(!Dtor->getParent()->isDependentType() &&
7875 "Should not ever add destructors of templates into the list.");
7876 CheckOverridingFunctionExceptionSpec(Dtor,
7877 DelayedDestructorExceptionSpecChecks[i].second);
7878 }
7879 DelayedDestructorExceptionSpecChecks.clear();
7880}
7881
Richard Smithb9d0b762012-07-27 04:22:15 +00007882void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
7883 CXXDestructorDecl *Destructor) {
Richard Smith80ad52f2013-01-02 11:42:31 +00007884 assert(getLangOpts().CPlusPlus11 &&
Richard Smithb9d0b762012-07-27 04:22:15 +00007885 "adjusting dtor exception specs was introduced in c++11");
7886
Sebastian Redl0ee33912011-05-19 05:13:44 +00007887 // C++11 [class.dtor]p3:
7888 // A declaration of a destructor that does not have an exception-
7889 // specification is implicitly considered to have the same exception-
7890 // specification as an implicit declaration.
Richard Smithb9d0b762012-07-27 04:22:15 +00007891 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl0ee33912011-05-19 05:13:44 +00007892 getAs<FunctionProtoType>();
Richard Smithb9d0b762012-07-27 04:22:15 +00007893 if (DtorType->hasExceptionSpec())
Sebastian Redl0ee33912011-05-19 05:13:44 +00007894 return;
7895
Chandler Carruth3f224b22011-09-20 04:55:26 +00007896 // Replace the destructor's type, building off the existing one. Fortunately,
7897 // the only thing of interest in the destructor type is its extended info.
7898 // The return and arguments are fixed.
Richard Smithb9d0b762012-07-27 04:22:15 +00007899 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
7900 EPI.ExceptionSpecType = EST_Unevaluated;
7901 EPI.ExceptionSpecDecl = Destructor;
7902 Destructor->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
Richard Smitha4156b82012-04-21 18:42:51 +00007903
Sebastian Redl0ee33912011-05-19 05:13:44 +00007904 // FIXME: If the destructor has a body that could throw, and the newly created
7905 // spec doesn't allow exceptions, we should emit a warning, because this
7906 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithb9d0b762012-07-27 04:22:15 +00007907 // However, we don't have a body or an exception specification yet, so it
7908 // needs to be done somewhere else.
Sebastian Redl0ee33912011-05-19 05:13:44 +00007909}
7910
Richard Smith8c889532012-11-14 00:50:40 +00007911/// When generating a defaulted copy or move assignment operator, if a field
7912/// should be copied with __builtin_memcpy rather than via explicit assignments,
7913/// do so. This optimization only applies for arrays of scalars, and for arrays
7914/// of class type where the selected copy/move-assignment operator is trivial.
7915static StmtResult
7916buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
7917 Expr *To, Expr *From) {
7918 // Compute the size of the memory buffer to be copied.
7919 QualType SizeType = S.Context.getSizeType();
7920 llvm::APInt Size(S.Context.getTypeSize(SizeType),
7921 S.Context.getTypeSizeInChars(T).getQuantity());
7922
7923 // Take the address of the field references for "from" and "to". We
7924 // directly construct UnaryOperators here because semantic analysis
7925 // does not permit us to take the address of an xvalue.
7926 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
7927 S.Context.getPointerType(From->getType()),
7928 VK_RValue, OK_Ordinary, Loc);
7929 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
7930 S.Context.getPointerType(To->getType()),
7931 VK_RValue, OK_Ordinary, Loc);
7932
7933 const Type *E = T->getBaseElementTypeUnsafe();
7934 bool NeedsCollectableMemCpy =
7935 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
7936
7937 // Create a reference to the __builtin_objc_memmove_collectable function
7938 StringRef MemCpyName = NeedsCollectableMemCpy ?
7939 "__builtin_objc_memmove_collectable" :
7940 "__builtin_memcpy";
7941 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
7942 Sema::LookupOrdinaryName);
7943 S.LookupName(R, S.TUScope, true);
7944
7945 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
7946 if (!MemCpy)
7947 // Something went horribly wrong earlier, and we will have complained
7948 // about it.
7949 return StmtError();
7950
7951 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
7952 VK_RValue, Loc, 0);
7953 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
7954
7955 Expr *CallArgs[] = {
7956 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
7957 };
7958 ExprResult Call = S.ActOnCallExpr(/*Scope=*/0, MemCpyRef.take(),
7959 Loc, CallArgs, Loc);
7960
7961 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
7962 return S.Owned(Call.takeAs<Stmt>());
7963}
7964
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007965/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregor06a9f362010-05-01 20:49:11 +00007966/// \c To.
7967///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007968/// This routine is used to copy/move the members of a class with an
7969/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregor06a9f362010-05-01 20:49:11 +00007970/// copied are arrays, this routine builds for loops to copy them.
7971///
7972/// \param S The Sema object used for type-checking.
7973///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007974/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007975///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007976/// \param T The type of the expressions being copied/moved. Both expressions
7977/// must have this type.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007978///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007979/// \param To The expression we are copying/moving to.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007980///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007981/// \param From The expression we are copying/moving from.
Douglas Gregor06a9f362010-05-01 20:49:11 +00007982///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007983/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor6cdc1612010-05-04 15:20:55 +00007984/// Otherwise, it's a non-static member subobject.
7985///
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00007986/// \param Copying Whether we're copying or moving.
7987///
Douglas Gregor06a9f362010-05-01 20:49:11 +00007988/// \param Depth Internal parameter recording the depth of the recursion.
7989///
Richard Smith8c889532012-11-14 00:50:40 +00007990/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
7991/// if a memcpy should be used instead.
John McCall60d7b3a2010-08-24 06:29:42 +00007992static StmtResult
Richard Smith8c889532012-11-14 00:50:40 +00007993buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
7994 Expr *To, Expr *From,
7995 bool CopyingBaseSubobject, bool Copying,
7996 unsigned Depth = 0) {
Richard Smith044c8aa2012-11-13 00:54:12 +00007997 // C++11 [class.copy]p28:
Douglas Gregor06a9f362010-05-01 20:49:11 +00007998 // Each subobject is assigned in the manner appropriate to its type:
7999 //
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008000 // - if the subobject is of class type, as if by a call to operator= with
8001 // the subobject as the object expression and the corresponding
8002 // subobject of x as a single function argument (as if by explicit
8003 // qualification; that is, ignoring any possible virtual overriding
8004 // functions in more derived classes);
Richard Smith044c8aa2012-11-13 00:54:12 +00008005 //
8006 // C++03 [class.copy]p13:
8007 // - if the subobject is of class type, the copy assignment operator for
8008 // the class is used (as if by explicit qualification; that is,
8009 // ignoring any possible virtual overriding functions in more derived
8010 // classes);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008011 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
8012 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith044c8aa2012-11-13 00:54:12 +00008013
Douglas Gregor06a9f362010-05-01 20:49:11 +00008014 // Look for operator=.
8015 DeclarationName Name
8016 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8017 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
8018 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008019
Richard Smith044c8aa2012-11-13 00:54:12 +00008020 // Prior to C++11, filter out any result that isn't a copy/move-assignment
8021 // operator.
Richard Smith80ad52f2013-01-02 11:42:31 +00008022 if (!S.getLangOpts().CPlusPlus11) {
Richard Smith044c8aa2012-11-13 00:54:12 +00008023 LookupResult::Filter F = OpLookup.makeFilter();
8024 while (F.hasNext()) {
8025 NamedDecl *D = F.next();
8026 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
8027 if (Method->isCopyAssignmentOperator() ||
8028 (!Copying && Method->isMoveAssignmentOperator()))
8029 continue;
8030
8031 F.erase();
8032 }
8033 F.done();
John McCallb0207482010-03-16 06:11:48 +00008034 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008035
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008036 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith044c8aa2012-11-13 00:54:12 +00008037 // assignment operators we found. This strange dance is required when
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008038 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith044c8aa2012-11-13 00:54:12 +00008039 // ensure that we're getting the right base class subobject (without
Douglas Gregor6cdc1612010-05-04 15:20:55 +00008040 // ambiguities), we need to cast "this" to that subobject type; to
8041 // ensure that we don't go through the virtual call mechanism, we need
8042 // to qualify the operator= name with the base class (see below). However,
8043 // this means that if the base class has a protected copy assignment
8044 // operator, the protected member access check will fail. So, we
8045 // rewrite "protected" access to "public" access in this case, since we
8046 // know by construction that we're calling from a derived class.
8047 if (CopyingBaseSubobject) {
8048 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
8049 L != LEnd; ++L) {
8050 if (L.getAccess() == AS_protected)
8051 L.setAccess(AS_public);
8052 }
8053 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008054
Douglas Gregor06a9f362010-05-01 20:49:11 +00008055 // Create the nested-name-specifier that will be used to qualify the
8056 // reference to operator=; this is required to suppress the virtual
8057 // call mechanism.
8058 CXXScopeSpec SS;
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008059 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith044c8aa2012-11-13 00:54:12 +00008060 SS.MakeTrivial(S.Context,
8061 NestedNameSpecifier::Create(S.Context, 0, false,
Manuel Klimek5b6a3dd2012-02-06 21:51:39 +00008062 CanonicalT),
Douglas Gregorc34348a2011-02-24 17:54:50 +00008063 Loc);
Richard Smith044c8aa2012-11-13 00:54:12 +00008064
Douglas Gregor06a9f362010-05-01 20:49:11 +00008065 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00008066 ExprResult OpEqualRef
Richard Smith044c8aa2012-11-13 00:54:12 +00008067 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008068 /*TemplateKWLoc=*/SourceLocation(),
8069 /*FirstQualifierInScope=*/0,
8070 OpLookup,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008071 /*TemplateArgs=*/0,
8072 /*SuppressQualifierCheck=*/true);
8073 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008074 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008075
Douglas Gregor06a9f362010-05-01 20:49:11 +00008076 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00008077
Richard Smith044c8aa2012-11-13 00:54:12 +00008078 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00008079 OpEqualRef.takeAs<Expr>(),
8080 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008081 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008082 return StmtError();
Richard Smith044c8aa2012-11-13 00:54:12 +00008083
Richard Smith8c889532012-11-14 00:50:40 +00008084 // If we built a call to a trivial 'operator=' while copying an array,
8085 // bail out. We'll replace the whole shebang with a memcpy.
8086 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
8087 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
8088 return StmtResult((Stmt*)0);
8089
Richard Smith044c8aa2012-11-13 00:54:12 +00008090 // Convert to an expression-statement, and clean up any produced
8091 // temporaries.
Richard Smith41956372013-01-14 22:39:08 +00008092 return S.ActOnExprStmt(Call);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008093 }
John McCallb0207482010-03-16 06:11:48 +00008094
Richard Smith044c8aa2012-11-13 00:54:12 +00008095 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregor06a9f362010-05-01 20:49:11 +00008096 // operator is used.
Richard Smith044c8aa2012-11-13 00:54:12 +00008097 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008098 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00008099 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008100 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00008101 return StmtError();
Richard Smith41956372013-01-14 22:39:08 +00008102 return S.ActOnExprStmt(Assignment);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008103 }
Richard Smith044c8aa2012-11-13 00:54:12 +00008104
8105 // - if the subobject is an array, each element is assigned, in the
Douglas Gregor06a9f362010-05-01 20:49:11 +00008106 // manner appropriate to the element type;
Richard Smith044c8aa2012-11-13 00:54:12 +00008107
Douglas Gregor06a9f362010-05-01 20:49:11 +00008108 // Construct a loop over the array bounds, e.g.,
8109 //
8110 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
8111 //
8112 // that will copy each of the array elements.
8113 QualType SizeType = S.Context.getSizeType();
Richard Smith8c889532012-11-14 00:50:40 +00008114
Douglas Gregor06a9f362010-05-01 20:49:11 +00008115 // Create the iteration variable.
8116 IdentifierInfo *IterationVarName = 0;
8117 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00008118 SmallString<8> Str;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008119 llvm::raw_svector_ostream OS(Str);
8120 OS << "__i" << Depth;
8121 IterationVarName = &S.Context.Idents.get(OS.str());
8122 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008123 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008124 IterationVarName, SizeType,
8125 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00008126 SC_None, SC_None);
Richard Smith8c889532012-11-14 00:50:40 +00008127
Douglas Gregor06a9f362010-05-01 20:49:11 +00008128 // Initialize the iteration variable to zero.
8129 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00008130 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00008131
8132 // Create a reference to the iteration variable; we'll use this several
8133 // times throughout.
8134 Expr *IterationVarRef
Eli Friedman8c382062012-01-23 02:35:22 +00008135 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008136 assert(IterationVarRef && "Reference to invented variable cannot fail!");
Eli Friedman8c382062012-01-23 02:35:22 +00008137 Expr *IterationVarRefRVal = S.DefaultLvalueConversion(IterationVarRef).take();
8138 assert(IterationVarRefRVal && "Conversion of invented variable cannot fail!");
8139
Douglas Gregor06a9f362010-05-01 20:49:11 +00008140 // Create the DeclStmt that holds the iteration variable.
8141 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith8c889532012-11-14 00:50:40 +00008142
Douglas Gregor06a9f362010-05-01 20:49:11 +00008143 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00008144 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008145 IterationVarRefRVal,
8146 Loc));
John McCall9ae2f072010-08-23 23:25:46 +00008147 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
Eli Friedman8c382062012-01-23 02:35:22 +00008148 IterationVarRefRVal,
8149 Loc));
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008150 if (!Copying) // Cast to rvalue
8151 From = CastForMoving(S, From);
8152
8153 // Build the copy/move for an individual element of the array.
Richard Smith8c889532012-11-14 00:50:40 +00008154 StmtResult Copy =
8155 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
8156 To, From, CopyingBaseSubobject,
8157 Copying, Depth + 1);
8158 // Bail out if copying fails or if we determined that we should use memcpy.
8159 if (Copy.isInvalid() || !Copy.get())
8160 return Copy;
8161
8162 // Create the comparison against the array bound.
8163 llvm::APInt Upper
8164 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
8165 Expr *Comparison
8166 = new (S.Context) BinaryOperator(IterationVarRefRVal,
8167 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
8168 BO_NE, S.Context.BoolTy,
8169 VK_RValue, OK_Ordinary, Loc, false);
8170
8171 // Create the pre-increment of the iteration variable.
8172 Expr *Increment
8173 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
8174 VK_LValue, OK_Ordinary, Loc);
8175
Douglas Gregor06a9f362010-05-01 20:49:11 +00008176 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00008177 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00008178 S.MakeFullExpr(Comparison),
Richard Smith41956372013-01-14 22:39:08 +00008179 0, S.MakeFullDiscardedValueExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00008180 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008181}
8182
Richard Smith8c889532012-11-14 00:50:40 +00008183static StmtResult
8184buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
8185 Expr *To, Expr *From,
8186 bool CopyingBaseSubobject, bool Copying) {
8187 // Maybe we should use a memcpy?
8188 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
8189 T.isTriviallyCopyableType(S.Context))
8190 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8191
8192 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
8193 CopyingBaseSubobject,
8194 Copying, 0));
8195
8196 // If we ended up picking a trivial assignment operator for an array of a
8197 // non-trivially-copyable class type, just emit a memcpy.
8198 if (!Result.isInvalid() && !Result.get())
8199 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
8200
8201 return Result;
8202}
8203
Richard Smithb9d0b762012-07-27 04:22:15 +00008204Sema::ImplicitExceptionSpecification
8205Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
8206 CXXRecordDecl *ClassDecl = MD->getParent();
8207
8208 ImplicitExceptionSpecification ExceptSpec(*this);
8209 if (ClassDecl->isInvalidDecl())
8210 return ExceptSpec;
8211
8212 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
8213 assert(T->getNumArgs() == 1 && "not a copy assignment op");
8214 unsigned ArgQuals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
8215
Douglas Gregorb87786f2010-07-01 17:48:08 +00008216 // C++ [except.spec]p14:
Richard Smithb9d0b762012-07-27 04:22:15 +00008217 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregorb87786f2010-07-01 17:48:08 +00008218 // exception-specification. [...]
Sean Hunt661c67a2011-06-21 23:42:56 +00008219
8220 // It is unspecified whether or not an implicit copy assignment operator
8221 // attempts to deduplicate calls to assignment operators of virtual bases are
8222 // made. As such, this exception specification is effectively unspecified.
8223 // Based on a similar decision made for constness in C++0x, we're erring on
8224 // the side of assuming such calls to be made regardless of whether they
8225 // actually happen.
Douglas Gregorb87786f2010-07-01 17:48:08 +00008226 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8227 BaseEnd = ClassDecl->bases_end();
8228 Base != BaseEnd; ++Base) {
Sean Hunt661c67a2011-06-21 23:42:56 +00008229 if (Base->isVirtual())
8230 continue;
8231
Douglas Gregora376d102010-07-02 21:50:04 +00008232 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00008233 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Hunt661c67a2011-06-21 23:42:56 +00008234 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8235 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008236 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Douglas Gregorb87786f2010-07-01 17:48:08 +00008237 }
Sean Hunt661c67a2011-06-21 23:42:56 +00008238
8239 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8240 BaseEnd = ClassDecl->vbases_end();
8241 Base != BaseEnd; ++Base) {
8242 CXXRecordDecl *BaseClassDecl
8243 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8244 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
8245 ArgQuals, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008246 ExceptSpec.CalledDecl(Base->getLocStart(), CopyAssign);
Sean Hunt661c67a2011-06-21 23:42:56 +00008247 }
8248
Douglas Gregorb87786f2010-07-01 17:48:08 +00008249 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8250 FieldEnd = ClassDecl->field_end();
8251 Field != FieldEnd;
8252 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008253 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Hunt661c67a2011-06-21 23:42:56 +00008254 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
8255 if (CXXMethodDecl *CopyAssign =
Richard Smith6a06e5f2012-07-18 03:36:00 +00008256 LookupCopyingAssignment(FieldClassDecl,
8257 ArgQuals | FieldType.getCVRQualifiers(),
8258 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008259 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaracdb80762011-07-11 08:52:40 +00008260 }
Douglas Gregorb87786f2010-07-01 17:48:08 +00008261 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00008262
Richard Smithb9d0b762012-07-27 04:22:15 +00008263 return ExceptSpec;
Sean Hunt30de05c2011-05-14 05:23:20 +00008264}
8265
8266CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
8267 // Note: The following rules are largely analoguous to the copy
8268 // constructor rules. Note that virtual bases are not taken into account
8269 // for determining the argument type of the operator. Note also that
8270 // operators taking an object instead of a reference are allowed.
Richard Smithe5411b72012-12-01 02:35:44 +00008271 assert(ClassDecl->needsImplicitCopyAssignment());
Sean Hunt30de05c2011-05-14 05:23:20 +00008272
Richard Smithafb49182012-11-29 01:34:07 +00008273 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
8274 if (DSM.isAlreadyBeingDeclared())
8275 return 0;
8276
Sean Hunt30de05c2011-05-14 05:23:20 +00008277 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8278 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smithacf796b2012-11-28 06:23:12 +00008279 if (ClassDecl->implicitCopyAssignmentHasConstParam())
Sean Hunt30de05c2011-05-14 05:23:20 +00008280 ArgType = ArgType.withConst();
8281 ArgType = Context.getLValueReferenceType(ArgType);
8282
Douglas Gregord3c35902010-07-01 16:36:15 +00008283 // An implicitly-declared copy assignment operator is an inline public
8284 // member of its class.
8285 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008286 SourceLocation ClassLoc = ClassDecl->getLocation();
8287 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00008288 CXXMethodDecl *CopyAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008289 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Douglas Gregord3c35902010-07-01 16:36:15 +00008290 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00008291 /*StorageClassAsWritten=*/SC_None,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00008292 /*isInline=*/true, /*isConstexpr=*/false,
Douglas Gregorf5251602011-03-08 17:10:18 +00008293 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00008294 CopyAssignment->setAccess(AS_public);
Sean Hunt7f410192011-05-14 05:23:24 +00008295 CopyAssignment->setDefaulted();
Douglas Gregord3c35902010-07-01 16:36:15 +00008296 CopyAssignment->setImplicit();
Richard Smithb9d0b762012-07-27 04:22:15 +00008297
8298 // Build an exception specification pointing back at this member.
8299 FunctionProtoType::ExtProtoInfo EPI;
8300 EPI.ExceptionSpecType = EST_Unevaluated;
8301 EPI.ExceptionSpecDecl = CopyAssignment;
8302 CopyAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8303
Douglas Gregord3c35902010-07-01 16:36:15 +00008304 // Add the parameter to the operator.
8305 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00008306 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00008307 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00008308 SC_None,
8309 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008310 CopyAssignment->setParams(FromParam);
Sean Hunt7f410192011-05-14 05:23:24 +00008311
Richard Smithbc2a35d2012-12-08 08:32:28 +00008312 AddOverriddenMethods(ClassDecl, CopyAssignment);
8313
8314 CopyAssignment->setTrivial(
8315 ClassDecl->needsOverloadResolutionForCopyAssignment()
8316 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
8317 : ClassDecl->hasTrivialCopyAssignment());
8318
Nico Weberafcc96a2012-01-23 03:19:29 +00008319 // C++0x [class.copy]p19:
8320 // .... If the class definition does not explicitly declare a copy
8321 // assignment operator, there is no user-declared move constructor, and
8322 // there is no user-declared move assignment operator, a copy assignment
8323 // operator is implicitly declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00008324 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Sean Hunt71a682f2011-05-18 03:41:58 +00008325 CopyAssignment->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00008326
Richard Smithbc2a35d2012-12-08 08:32:28 +00008327 // Note that we have added this copy-assignment operator.
8328 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
8329
8330 if (Scope *S = getScopeForContext(ClassDecl))
8331 PushOnScopeChains(CopyAssignment, S, false);
8332 ClassDecl->addDecl(CopyAssignment);
8333
Douglas Gregord3c35902010-07-01 16:36:15 +00008334 return CopyAssignment;
8335}
8336
Douglas Gregor06a9f362010-05-01 20:49:11 +00008337void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
8338 CXXMethodDecl *CopyAssignOperator) {
Sean Hunt7f410192011-05-14 05:23:24 +00008339 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008340 CopyAssignOperator->isOverloadedOperator() &&
8341 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008342 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
8343 !CopyAssignOperator->isDeleted()) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00008344 "DefineImplicitCopyAssignment called for wrong function");
8345
8346 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
8347
8348 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
8349 CopyAssignOperator->setInvalidDecl();
8350 return;
8351 }
8352
8353 CopyAssignOperator->setUsed();
8354
Eli Friedman9a14db32012-10-18 20:14:08 +00008355 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00008356 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008357
8358 // C++0x [class.copy]p30:
8359 // The implicitly-defined or explicitly-defaulted copy assignment operator
8360 // for a non-union class X performs memberwise copy assignment of its
8361 // subobjects. The direct base classes of X are assigned first, in the
8362 // order of their declaration in the base-specifier-list, and then the
8363 // immediate non-static data members of X are assigned, in the order in
8364 // which they were declared in the class definition.
8365
8366 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008367 SmallVector<Stmt*, 8> Statements;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008368
8369 // The parameter for the "other" object, which we are copying from.
8370 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
8371 Qualifiers OtherQuals = Other->getType().getQualifiers();
8372 QualType OtherRefType = Other->getType();
8373 if (const LValueReferenceType *OtherRef
8374 = OtherRefType->getAs<LValueReferenceType>()) {
8375 OtherRefType = OtherRef->getPointeeType();
8376 OtherQuals = OtherRefType.getQualifiers();
8377 }
8378
8379 // Our location for everything implicitly-generated.
8380 SourceLocation Loc = CopyAssignOperator->getLocation();
8381
8382 // Construct a reference to the "other" object. We'll be using this
8383 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00008384 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008385 assert(OtherRef && "Reference to parameter cannot fail!");
8386
8387 // Construct the "this" pointer. We'll be using this throughout the generated
8388 // ASTs.
8389 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8390 assert(This && "Reference to this cannot fail!");
8391
8392 // Assign base classes.
8393 bool Invalid = false;
8394 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8395 E = ClassDecl->bases_end(); Base != E; ++Base) {
8396 // Form the assignment:
8397 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
8398 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00008399 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00008400 Invalid = true;
8401 continue;
8402 }
8403
John McCallf871d0c2010-08-07 06:22:56 +00008404 CXXCastPath BasePath;
8405 BasePath.push_back(Base);
8406
Douglas Gregor06a9f362010-05-01 20:49:11 +00008407 // Construct the "from" expression, which is an implicit cast to the
8408 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00008409 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00008410 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
8411 CK_UncheckedDerivedToBase,
8412 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00008413
8414 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00008415 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008416
8417 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00008418 To = ImpCastExprToType(To.take(),
8419 Context.getCVRQualifiedType(BaseType,
8420 CopyAssignOperator->getTypeQualifiers()),
8421 CK_UncheckedDerivedToBase,
8422 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008423
8424 // Build the copy.
Richard Smith8c889532012-11-14 00:50:40 +00008425 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00008426 To.get(), From,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008427 /*CopyingBaseSubobject=*/true,
8428 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008429 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008430 Diag(CurrentLocation, diag::note_member_synthesized_at)
8431 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8432 CopyAssignOperator->setInvalidDecl();
8433 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008434 }
8435
8436 // Success! Record the copy.
8437 Statements.push_back(Copy.takeAs<Expr>());
8438 }
8439
Douglas Gregor06a9f362010-05-01 20:49:11 +00008440 // Assign non-static members.
8441 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8442 FieldEnd = ClassDecl->field_end();
8443 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008444 if (Field->isUnnamedBitfield())
8445 continue;
8446
Douglas Gregor06a9f362010-05-01 20:49:11 +00008447 // Check for members of reference type; we can't copy those.
8448 if (Field->getType()->isReferenceType()) {
8449 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8450 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8451 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008452 Diag(CurrentLocation, diag::note_member_synthesized_at)
8453 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008454 Invalid = true;
8455 continue;
8456 }
8457
8458 // Check for members of const-qualified, non-class type.
8459 QualType BaseType = Context.getBaseElementType(Field->getType());
8460 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8461 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8462 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8463 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008464 Diag(CurrentLocation, diag::note_member_synthesized_at)
8465 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008466 Invalid = true;
8467 continue;
8468 }
John McCallb77115d2011-06-17 00:18:42 +00008469
8470 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008471 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8472 continue;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008473
8474 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00008475 if (FieldType->isIncompleteArrayType()) {
8476 assert(ClassDecl->hasFlexibleArrayMember() &&
8477 "Incomplete array type is not valid");
8478 continue;
8479 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008480
8481 // Build references to the field in the object we're copying from and to.
8482 CXXScopeSpec SS; // Intentionally empty
8483 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8484 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008485 MemberLookup.addDecl(*Field);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008486 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00008487 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00008488 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008489 SS, SourceLocation(), 0,
8490 MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00008491 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00008492 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008493 SS, SourceLocation(), 0,
8494 MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008495 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8496 assert(!To.isInvalid() && "Implicit field reference cannot fail");
Douglas Gregor06a9f362010-05-01 20:49:11 +00008497
Douglas Gregor06a9f362010-05-01 20:49:11 +00008498 // Build the copy of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008499 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008500 To.get(), From.get(),
8501 /*CopyingBaseSubobject=*/false,
8502 /*Copying=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008503 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00008504 Diag(CurrentLocation, diag::note_member_synthesized_at)
8505 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8506 CopyAssignOperator->setInvalidDecl();
8507 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00008508 }
8509
8510 // Success! Record the copy.
8511 Statements.push_back(Copy.takeAs<Stmt>());
8512 }
8513
8514 if (!Invalid) {
8515 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00008516 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00008517
John McCall60d7b3a2010-08-24 06:29:42 +00008518 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00008519 if (Return.isInvalid())
8520 Invalid = true;
8521 else {
8522 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00008523
8524 if (Trap.hasErrorOccurred()) {
8525 Diag(CurrentLocation, diag::note_member_synthesized_at)
8526 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
8527 Invalid = true;
8528 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008529 }
8530 }
8531
8532 if (Invalid) {
8533 CopyAssignOperator->setInvalidDecl();
8534 return;
8535 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008536
8537 StmtResult Body;
8538 {
8539 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008540 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008541 /*isStmtExpr=*/false);
8542 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
8543 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00008544 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redl58a2cd82011-04-24 16:28:06 +00008545
8546 if (ASTMutationListener *L = getASTMutationListener()) {
8547 L->CompletedImplicitDefinition(CopyAssignOperator);
8548 }
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00008549}
8550
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008551Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00008552Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
8553 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008554
Richard Smithb9d0b762012-07-27 04:22:15 +00008555 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008556 if (ClassDecl->isInvalidDecl())
8557 return ExceptSpec;
8558
8559 // C++0x [except.spec]p14:
8560 // An implicitly declared special member function (Clause 12) shall have an
8561 // exception-specification. [...]
8562
8563 // It is unspecified whether or not an implicit move assignment operator
8564 // attempts to deduplicate calls to assignment operators of virtual bases are
8565 // made. As such, this exception specification is effectively unspecified.
8566 // Based on a similar decision made for constness in C++0x, we're erring on
8567 // the side of assuming such calls to be made regardless of whether they
8568 // actually happen.
8569 // Note that a move constructor is not implicitly declared when there are
8570 // virtual bases, but it can still be user-declared and explicitly defaulted.
8571 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8572 BaseEnd = ClassDecl->bases_end();
8573 Base != BaseEnd; ++Base) {
8574 if (Base->isVirtual())
8575 continue;
8576
8577 CXXRecordDecl *BaseClassDecl
8578 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8579 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008580 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008581 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008582 }
8583
8584 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8585 BaseEnd = ClassDecl->vbases_end();
8586 Base != BaseEnd; ++Base) {
8587 CXXRecordDecl *BaseClassDecl
8588 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8589 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith6a06e5f2012-07-18 03:36:00 +00008590 0, false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008591 ExceptSpec.CalledDecl(Base->getLocStart(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008592 }
8593
8594 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8595 FieldEnd = ClassDecl->field_end();
8596 Field != FieldEnd;
8597 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008598 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008599 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00008600 if (CXXMethodDecl *MoveAssign =
8601 LookupMovingAssignment(FieldClassDecl,
8602 FieldType.getCVRQualifiers(),
8603 false, 0))
Richard Smithe6975e92012-04-17 00:58:00 +00008604 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008605 }
8606 }
8607
8608 return ExceptSpec;
8609}
8610
Richard Smith1c931be2012-04-02 18:40:40 +00008611/// Determine whether the class type has any direct or indirect virtual base
8612/// classes which have a non-trivial move assignment operator.
8613static bool
8614hasVirtualBaseWithNonTrivialMoveAssignment(Sema &S, CXXRecordDecl *ClassDecl) {
8615 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8616 BaseEnd = ClassDecl->vbases_end();
8617 Base != BaseEnd; ++Base) {
8618 CXXRecordDecl *BaseClass =
8619 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
8620
8621 // Try to declare the move assignment. If it would be deleted, then the
8622 // class does not have a non-trivial move assignment.
8623 if (BaseClass->needsImplicitMoveAssignment())
8624 S.DeclareImplicitMoveAssignment(BaseClass);
8625
Richard Smith426391c2012-11-16 00:53:38 +00008626 if (BaseClass->hasNonTrivialMoveAssignment())
Richard Smith1c931be2012-04-02 18:40:40 +00008627 return true;
8628 }
8629
8630 return false;
8631}
8632
8633/// Determine whether the given type either has a move constructor or is
8634/// trivially copyable.
8635static bool
8636hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) {
8637 Type = S.Context.getBaseElementType(Type);
8638
8639 // FIXME: Technically, non-trivially-copyable non-class types, such as
8640 // reference types, are supposed to return false here, but that appears
8641 // to be a standard defect.
8642 CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl();
Argyrios Kyrtzidisb5e4ace2012-10-10 16:14:06 +00008643 if (!ClassDecl || !ClassDecl->getDefinition() || ClassDecl->isInvalidDecl())
Richard Smith1c931be2012-04-02 18:40:40 +00008644 return true;
8645
8646 if (Type.isTriviallyCopyableType(S.Context))
8647 return true;
8648
8649 if (IsConstructor) {
Richard Smithe5411b72012-12-01 02:35:44 +00008650 // FIXME: Need this because otherwise hasMoveConstructor isn't guaranteed to
8651 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008652 if (ClassDecl->needsImplicitMoveConstructor())
8653 S.DeclareImplicitMoveConstructor(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008654 return ClassDecl->hasMoveConstructor();
Richard Smith1c931be2012-04-02 18:40:40 +00008655 }
8656
Richard Smithe5411b72012-12-01 02:35:44 +00008657 // FIXME: Need this because otherwise hasMoveAssignment isn't guaranteed to
8658 // give the right answer.
Richard Smith1c931be2012-04-02 18:40:40 +00008659 if (ClassDecl->needsImplicitMoveAssignment())
8660 S.DeclareImplicitMoveAssignment(ClassDecl);
Richard Smithe5411b72012-12-01 02:35:44 +00008661 return ClassDecl->hasMoveAssignment();
Richard Smith1c931be2012-04-02 18:40:40 +00008662}
8663
8664/// Determine whether all non-static data members and direct or virtual bases
8665/// of class \p ClassDecl have either a move operation, or are trivially
8666/// copyable.
8667static bool subobjectsHaveMoveOrTrivialCopy(Sema &S, CXXRecordDecl *ClassDecl,
8668 bool IsConstructor) {
8669 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8670 BaseEnd = ClassDecl->bases_end();
8671 Base != BaseEnd; ++Base) {
8672 if (Base->isVirtual())
8673 continue;
8674
8675 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8676 return false;
8677 }
8678
8679 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
8680 BaseEnd = ClassDecl->vbases_end();
8681 Base != BaseEnd; ++Base) {
8682 if (!hasMoveOrIsTriviallyCopyable(S, Base->getType(), IsConstructor))
8683 return false;
8684 }
8685
8686 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8687 FieldEnd = ClassDecl->field_end();
8688 Field != FieldEnd; ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00008689 if (!hasMoveOrIsTriviallyCopyable(S, Field->getType(), IsConstructor))
Richard Smith1c931be2012-04-02 18:40:40 +00008690 return false;
8691 }
8692
8693 return true;
8694}
8695
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008696CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00008697 // C++11 [class.copy]p20:
8698 // If the definition of a class X does not explicitly declare a move
8699 // assignment operator, one will be implicitly declared as defaulted
8700 // if and only if:
8701 //
8702 // - [first 4 bullets]
8703 assert(ClassDecl->needsImplicitMoveAssignment());
8704
Richard Smithafb49182012-11-29 01:34:07 +00008705 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
8706 if (DSM.isAlreadyBeingDeclared())
8707 return 0;
8708
Richard Smith1c931be2012-04-02 18:40:40 +00008709 // [Checked after we build the declaration]
8710 // - the move assignment operator would not be implicitly defined as
8711 // deleted,
8712
8713 // [DR1402]:
8714 // - X has no direct or indirect virtual base class with a non-trivial
8715 // move assignment operator, and
8716 // - each of X's non-static data members and direct or virtual base classes
8717 // has a type that either has a move assignment operator or is trivially
8718 // copyable.
8719 if (hasVirtualBaseWithNonTrivialMoveAssignment(*this, ClassDecl) ||
8720 !subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl,/*Constructor*/false)) {
8721 ClassDecl->setFailedImplicitMoveAssignment();
8722 return 0;
8723 }
8724
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008725 // Note: The following rules are largely analoguous to the move
8726 // constructor rules.
8727
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008728 QualType ArgType = Context.getTypeDeclType(ClassDecl);
8729 QualType RetType = Context.getLValueReferenceType(ArgType);
8730 ArgType = Context.getRValueReferenceType(ArgType);
8731
8732 // An implicitly-declared move assignment operator is an inline public
8733 // member of its class.
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008734 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
8735 SourceLocation ClassLoc = ClassDecl->getLocation();
8736 DeclarationNameInfo NameInfo(Name, ClassLoc);
8737 CXXMethodDecl *MoveAssignment
Richard Smithb9d0b762012-07-27 04:22:15 +00008738 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008739 /*TInfo=*/0, /*isStatic=*/false,
8740 /*StorageClassAsWritten=*/SC_None,
8741 /*isInline=*/true,
8742 /*isConstexpr=*/false,
8743 SourceLocation());
8744 MoveAssignment->setAccess(AS_public);
8745 MoveAssignment->setDefaulted();
8746 MoveAssignment->setImplicit();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008747
Richard Smithb9d0b762012-07-27 04:22:15 +00008748 // Build an exception specification pointing back at this member.
8749 FunctionProtoType::ExtProtoInfo EPI;
8750 EPI.ExceptionSpecType = EST_Unevaluated;
8751 EPI.ExceptionSpecDecl = MoveAssignment;
8752 MoveAssignment->setType(Context.getFunctionType(RetType, &ArgType, 1, EPI));
8753
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008754 // Add the parameter to the operator.
8755 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
8756 ClassLoc, ClassLoc, /*Id=*/0,
8757 ArgType, /*TInfo=*/0,
8758 SC_None,
8759 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00008760 MoveAssignment->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008761
Richard Smithbc2a35d2012-12-08 08:32:28 +00008762 AddOverriddenMethods(ClassDecl, MoveAssignment);
8763
8764 MoveAssignment->setTrivial(
8765 ClassDecl->needsOverloadResolutionForMoveAssignment()
8766 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
8767 : ClassDecl->hasTrivialMoveAssignment());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008768
8769 // C++0x [class.copy]p9:
8770 // If the definition of a class X does not explicitly declare a move
8771 // assignment operator, one will be implicitly declared as defaulted if and
8772 // only if:
8773 // [...]
8774 // - the move assignment operator would not be implicitly defined as
8775 // deleted.
Richard Smith7d5088a2012-02-18 02:02:13 +00008776 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008777 // Cache this result so that we don't try to generate this over and over
8778 // on every lookup, leaking memory and wasting time.
8779 ClassDecl->setFailedImplicitMoveAssignment();
8780 return 0;
8781 }
8782
Richard Smithbc2a35d2012-12-08 08:32:28 +00008783 // Note that we have added this copy-assignment operator.
8784 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
8785
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008786 if (Scope *S = getScopeForContext(ClassDecl))
8787 PushOnScopeChains(MoveAssignment, S, false);
8788 ClassDecl->addDecl(MoveAssignment);
8789
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008790 return MoveAssignment;
8791}
8792
8793void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
8794 CXXMethodDecl *MoveAssignOperator) {
8795 assert((MoveAssignOperator->isDefaulted() &&
8796 MoveAssignOperator->isOverloadedOperator() &&
8797 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith03f68782012-02-26 07:51:39 +00008798 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
8799 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008800 "DefineImplicitMoveAssignment called for wrong function");
8801
8802 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
8803
8804 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
8805 MoveAssignOperator->setInvalidDecl();
8806 return;
8807 }
8808
8809 MoveAssignOperator->setUsed();
8810
Eli Friedman9a14db32012-10-18 20:14:08 +00008811 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008812 DiagnosticErrorTrap Trap(Diags);
8813
8814 // C++0x [class.copy]p28:
8815 // The implicitly-defined or move assignment operator for a non-union class
8816 // X performs memberwise move assignment of its subobjects. The direct base
8817 // classes of X are assigned first, in the order of their declaration in the
8818 // base-specifier-list, and then the immediate non-static data members of X
8819 // are assigned, in the order in which they were declared in the class
8820 // definition.
8821
8822 // The statements that form the synthesized function body.
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00008823 SmallVector<Stmt*, 8> Statements;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008824
8825 // The parameter for the "other" object, which we are move from.
8826 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
8827 QualType OtherRefType = Other->getType()->
8828 getAs<RValueReferenceType>()->getPointeeType();
8829 assert(OtherRefType.getQualifiers() == 0 &&
8830 "Bad argument type of defaulted move assignment");
8831
8832 // Our location for everything implicitly-generated.
8833 SourceLocation Loc = MoveAssignOperator->getLocation();
8834
8835 // Construct a reference to the "other" object. We'll be using this
8836 // throughout the generated ASTs.
8837 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
8838 assert(OtherRef && "Reference to parameter cannot fail!");
8839 // Cast to rvalue.
8840 OtherRef = CastForMoving(*this, OtherRef);
8841
8842 // Construct the "this" pointer. We'll be using this throughout the generated
8843 // ASTs.
8844 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
8845 assert(This && "Reference to this cannot fail!");
Richard Smith1c931be2012-04-02 18:40:40 +00008846
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008847 // Assign base classes.
8848 bool Invalid = false;
8849 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
8850 E = ClassDecl->bases_end(); Base != E; ++Base) {
8851 // Form the assignment:
8852 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
8853 QualType BaseType = Base->getType().getUnqualifiedType();
8854 if (!BaseType->isRecordType()) {
8855 Invalid = true;
8856 continue;
8857 }
8858
8859 CXXCastPath BasePath;
8860 BasePath.push_back(Base);
8861
8862 // Construct the "from" expression, which is an implicit cast to the
8863 // appropriately-qualified base type.
8864 Expr *From = OtherRef;
8865 From = ImpCastExprToType(From, BaseType, CK_UncheckedDerivedToBase,
Douglas Gregorb2b56582011-09-06 16:26:56 +00008866 VK_XValue, &BasePath).take();
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008867
8868 // Dereference "this".
8869 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8870
8871 // Implicitly cast "this" to the appropriately-qualified base type.
8872 To = ImpCastExprToType(To.take(),
8873 Context.getCVRQualifiedType(BaseType,
8874 MoveAssignOperator->getTypeQualifiers()),
8875 CK_UncheckedDerivedToBase,
8876 VK_LValue, &BasePath);
8877
8878 // Build the move.
Richard Smith8c889532012-11-14 00:50:40 +00008879 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008880 To.get(), From,
8881 /*CopyingBaseSubobject=*/true,
8882 /*Copying=*/false);
8883 if (Move.isInvalid()) {
8884 Diag(CurrentLocation, diag::note_member_synthesized_at)
8885 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8886 MoveAssignOperator->setInvalidDecl();
8887 return;
8888 }
8889
8890 // Success! Record the move.
8891 Statements.push_back(Move.takeAs<Expr>());
8892 }
8893
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008894 // Assign non-static members.
8895 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
8896 FieldEnd = ClassDecl->field_end();
8897 Field != FieldEnd; ++Field) {
Douglas Gregord61db332011-10-10 17:22:13 +00008898 if (Field->isUnnamedBitfield())
8899 continue;
8900
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008901 // Check for members of reference type; we can't move those.
8902 if (Field->getType()->isReferenceType()) {
8903 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8904 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
8905 Diag(Field->getLocation(), diag::note_declared_at);
8906 Diag(CurrentLocation, diag::note_member_synthesized_at)
8907 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8908 Invalid = true;
8909 continue;
8910 }
8911
8912 // Check for members of const-qualified, non-class type.
8913 QualType BaseType = Context.getBaseElementType(Field->getType());
8914 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
8915 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
8916 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
8917 Diag(Field->getLocation(), diag::note_declared_at);
8918 Diag(CurrentLocation, diag::note_member_synthesized_at)
8919 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8920 Invalid = true;
8921 continue;
8922 }
8923
8924 // Suppress assigning zero-width bitfields.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008925 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
8926 continue;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008927
8928 QualType FieldType = Field->getType().getNonReferenceType();
8929 if (FieldType->isIncompleteArrayType()) {
8930 assert(ClassDecl->hasFlexibleArrayMember() &&
8931 "Incomplete array type is not valid");
8932 continue;
8933 }
8934
8935 // Build references to the field in the object we're copying from and to.
8936 CXXScopeSpec SS; // Intentionally empty
8937 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
8938 LookupMemberName);
David Blaikie581deb32012-06-06 20:45:41 +00008939 MemberLookup.addDecl(*Field);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008940 MemberLookup.resolveKind();
8941 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
8942 Loc, /*IsArrow=*/false,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008943 SS, SourceLocation(), 0,
8944 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008945 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
8946 Loc, /*IsArrow=*/true,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00008947 SS, SourceLocation(), 0,
8948 MemberLookup, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008949 assert(!From.isInvalid() && "Implicit field reference cannot fail");
8950 assert(!To.isInvalid() && "Implicit field reference cannot fail");
8951
8952 assert(!From.get()->isLValue() && // could be xvalue or prvalue
8953 "Member reference with rvalue base must be rvalue except for reference "
8954 "members, which aren't allowed for move assignment.");
8955
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008956 // Build the move of this field.
Richard Smith8c889532012-11-14 00:50:40 +00008957 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008958 To.get(), From.get(),
8959 /*CopyingBaseSubobject=*/false,
8960 /*Copying=*/false);
8961 if (Move.isInvalid()) {
8962 Diag(CurrentLocation, diag::note_member_synthesized_at)
8963 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8964 MoveAssignOperator->setInvalidDecl();
8965 return;
8966 }
Richard Smithe7ce7092012-11-12 23:33:00 +00008967
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00008968 // Success! Record the copy.
8969 Statements.push_back(Move.takeAs<Stmt>());
8970 }
8971
8972 if (!Invalid) {
8973 // Add a "return *this;"
8974 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
8975
8976 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
8977 if (Return.isInvalid())
8978 Invalid = true;
8979 else {
8980 Statements.push_back(Return.takeAs<Stmt>());
8981
8982 if (Trap.hasErrorOccurred()) {
8983 Diag(CurrentLocation, diag::note_member_synthesized_at)
8984 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
8985 Invalid = true;
8986 }
8987 }
8988 }
8989
8990 if (Invalid) {
8991 MoveAssignOperator->setInvalidDecl();
8992 return;
8993 }
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008994
8995 StmtResult Body;
8996 {
8997 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00008998 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko625bb562012-02-14 22:14:32 +00008999 /*isStmtExpr=*/false);
9000 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
9001 }
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009002 MoveAssignOperator->setBody(Body.takeAs<Stmt>());
9003
9004 if (ASTMutationListener *L = getASTMutationListener()) {
9005 L->CompletedImplicitDefinition(MoveAssignOperator);
9006 }
9007}
9008
Richard Smithb9d0b762012-07-27 04:22:15 +00009009Sema::ImplicitExceptionSpecification
9010Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
9011 CXXRecordDecl *ClassDecl = MD->getParent();
9012
9013 ImplicitExceptionSpecification ExceptSpec(*this);
9014 if (ClassDecl->isInvalidDecl())
9015 return ExceptSpec;
9016
9017 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
9018 assert(T->getNumArgs() >= 1 && "not a copy ctor");
9019 unsigned Quals = T->getArgType(0).getNonReferenceType().getCVRQualifiers();
9020
Douglas Gregor0d405db2010-07-01 20:59:04 +00009021 // C++ [except.spec]p14:
9022 // An implicitly declared special member function (Clause 12) shall have an
9023 // exception-specification. [...]
Douglas Gregor0d405db2010-07-01 20:59:04 +00009024 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
9025 BaseEnd = ClassDecl->bases_end();
9026 Base != BaseEnd;
9027 ++Base) {
9028 // Virtual bases are handled below.
9029 if (Base->isVirtual())
9030 continue;
9031
Douglas Gregor22584312010-07-02 23:41:54 +00009032 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009033 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009034 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009035 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009036 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009037 }
9038 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
9039 BaseEnd = ClassDecl->vbases_end();
9040 Base != BaseEnd;
9041 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00009042 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00009043 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Sean Huntc530d172011-06-10 04:44:37 +00009044 if (CXXConstructorDecl *CopyConstructor =
Sean Hunt661c67a2011-06-21 23:42:56 +00009045 LookupCopyingConstructor(BaseClassDecl, Quals))
Richard Smithe6975e92012-04-17 00:58:00 +00009046 ExceptSpec.CalledDecl(Base->getLocStart(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009047 }
9048 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
9049 FieldEnd = ClassDecl->field_end();
9050 Field != FieldEnd;
9051 ++Field) {
David Blaikie262bc182012-04-30 02:36:29 +00009052 QualType FieldType = Context.getBaseElementType(Field->getType());
Sean Huntc530d172011-06-10 04:44:37 +00009053 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
9054 if (CXXConstructorDecl *CopyConstructor =
Richard Smith6a06e5f2012-07-18 03:36:00 +00009055 LookupCopyingConstructor(FieldClassDecl,
9056 Quals | FieldType.getCVRQualifiers()))
Richard Smithe6975e92012-04-17 00:58:00 +00009057 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor0d405db2010-07-01 20:59:04 +00009058 }
9059 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00009060
Richard Smithb9d0b762012-07-27 04:22:15 +00009061 return ExceptSpec;
Sean Hunt49634cf2011-05-13 06:10:58 +00009062}
9063
9064CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
9065 CXXRecordDecl *ClassDecl) {
9066 // C++ [class.copy]p4:
9067 // If the class definition does not explicitly declare a copy
9068 // constructor, one is declared implicitly.
Richard Smithe5411b72012-12-01 02:35:44 +00009069 assert(ClassDecl->needsImplicitCopyConstructor());
Sean Hunt49634cf2011-05-13 06:10:58 +00009070
Richard Smithafb49182012-11-29 01:34:07 +00009071 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
9072 if (DSM.isAlreadyBeingDeclared())
9073 return 0;
9074
Sean Hunt49634cf2011-05-13 06:10:58 +00009075 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9076 QualType ArgType = ClassType;
Richard Smithacf796b2012-11-28 06:23:12 +00009077 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Sean Hunt49634cf2011-05-13 06:10:58 +00009078 if (Const)
9079 ArgType = ArgType.withConst();
9080 ArgType = Context.getLValueReferenceType(ArgType);
Sean Hunt49634cf2011-05-13 06:10:58 +00009081
Richard Smith7756afa2012-06-10 05:43:50 +00009082 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9083 CXXCopyConstructor,
9084 Const);
9085
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009086 DeclarationName Name
9087 = Context.DeclarationNames.getCXXConstructorName(
9088 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009089 SourceLocation ClassLoc = ClassDecl->getLocation();
9090 DeclarationNameInfo NameInfo(Name, ClassLoc);
Sean Hunt49634cf2011-05-13 06:10:58 +00009091
9092 // An implicitly-declared copy constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009093 // member of its class.
9094 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009095 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009096 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009097 Constexpr);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009098 CopyConstructor->setAccess(AS_public);
Sean Hunt49634cf2011-05-13 06:10:58 +00009099 CopyConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +00009100
Richard Smithb9d0b762012-07-27 04:22:15 +00009101 // Build an exception specification pointing back at this member.
9102 FunctionProtoType::ExtProtoInfo EPI;
9103 EPI.ExceptionSpecType = EST_Unevaluated;
9104 EPI.ExceptionSpecDecl = CopyConstructor;
9105 CopyConstructor->setType(
9106 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
9107
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009108 // Add the parameter to the constructor.
9109 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009110 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009111 /*IdentifierInfo=*/0,
9112 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00009113 SC_None,
9114 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009115 CopyConstructor->setParams(FromParam);
Sean Hunt49634cf2011-05-13 06:10:58 +00009116
Richard Smithbc2a35d2012-12-08 08:32:28 +00009117 CopyConstructor->setTrivial(
9118 ClassDecl->needsOverloadResolutionForCopyConstructor()
9119 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
9120 : ClassDecl->hasTrivialCopyConstructor());
Sean Hunt71a682f2011-05-18 03:41:58 +00009121
Nico Weberafcc96a2012-01-23 03:19:29 +00009122 // C++11 [class.copy]p8:
9123 // ... If the class definition does not explicitly declare a copy
9124 // constructor, there is no user-declared move constructor, and there is no
9125 // user-declared move assignment operator, a copy constructor is implicitly
9126 // declared as defaulted.
Richard Smith6c4c36c2012-03-30 20:53:28 +00009127 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Sean Hunt71a682f2011-05-18 03:41:58 +00009128 CopyConstructor->setDeletedAsWritten();
Richard Smith6c4c36c2012-03-30 20:53:28 +00009129
Richard Smithbc2a35d2012-12-08 08:32:28 +00009130 // Note that we have declared this constructor.
9131 ++ASTContext::NumImplicitCopyConstructorsDeclared;
9132
9133 if (Scope *S = getScopeForContext(ClassDecl))
9134 PushOnScopeChains(CopyConstructor, S, false);
9135 ClassDecl->addDecl(CopyConstructor);
9136
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00009137 return CopyConstructor;
9138}
9139
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009140void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Sean Hunt49634cf2011-05-13 06:10:58 +00009141 CXXConstructorDecl *CopyConstructor) {
9142 assert((CopyConstructor->isDefaulted() &&
9143 CopyConstructor->isCopyConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009144 !CopyConstructor->doesThisDeclarationHaveABody() &&
9145 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009146 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00009147
Anders Carlsson63010a72010-04-23 16:24:12 +00009148 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009149 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009150
Eli Friedman9a14db32012-10-18 20:14:08 +00009151 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00009152 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009153
Sean Huntcbb67482011-01-08 20:30:50 +00009154 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00009155 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00009156 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009157 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00009158 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009159 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009160 Sema::CompoundScopeRAII CompoundScope(*this);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009161 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
9162 CopyConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009163 MultiStmtArg(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009164 /*isStmtExpr=*/false)
9165 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009166 CopyConstructor->setImplicitlyDefined(true);
Anders Carlsson8e142cc2010-04-25 00:52:09 +00009167 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00009168
9169 CopyConstructor->setUsed();
Sebastian Redl58a2cd82011-04-24 16:28:06 +00009170 if (ASTMutationListener *L = getASTMutationListener()) {
9171 L->CompletedImplicitDefinition(CopyConstructor);
9172 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009173}
9174
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009175Sema::ImplicitExceptionSpecification
Richard Smithb9d0b762012-07-27 04:22:15 +00009176Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
9177 CXXRecordDecl *ClassDecl = MD->getParent();
9178
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009179 // C++ [except.spec]p14:
9180 // An implicitly declared special member function (Clause 12) shall have an
9181 // exception-specification. [...]
Richard Smithe6975e92012-04-17 00:58:00 +00009182 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009183 if (ClassDecl->isInvalidDecl())
9184 return ExceptSpec;
9185
9186 // Direct base-class constructors.
9187 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
9188 BEnd = ClassDecl->bases_end();
9189 B != BEnd; ++B) {
9190 if (B->isVirtual()) // Handled below.
9191 continue;
9192
9193 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9194 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009195 CXXConstructorDecl *Constructor =
9196 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009197 // If this is a deleted function, add it anyway. This might be conformant
9198 // with the standard. This might not. I'm not sure. It might not matter.
9199 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009200 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009201 }
9202 }
9203
9204 // Virtual base-class constructors.
9205 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
9206 BEnd = ClassDecl->vbases_end();
9207 B != BEnd; ++B) {
9208 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
9209 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6a06e5f2012-07-18 03:36:00 +00009210 CXXConstructorDecl *Constructor =
9211 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009212 // If this is a deleted function, add it anyway. This might be conformant
9213 // with the standard. This might not. I'm not sure. It might not matter.
9214 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009215 ExceptSpec.CalledDecl(B->getLocStart(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009216 }
9217 }
9218
9219 // Field constructors.
9220 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
9221 FEnd = ClassDecl->field_end();
9222 F != FEnd; ++F) {
Richard Smith6a06e5f2012-07-18 03:36:00 +00009223 QualType FieldType = Context.getBaseElementType(F->getType());
9224 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
9225 CXXConstructorDecl *Constructor =
9226 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009227 // If this is a deleted function, add it anyway. This might be conformant
9228 // with the standard. This might not. I'm not sure. It might not matter.
9229 // In particular, the problem is that this function never gets called. It
9230 // might just be ill-formed because this function attempts to refer to
9231 // a deleted function here.
9232 if (Constructor)
Richard Smithe6975e92012-04-17 00:58:00 +00009233 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009234 }
9235 }
9236
9237 return ExceptSpec;
9238}
9239
9240CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
9241 CXXRecordDecl *ClassDecl) {
Richard Smith1c931be2012-04-02 18:40:40 +00009242 // C++11 [class.copy]p9:
9243 // If the definition of a class X does not explicitly declare a move
9244 // constructor, one will be implicitly declared as defaulted if and only if:
9245 //
9246 // - [first 4 bullets]
9247 assert(ClassDecl->needsImplicitMoveConstructor());
9248
Richard Smithafb49182012-11-29 01:34:07 +00009249 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
9250 if (DSM.isAlreadyBeingDeclared())
9251 return 0;
9252
Richard Smith1c931be2012-04-02 18:40:40 +00009253 // [Checked after we build the declaration]
9254 // - the move assignment operator would not be implicitly defined as
9255 // deleted,
9256
9257 // [DR1402]:
9258 // - each of X's non-static data members and direct or virtual base classes
9259 // has a type that either has a move constructor or is trivially copyable.
9260 if (!subobjectsHaveMoveOrTrivialCopy(*this, ClassDecl, /*Constructor*/true)) {
9261 ClassDecl->setFailedImplicitMoveConstructor();
9262 return 0;
9263 }
9264
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009265 QualType ClassType = Context.getTypeDeclType(ClassDecl);
9266 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009267
Richard Smith7756afa2012-06-10 05:43:50 +00009268 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9269 CXXMoveConstructor,
9270 false);
9271
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009272 DeclarationName Name
9273 = Context.DeclarationNames.getCXXConstructorName(
9274 Context.getCanonicalType(ClassType));
9275 SourceLocation ClassLoc = ClassDecl->getLocation();
9276 DeclarationNameInfo NameInfo(Name, ClassLoc);
9277
9278 // C++0x [class.copy]p11:
9279 // An implicitly-declared copy/move constructor is an inline public
Richard Smith61802452011-12-22 02:22:31 +00009280 // member of its class.
9281 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Richard Smithb9d0b762012-07-27 04:22:15 +00009282 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/0,
Richard Smith61802452011-12-22 02:22:31 +00009283 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smith7756afa2012-06-10 05:43:50 +00009284 Constexpr);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009285 MoveConstructor->setAccess(AS_public);
9286 MoveConstructor->setDefaulted();
Richard Smith61802452011-12-22 02:22:31 +00009287
Richard Smithb9d0b762012-07-27 04:22:15 +00009288 // Build an exception specification pointing back at this member.
9289 FunctionProtoType::ExtProtoInfo EPI;
9290 EPI.ExceptionSpecType = EST_Unevaluated;
9291 EPI.ExceptionSpecDecl = MoveConstructor;
9292 MoveConstructor->setType(
9293 Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
9294
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009295 // Add the parameter to the constructor.
9296 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
9297 ClassLoc, ClassLoc,
9298 /*IdentifierInfo=*/0,
9299 ArgType, /*TInfo=*/0,
9300 SC_None,
9301 SC_None, 0);
David Blaikie4278c652011-09-21 18:16:56 +00009302 MoveConstructor->setParams(FromParam);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009303
Richard Smithbc2a35d2012-12-08 08:32:28 +00009304 MoveConstructor->setTrivial(
9305 ClassDecl->needsOverloadResolutionForMoveConstructor()
9306 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
9307 : ClassDecl->hasTrivialMoveConstructor());
9308
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009309 // C++0x [class.copy]p9:
9310 // If the definition of a class X does not explicitly declare a move
9311 // constructor, one will be implicitly declared as defaulted if and only if:
9312 // [...]
9313 // - the move constructor would not be implicitly defined as deleted.
Sean Hunt769bb2d2011-10-11 06:43:29 +00009314 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009315 // Cache this result so that we don't try to generate this over and over
9316 // on every lookup, leaking memory and wasting time.
9317 ClassDecl->setFailedImplicitMoveConstructor();
9318 return 0;
9319 }
9320
9321 // Note that we have declared this constructor.
9322 ++ASTContext::NumImplicitMoveConstructorsDeclared;
9323
9324 if (Scope *S = getScopeForContext(ClassDecl))
9325 PushOnScopeChains(MoveConstructor, S, false);
9326 ClassDecl->addDecl(MoveConstructor);
9327
9328 return MoveConstructor;
9329}
9330
9331void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
9332 CXXConstructorDecl *MoveConstructor) {
9333 assert((MoveConstructor->isDefaulted() &&
9334 MoveConstructor->isMoveConstructor() &&
Richard Smith03f68782012-02-26 07:51:39 +00009335 !MoveConstructor->doesThisDeclarationHaveABody() &&
9336 !MoveConstructor->isDeleted()) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009337 "DefineImplicitMoveConstructor - call it for implicit move ctor");
9338
9339 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
9340 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
9341
Eli Friedman9a14db32012-10-18 20:14:08 +00009342 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009343 DiagnosticErrorTrap Trap(Diags);
9344
9345 if (SetCtorInitializers(MoveConstructor, 0, 0, /*AnyErrors=*/false) ||
9346 Trap.hasErrorOccurred()) {
9347 Diag(CurrentLocation, diag::note_member_synthesized_at)
9348 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
9349 MoveConstructor->setInvalidDecl();
9350 } else {
Dmitri Gribenko625bb562012-02-14 22:14:32 +00009351 Sema::CompoundScopeRAII CompoundScope(*this);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009352 MoveConstructor->setBody(ActOnCompoundStmt(MoveConstructor->getLocation(),
9353 MoveConstructor->getLocation(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00009354 MultiStmtArg(),
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009355 /*isStmtExpr=*/false)
9356 .takeAs<Stmt>());
Douglas Gregor690b2db2011-09-22 20:32:43 +00009357 MoveConstructor->setImplicitlyDefined(true);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009358 }
9359
9360 MoveConstructor->setUsed();
9361
9362 if (ASTMutationListener *L = getASTMutationListener()) {
9363 L->CompletedImplicitDefinition(MoveConstructor);
9364 }
9365}
9366
Douglas Gregore4e68d42012-02-15 19:33:52 +00009367bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
9368 return FD->isDeleted() &&
9369 (FD->isDefaulted() || FD->isImplicit()) &&
9370 isa<CXXMethodDecl>(FD);
9371}
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009372
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009373/// \brief Mark the call operator of the given lambda closure type as "used".
9374static void markLambdaCallOperatorUsed(Sema &S, CXXRecordDecl *Lambda) {
9375 CXXMethodDecl *CallOperator
Douglas Gregorac1303e2012-02-22 05:02:47 +00009376 = cast<CXXMethodDecl>(
David Blaikie3bc93e32012-12-19 00:45:41 +00009377 Lambda->lookup(
9378 S.Context.DeclarationNames.getCXXOperatorName(OO_Call)).front());
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009379 CallOperator->setReferenced();
9380 CallOperator->setUsed();
9381}
9382
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009383void Sema::DefineImplicitLambdaToFunctionPointerConversion(
9384 SourceLocation CurrentLocation,
9385 CXXConversionDecl *Conv)
9386{
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009387 CXXRecordDecl *Lambda = Conv->getParent();
9388
9389 // Make sure that the lambda call operator is marked used.
9390 markLambdaCallOperatorUsed(*this, Lambda);
9391
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009392 Conv->setUsed();
9393
Eli Friedman9a14db32012-10-18 20:14:08 +00009394 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009395 DiagnosticErrorTrap Trap(Diags);
9396
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009397 // Return the address of the __invoke function.
9398 DeclarationName InvokeName = &Context.Idents.get("__invoke");
9399 CXXMethodDecl *Invoke
David Blaikie3bc93e32012-12-19 00:45:41 +00009400 = cast<CXXMethodDecl>(Lambda->lookup(InvokeName).front());
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009401 Expr *FunctionRef = BuildDeclRefExpr(Invoke, Invoke->getType(),
9402 VK_LValue, Conv->getLocation()).take();
9403 assert(FunctionRef && "Can't refer to __invoke function?");
9404 Stmt *Return = ActOnReturnStmt(Conv->getLocation(), FunctionRef).take();
Nico Weberd36aa352012-12-29 20:03:39 +00009405 Conv->setBody(new (Context) CompoundStmt(Context, Return,
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009406 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009407 Conv->getLocation()));
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009408
9409 // Fill in the __invoke function with a dummy implementation. IR generation
9410 // will fill in the actual details.
9411 Invoke->setUsed();
9412 Invoke->setReferenced();
Benjamin Kramer3a2d0fb2012-07-04 17:03:41 +00009413 Invoke->setBody(new (Context) CompoundStmt(Conv->getLocation()));
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009414
9415 if (ASTMutationListener *L = getASTMutationListener()) {
9416 L->CompletedImplicitDefinition(Conv);
Douglas Gregor27dd7d92012-02-17 03:02:34 +00009417 L->CompletedImplicitDefinition(Invoke);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009418 }
9419}
9420
9421void Sema::DefineImplicitLambdaToBlockPointerConversion(
9422 SourceLocation CurrentLocation,
9423 CXXConversionDecl *Conv)
9424{
9425 Conv->setUsed();
9426
Eli Friedman9a14db32012-10-18 20:14:08 +00009427 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009428 DiagnosticErrorTrap Trap(Diags);
9429
Douglas Gregorac1303e2012-02-22 05:02:47 +00009430 // Copy-initialize the lambda object as needed to capture it.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009431 Expr *This = ActOnCXXThis(CurrentLocation).take();
9432 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).take();
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009433
Eli Friedman23f02672012-03-01 04:01:32 +00009434 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
9435 Conv->getLocation(),
9436 Conv, DerefThis);
9437
9438 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
9439 // behavior. Note that only the general conversion function does this
9440 // (since it's unusable otherwise); in the case where we inline the
9441 // block literal, it has block literal lifetime semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009442 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman23f02672012-03-01 04:01:32 +00009443 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
9444 CK_CopyAndAutoreleaseBlockObject,
9445 BuildBlock.get(), 0, VK_RValue);
9446
9447 if (BuildBlock.isInvalid()) {
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009448 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregorac1303e2012-02-22 05:02:47 +00009449 Conv->setInvalidDecl();
9450 return;
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009451 }
Douglas Gregorac1303e2012-02-22 05:02:47 +00009452
Douglas Gregorac1303e2012-02-22 05:02:47 +00009453 // Create the return statement that returns the block from the conversion
9454 // function.
Eli Friedman23f02672012-03-01 04:01:32 +00009455 StmtResult Return = ActOnReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregorac1303e2012-02-22 05:02:47 +00009456 if (Return.isInvalid()) {
9457 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
9458 Conv->setInvalidDecl();
9459 return;
9460 }
9461
9462 // Set the body of the conversion function.
9463 Stmt *ReturnS = Return.take();
Nico Weberd36aa352012-12-29 20:03:39 +00009464 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
Douglas Gregorac1303e2012-02-22 05:02:47 +00009465 Conv->getLocation(),
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009466 Conv->getLocation()));
9467
Douglas Gregorac1303e2012-02-22 05:02:47 +00009468 // We're done; notify the mutation listener, if any.
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009469 if (ASTMutationListener *L = getASTMutationListener()) {
9470 L->CompletedImplicitDefinition(Conv);
9471 }
9472}
9473
Douglas Gregorf52757d2012-03-10 06:53:13 +00009474/// \brief Determine whether the given list arguments contains exactly one
9475/// "real" (non-default) argument.
9476static bool hasOneRealArgument(MultiExprArg Args) {
9477 switch (Args.size()) {
9478 case 0:
9479 return false;
9480
9481 default:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009482 if (!Args[1]->isDefaultArgument())
Douglas Gregorf52757d2012-03-10 06:53:13 +00009483 return false;
9484
9485 // fall through
9486 case 1:
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009487 return !Args[0]->isDefaultArgument();
Douglas Gregorf52757d2012-03-10 06:53:13 +00009488 }
9489
9490 return false;
9491}
9492
John McCall60d7b3a2010-08-24 06:29:42 +00009493ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009494Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00009495 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00009496 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009497 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00009498 bool IsListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009499 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009500 unsigned ConstructKind,
9501 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009502 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00009503
Douglas Gregor2f599792010-04-02 18:24:57 +00009504 // C++0x [class.copy]p34:
9505 // When certain criteria are met, an implementation is allowed to
9506 // omit the copy/move construction of a class object, even if the
9507 // copy/move constructor and/or destructor for the object have
9508 // side effects. [...]
9509 // - when a temporary class object that has not been bound to a
9510 // reference (12.2) would be copied/moved to a class object
9511 // with the same cv-unqualified type, the copy/move operation
9512 // can be omitted by constructing the temporary object
9513 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00009514 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregorf52757d2012-03-10 06:53:13 +00009515 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00009516 Expr *SubExpr = ExprArgs[0];
John McCall558d2ab2010-09-15 10:14:12 +00009517 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009518 }
Mike Stump1eb44332009-09-09 15:08:12 +00009519
9520 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009521 Elidable, ExprArgs, HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00009522 IsListInitialization, RequiresZeroInit,
9523 ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00009524}
9525
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009526/// BuildCXXConstructExpr - Creates a complete call to a constructor,
9527/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00009528ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00009529Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
9530 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00009531 MultiExprArg ExprArgs,
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009532 bool HadMultipleCandidates,
Richard Smithc83c2302012-12-19 01:39:02 +00009533 bool IsListInitialization,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00009534 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009535 unsigned ConstructKind,
9536 SourceRange ParenRange) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009537 MarkFunctionReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00009538 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Benjamin Kramer3b6bef92012-08-24 11:54:20 +00009539 Constructor, Elidable, ExprArgs,
Richard Smithc83c2302012-12-19 01:39:02 +00009540 HadMultipleCandidates,
9541 IsListInitialization, RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00009542 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
9543 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00009544}
9545
John McCall68c6c9a2010-02-02 09:10:11 +00009546void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009547 if (VD->isInvalidDecl()) return;
9548
John McCall68c6c9a2010-02-02 09:10:11 +00009549 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009550 if (ClassDecl->isInvalidDecl()) return;
Richard Smith213d70b2012-02-18 04:13:32 +00009551 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009552 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00009553
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009554 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009555 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009556 CheckDestructorAccess(VD->getLocation(), Destructor,
9557 PDiag(diag::err_access_dtor_var)
9558 << VD->getDeclName()
9559 << VD->getType());
Richard Smith213d70b2012-02-18 04:13:32 +00009560 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00009561
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00009562 if (!VD->hasGlobalStorage()) return;
9563
9564 // Emit warning for non-trivial dtor in global scope (a real global,
9565 // class-static, function-static).
9566 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
9567
9568 // TODO: this should be re-enabled for static locals by !CXAAtExit
9569 if (!VD->isStaticLocal())
9570 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009571}
9572
Douglas Gregor39da0b82009-09-09 23:08:42 +00009573/// \brief Given a constructor and the set of arguments provided for the
9574/// constructor, convert the arguments and add any required default arguments
9575/// to form a proper call to this constructor.
9576///
9577/// \returns true if an error occurred, false otherwise.
9578bool
9579Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
9580 MultiExprArg ArgsPtr,
Richard Smith831421f2012-06-25 20:30:08 +00009581 SourceLocation Loc,
Benjamin Kramer4e28d9e2012-08-23 22:51:59 +00009582 SmallVectorImpl<Expr*> &ConvertedArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009583 bool AllowExplicit) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00009584 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
9585 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramer5354e772012-08-23 23:38:35 +00009586 Expr **Args = ArgsPtr.data();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009587
9588 const FunctionProtoType *Proto
9589 = Constructor->getType()->getAs<FunctionProtoType>();
9590 assert(Proto && "Constructor without a prototype?");
9591 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00009592
9593 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009594 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00009595 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009596 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00009597 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009598
9599 VariadicCallType CallType =
9600 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner5f9e2722011-07-23 10:55:15 +00009601 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009602 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
9603 Proto, 0, Args, NumArgs, AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00009604 CallType, AllowExplicit);
Benjamin Kramer14c59822012-02-14 12:06:21 +00009605 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmane61eb042012-02-18 04:48:30 +00009606
9607 DiagnoseSentinelCalls(Constructor, Loc, AllArgs.data(), AllArgs.size());
9608
Dmitri Gribenko1c030e92013-01-13 20:46:02 +00009609 CheckConstructorCall(Constructor,
9610 llvm::makeArrayRef<const Expr *>(AllArgs.data(),
9611 AllArgs.size()),
Richard Smith831421f2012-06-25 20:30:08 +00009612 Proto, Loc);
Eli Friedmane61eb042012-02-18 04:48:30 +00009613
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00009614 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00009615}
9616
Anders Carlsson20d45d22009-12-12 00:32:00 +00009617static inline bool
9618CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
9619 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00009620 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00009621 if (isa<NamespaceDecl>(DC)) {
9622 return SemaRef.Diag(FnDecl->getLocation(),
9623 diag::err_operator_new_delete_declared_in_namespace)
9624 << FnDecl->getDeclName();
9625 }
9626
9627 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00009628 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009629 return SemaRef.Diag(FnDecl->getLocation(),
9630 diag::err_operator_new_delete_declared_static)
9631 << FnDecl->getDeclName();
9632 }
9633
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00009634 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00009635}
9636
Anders Carlsson156c78e2009-12-13 17:53:43 +00009637static inline bool
9638CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
9639 CanQualType ExpectedResultType,
9640 CanQualType ExpectedFirstParamType,
9641 unsigned DependentParamTypeDiag,
9642 unsigned InvalidParamTypeDiag) {
9643 QualType ResultType =
9644 FnDecl->getType()->getAs<FunctionType>()->getResultType();
9645
9646 // Check that the result type is not dependent.
9647 if (ResultType->isDependentType())
9648 return SemaRef.Diag(FnDecl->getLocation(),
9649 diag::err_operator_new_delete_dependent_result_type)
9650 << FnDecl->getDeclName() << ExpectedResultType;
9651
9652 // Check that the result type is what we expect.
9653 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
9654 return SemaRef.Diag(FnDecl->getLocation(),
9655 diag::err_operator_new_delete_invalid_result_type)
9656 << FnDecl->getDeclName() << ExpectedResultType;
9657
9658 // A function template must have at least 2 parameters.
9659 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
9660 return SemaRef.Diag(FnDecl->getLocation(),
9661 diag::err_operator_new_delete_template_too_few_parameters)
9662 << FnDecl->getDeclName();
9663
9664 // The function decl must have at least 1 parameter.
9665 if (FnDecl->getNumParams() == 0)
9666 return SemaRef.Diag(FnDecl->getLocation(),
9667 diag::err_operator_new_delete_too_few_parameters)
9668 << FnDecl->getDeclName();
9669
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +00009670 // Check the first parameter type is not dependent.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009671 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
9672 if (FirstParamType->isDependentType())
9673 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
9674 << FnDecl->getDeclName() << ExpectedFirstParamType;
9675
9676 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00009677 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00009678 ExpectedFirstParamType)
9679 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
9680 << FnDecl->getDeclName() << ExpectedFirstParamType;
9681
9682 return false;
9683}
9684
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009685static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00009686CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00009687 // C++ [basic.stc.dynamic.allocation]p1:
9688 // A program is ill-formed if an allocation function is declared in a
9689 // namespace scope other than global scope or declared static in global
9690 // scope.
9691 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9692 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00009693
9694 CanQualType SizeTy =
9695 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
9696
9697 // C++ [basic.stc.dynamic.allocation]p1:
9698 // The return type shall be void*. The first parameter shall have type
9699 // std::size_t.
9700 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
9701 SizeTy,
9702 diag::err_operator_new_dependent_param_type,
9703 diag::err_operator_new_param_type))
9704 return true;
9705
9706 // C++ [basic.stc.dynamic.allocation]p1:
9707 // The first parameter shall not have an associated default argument.
9708 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00009709 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00009710 diag::err_operator_new_default_arg)
9711 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
9712
9713 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00009714}
9715
9716static bool
Richard Smith444d3842012-10-20 08:26:51 +00009717CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009718 // C++ [basic.stc.dynamic.deallocation]p1:
9719 // A program is ill-formed if deallocation functions are declared in a
9720 // namespace scope other than global scope or declared static in global
9721 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00009722 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
9723 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009724
9725 // C++ [basic.stc.dynamic.deallocation]p2:
9726 // Each deallocation function shall return void and its first parameter
9727 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00009728 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
9729 SemaRef.Context.VoidPtrTy,
9730 diag::err_operator_delete_dependent_param_type,
9731 diag::err_operator_delete_param_type))
9732 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009733
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009734 return false;
9735}
9736
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009737/// CheckOverloadedOperatorDeclaration - Check whether the declaration
9738/// of this overloaded operator is well-formed. If so, returns false;
9739/// otherwise, emits appropriate diagnostics and returns true.
9740bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009741 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009742 "Expected an overloaded operator declaration");
9743
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009744 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
9745
Mike Stump1eb44332009-09-09 15:08:12 +00009746 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009747 // The allocation and deallocation functions, operator new,
9748 // operator new[], operator delete and operator delete[], are
9749 // described completely in 3.7.3. The attributes and restrictions
9750 // found in the rest of this subclause do not apply to them unless
9751 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00009752 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00009753 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00009754
Anders Carlssona3ccda52009-12-12 00:26:23 +00009755 if (Op == OO_New || Op == OO_Array_New)
9756 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009757
9758 // C++ [over.oper]p6:
9759 // An operator function shall either be a non-static member
9760 // function or be a non-member function and have at least one
9761 // parameter whose type is a class, a reference to a class, an
9762 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009763 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
9764 if (MethodDecl->isStatic())
9765 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009766 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009767 } else {
9768 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009769 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9770 ParamEnd = FnDecl->param_end();
9771 Param != ParamEnd; ++Param) {
9772 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00009773 if (ParamType->isDependentType() || ParamType->isRecordType() ||
9774 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009775 ClassOrEnumParam = true;
9776 break;
9777 }
9778 }
9779
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009780 if (!ClassOrEnumParam)
9781 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009782 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009783 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009784 }
9785
9786 // C++ [over.oper]p8:
9787 // An operator function cannot have default arguments (8.3.6),
9788 // except where explicitly stated below.
9789 //
Mike Stump1eb44332009-09-09 15:08:12 +00009790 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009791 // (C++ [over.call]p1).
9792 if (Op != OO_Call) {
9793 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
9794 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00009795 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00009796 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00009797 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00009798 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009799 }
9800 }
9801
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009802 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
9803 { false, false, false }
9804#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
9805 , { Unary, Binary, MemberOnly }
9806#include "clang/Basic/OperatorKinds.def"
9807 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009808
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009809 bool CanBeUnaryOperator = OperatorUses[Op][0];
9810 bool CanBeBinaryOperator = OperatorUses[Op][1];
9811 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009812
9813 // C++ [over.oper]p8:
9814 // [...] Operator functions cannot have more or fewer parameters
9815 // than the number required for the corresponding operator, as
9816 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00009817 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009818 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009819 if (Op != OO_Call &&
9820 ((NumParams == 1 && !CanBeUnaryOperator) ||
9821 (NumParams == 2 && !CanBeBinaryOperator) ||
9822 (NumParams < 1) || (NumParams > 2))) {
9823 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00009824 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009825 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009826 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009827 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00009828 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009829 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009830 assert(CanBeBinaryOperator &&
9831 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00009832 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00009833 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009834
Chris Lattner416e46f2008-11-21 07:57:12 +00009835 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009836 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009837 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00009838
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009839 // Overloaded operators other than operator() cannot be variadic.
9840 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00009841 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009842 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009843 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009844 }
9845
9846 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009847 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
9848 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00009849 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00009850 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009851 }
9852
9853 // C++ [over.inc]p1:
9854 // The user-defined function called operator++ implements the
9855 // prefix and postfix ++ operator. If this function is a member
9856 // function with no parameters, or a non-member function with one
9857 // parameter of class or enumeration type, it defines the prefix
9858 // increment operator ++ for objects of that type. If the function
9859 // is a member function with one parameter (which shall be of type
9860 // int) or a non-member function with two parameters (the second
9861 // of which shall be of type int), it defines the postfix
9862 // increment operator ++ for objects of that type.
9863 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
9864 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
9865 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00009866 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009867 ParamIsInt = BT->getKind() == BuiltinType::Int;
9868
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00009869 if (!ParamIsInt)
9870 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00009871 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00009872 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009873 }
9874
Douglas Gregor43c7bad2008-11-17 16:14:12 +00009875 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00009876}
Chris Lattner5a003a42008-12-17 07:09:26 +00009877
Sean Hunta6c058d2010-01-13 09:01:02 +00009878/// CheckLiteralOperatorDeclaration - Check whether the declaration
9879/// of this literal operator function is well-formed. If so, returns
9880/// false; otherwise, emits appropriate diagnostics and returns true.
9881bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smithe5658f02012-03-10 22:18:57 +00009882 if (isa<CXXMethodDecl>(FnDecl)) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009883 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
9884 << FnDecl->getDeclName();
9885 return true;
9886 }
9887
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009888 if (FnDecl->isExternC()) {
9889 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
9890 return true;
9891 }
9892
Sean Hunta6c058d2010-01-13 09:01:02 +00009893 bool Valid = false;
9894
Richard Smith36f5cfe2012-03-09 08:00:36 +00009895 // This might be the definition of a literal operator template.
9896 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
9897 // This might be a specialization of a literal operator template.
9898 if (!TpDecl)
9899 TpDecl = FnDecl->getPrimaryTemplate();
9900
Sean Hunt216c2782010-04-07 23:11:06 +00009901 // template <char...> type operator "" name() is the only valid template
9902 // signature, and the only valid signature with no parameters.
Richard Smith36f5cfe2012-03-09 08:00:36 +00009903 if (TpDecl) {
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009904 if (FnDecl->param_size() == 0) {
Sean Hunt216c2782010-04-07 23:11:06 +00009905 // Must have only one template parameter
9906 TemplateParameterList *Params = TpDecl->getTemplateParameters();
9907 if (Params->size() == 1) {
9908 NonTypeTemplateParmDecl *PmDecl =
Richard Smith5295b972012-08-03 21:14:57 +00009909 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00009910
Sean Hunt216c2782010-04-07 23:11:06 +00009911 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00009912 if (PmDecl && PmDecl->isTemplateParameterPack() &&
9913 Context.hasSameType(PmDecl->getType(), Context.CharTy))
9914 Valid = true;
9915 }
9916 }
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009917 } else if (FnDecl->param_size()) {
Sean Hunta6c058d2010-01-13 09:01:02 +00009918 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00009919 FunctionDecl::param_iterator Param = FnDecl->param_begin();
9920
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009921 QualType T = (*Param)->getType().getUnqualifiedType();
Sean Hunta6c058d2010-01-13 09:01:02 +00009922
Sean Hunt30019c02010-04-07 22:57:35 +00009923 // unsigned long long int, long double, and any character type are allowed
9924 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00009925 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
9926 Context.hasSameType(T, Context.LongDoubleTy) ||
9927 Context.hasSameType(T, Context.CharTy) ||
9928 Context.hasSameType(T, Context.WCharTy) ||
9929 Context.hasSameType(T, Context.Char16Ty) ||
9930 Context.hasSameType(T, Context.Char32Ty)) {
9931 if (++Param == FnDecl->param_end())
9932 Valid = true;
9933 goto FinishedParams;
9934 }
9935
Sean Hunt30019c02010-04-07 22:57:35 +00009936 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00009937 const PointerType *PT = T->getAs<PointerType>();
9938 if (!PT)
9939 goto FinishedParams;
9940 T = PT->getPointeeType();
Richard Smithb4a7b1e2012-03-04 09:41:16 +00009941 if (!T.isConstQualified() || T.isVolatileQualified())
Sean Hunta6c058d2010-01-13 09:01:02 +00009942 goto FinishedParams;
9943 T = T.getUnqualifiedType();
9944
9945 // Move on to the second parameter;
9946 ++Param;
9947
9948 // If there is no second parameter, the first must be a const char *
9949 if (Param == FnDecl->param_end()) {
9950 if (Context.hasSameType(T, Context.CharTy))
9951 Valid = true;
9952 goto FinishedParams;
9953 }
9954
9955 // const char *, const wchar_t*, const char16_t*, and const char32_t*
9956 // are allowed as the first parameter to a two-parameter function
9957 if (!(Context.hasSameType(T, Context.CharTy) ||
9958 Context.hasSameType(T, Context.WCharTy) ||
9959 Context.hasSameType(T, Context.Char16Ty) ||
9960 Context.hasSameType(T, Context.Char32Ty)))
9961 goto FinishedParams;
9962
9963 // The second and final parameter must be an std::size_t
9964 T = (*Param)->getType().getUnqualifiedType();
9965 if (Context.hasSameType(T, Context.getSizeType()) &&
9966 ++Param == FnDecl->param_end())
9967 Valid = true;
9968 }
9969
9970 // FIXME: This diagnostic is absolutely terrible.
9971FinishedParams:
9972 if (!Valid) {
9973 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
9974 << FnDecl->getDeclName();
9975 return true;
9976 }
9977
Richard Smitha9e88b22012-03-09 08:16:22 +00009978 // A parameter-declaration-clause containing a default argument is not
9979 // equivalent to any of the permitted forms.
9980 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
9981 ParamEnd = FnDecl->param_end();
9982 Param != ParamEnd; ++Param) {
9983 if ((*Param)->hasDefaultArg()) {
9984 Diag((*Param)->getDefaultArgRange().getBegin(),
9985 diag::err_literal_operator_default_argument)
9986 << (*Param)->getDefaultArgRange();
9987 break;
9988 }
9989 }
9990
Richard Smith2fb4ae32012-03-08 02:39:21 +00009991 StringRef LiteralName
Douglas Gregor1155c422011-08-30 22:40:35 +00009992 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
9993 if (LiteralName[0] != '_') {
Richard Smith2fb4ae32012-03-08 02:39:21 +00009994 // C++11 [usrlit.suffix]p1:
9995 // Literal suffix identifiers that do not start with an underscore
9996 // are reserved for future standardization.
9997 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved);
Douglas Gregor1155c422011-08-30 22:40:35 +00009998 }
Richard Smith2fb4ae32012-03-08 02:39:21 +00009999
Sean Hunta6c058d2010-01-13 09:01:02 +000010000 return false;
10001}
10002
Douglas Gregor074149e2009-01-05 19:45:36 +000010003/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
10004/// linkage specification, including the language and (if present)
10005/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
10006/// the location of the language string literal, which is provided
10007/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
10008/// the '{' brace. Otherwise, this linkage specification does not
10009/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +000010010Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
10011 SourceLocation LangLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +000010012 StringRef Lang,
Chris Lattner7d642712010-11-09 20:15:55 +000010013 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +000010014 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +000010015 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +000010016 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +000010017 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +000010018 Language = LinkageSpecDecl::lang_cxx;
10019 else {
Douglas Gregor074149e2009-01-05 19:45:36 +000010020 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +000010021 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010022 }
Mike Stump1eb44332009-09-09 15:08:12 +000010023
Chris Lattnercc98eac2008-12-17 07:13:27 +000010024 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +000010025
Douglas Gregor074149e2009-01-05 19:45:36 +000010026 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010027 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010028 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +000010029 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +000010030 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +000010031}
10032
Abramo Bagnara35f9a192010-07-30 16:47:02 +000010033/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +000010034/// the C++ linkage specification LinkageSpec. If RBraceLoc is
10035/// valid, it's the position of the closing '}' brace in a linkage
10036/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +000010037Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010038 Decl *LinkageSpec,
10039 SourceLocation RBraceLoc) {
10040 if (LinkageSpec) {
10041 if (RBraceLoc.isValid()) {
10042 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
10043 LSDecl->setRBraceLoc(RBraceLoc);
10044 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010045 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +000010046 }
Douglas Gregor074149e2009-01-05 19:45:36 +000010047 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +000010048}
10049
Douglas Gregord308e622009-05-18 20:51:54 +000010050/// \brief Perform semantic analysis for the variable declaration that
10051/// occurs within a C++ catch clause, returning the newly-created
10052/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010053VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +000010054 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010055 SourceLocation StartLoc,
10056 SourceLocation Loc,
10057 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +000010058 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +000010059 QualType ExDeclType = TInfo->getType();
10060
Sebastian Redl4b07b292008-12-22 19:15:10 +000010061 // Arrays and functions decay.
10062 if (ExDeclType->isArrayType())
10063 ExDeclType = Context.getArrayDecayedType(ExDeclType);
10064 else if (ExDeclType->isFunctionType())
10065 ExDeclType = Context.getPointerType(ExDeclType);
10066
10067 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
10068 // The exception-declaration shall not denote a pointer or reference to an
10069 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010070 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +000010071 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +000010072 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010073 Invalid = true;
10074 }
Douglas Gregord308e622009-05-18 20:51:54 +000010075
Sebastian Redl4b07b292008-12-22 19:15:10 +000010076 QualType BaseType = ExDeclType;
10077 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +000010078 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +000010079 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010080 BaseType = Ptr->getPointeeType();
10081 Mode = 1;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010082 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +000010083 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010084 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010085 BaseType = Ref->getPointeeType();
10086 Mode = 2;
Douglas Gregorecd7b042012-01-24 19:01:26 +000010087 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010088 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +000010089 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregorecd7b042012-01-24 19:01:26 +000010090 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +000010091 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010092
Mike Stump1eb44332009-09-09 15:08:12 +000010093 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +000010094 RequireNonAbstractType(Loc, ExDeclType,
10095 diag::err_abstract_type_in_decl,
10096 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +000010097 Invalid = true;
10098
John McCall5a180392010-07-24 00:37:23 +000010099 // Only the non-fragile NeXT runtime currently supports C++ catches
10100 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikie4e4d0842012-03-11 07:00:24 +000010101 if (!Invalid && getLangOpts().ObjC1) {
John McCall5a180392010-07-24 00:37:23 +000010102 QualType T = ExDeclType;
10103 if (const ReferenceType *RT = T->getAs<ReferenceType>())
10104 T = RT->getPointeeType();
10105
10106 if (T->isObjCObjectType()) {
10107 Diag(Loc, diag::err_objc_object_catch);
10108 Invalid = true;
10109 } else if (T->isObjCObjectPointerType()) {
John McCall260611a2012-06-20 06:18:46 +000010110 // FIXME: should this be a test for macosx-fragile specifically?
10111 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +000010112 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall5a180392010-07-24 00:37:23 +000010113 }
10114 }
10115
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010116 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
10117 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +000010118 ExDecl->setExceptionVariable(true);
10119
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010120 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000010121 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor9aab9c42011-12-10 01:22:52 +000010122 Invalid = true;
10123
Douglas Gregorc41b8782011-07-06 18:14:43 +000010124 if (!Invalid && !ExDeclType->isDependentType()) {
John McCalle996ffd2011-02-16 08:02:54 +000010125 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +000010126 // C++ [except.handle]p16:
10127 // The object declared in an exception-declaration or, if the
10128 // exception-declaration does not specify a name, a temporary (12.2) is
10129 // copy-initialized (8.5) from the exception object. [...]
10130 // The object is destroyed when the handler exits, after the destruction
10131 // of any automatic objects initialized within the handler.
10132 //
10133 // We just pretend to initialize the object with itself, then make sure
10134 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +000010135 QualType initType = ExDeclType;
10136
10137 InitializedEntity entity =
10138 InitializedEntity::InitializeVariable(ExDecl);
10139 InitializationKind initKind =
10140 InitializationKind::CreateCopy(Loc, SourceLocation());
10141
10142 Expr *opaqueValue =
10143 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
10144 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
10145 ExprResult result = sequence.Perform(*this, entity, initKind,
10146 MultiExprArg(&opaqueValue, 1));
10147 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +000010148 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +000010149 else {
10150 // If the constructor used was non-trivial, set this as the
10151 // "initializer".
10152 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
10153 if (!construct->getConstructor()->isTrivial()) {
10154 Expr *init = MaybeCreateExprWithCleanups(construct);
10155 ExDecl->setInit(init);
10156 }
10157
10158 // And make sure it's destructable.
10159 FinalizeVarWithDestructor(ExDecl, recordType);
10160 }
Douglas Gregor6d182892010-03-05 23:38:39 +000010161 }
10162 }
10163
Douglas Gregord308e622009-05-18 20:51:54 +000010164 if (Invalid)
10165 ExDecl->setInvalidDecl();
10166
10167 return ExDecl;
10168}
10169
10170/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
10171/// handler.
John McCalld226f652010-08-21 09:40:31 +000010172Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +000010173 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +000010174 bool Invalid = D.isInvalidType();
10175
10176 // Check for unexpanded parameter packs.
10177 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
10178 UPPC_ExceptionType)) {
10179 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
10180 D.getIdentifierLoc());
10181 Invalid = true;
10182 }
10183
Sebastian Redl4b07b292008-12-22 19:15:10 +000010184 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +000010185 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +000010186 LookupOrdinaryName,
10187 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010188 // The scope should be freshly made just for us. There is just no way
10189 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +000010190 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +000010191 if (PrevDecl->isTemplateParameter()) {
10192 // Maybe we will complain about the shadowed template parameter.
10193 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregorcb8f9512011-10-20 17:58:49 +000010194 PrevDecl = 0;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010195 }
10196 }
10197
Chris Lattnereaaebc72009-04-25 08:06:05 +000010198 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +000010199 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
10200 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +000010201 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010202 }
10203
Douglas Gregor83cb9422010-09-09 17:09:21 +000010204 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar96a00142012-03-09 18:35:03 +000010205 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000010206 D.getIdentifierLoc(),
10207 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +000010208 if (Invalid)
10209 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000010210
Sebastian Redl4b07b292008-12-22 19:15:10 +000010211 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +000010212 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +000010213 PushOnScopeChains(ExDecl, S);
10214 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010215 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +000010216
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000010217 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +000010218 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +000010219}
Anders Carlssonfb311762009-03-14 00:25:26 +000010220
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010221Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +000010222 Expr *AssertExpr,
Richard Smithe3f470a2012-07-11 22:37:56 +000010223 Expr *AssertMessageExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010224 SourceLocation RParenLoc) {
Richard Smithe3f470a2012-07-11 22:37:56 +000010225 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr);
Anders Carlssonfb311762009-03-14 00:25:26 +000010226
Richard Smithe3f470a2012-07-11 22:37:56 +000010227 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
10228 return 0;
10229
10230 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
10231 AssertMessage, RParenLoc, false);
10232}
10233
10234Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
10235 Expr *AssertExpr,
10236 StringLiteral *AssertMessage,
10237 SourceLocation RParenLoc,
10238 bool Failed) {
10239 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
10240 !Failed) {
Richard Smith282e7e62012-02-04 09:53:13 +000010241 // In a static_assert-declaration, the constant-expression shall be a
10242 // constant expression that can be contextually converted to bool.
10243 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
10244 if (Converted.isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010245 Failed = true;
Richard Smith282e7e62012-02-04 09:53:13 +000010246
Richard Smithdaaefc52011-12-14 23:32:26 +000010247 llvm::APSInt Cond;
Richard Smithe3f470a2012-07-11 22:37:56 +000010248 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregorab41fe92012-05-04 22:38:52 +000010249 diag::err_static_assert_expression_is_not_constant,
Richard Smith282e7e62012-02-04 09:53:13 +000010250 /*AllowFold=*/false).isInvalid())
Richard Smithe3f470a2012-07-11 22:37:56 +000010251 Failed = true;
Anders Carlssonfb311762009-03-14 00:25:26 +000010252
Richard Smithe3f470a2012-07-11 22:37:56 +000010253 if (!Failed && !Cond) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000010254 SmallString<256> MsgBuffer;
Richard Smith0cc323c2012-03-05 23:20:05 +000010255 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smithd1420c62012-08-16 03:56:14 +000010256 AssertMessage->printPretty(Msg, 0, getPrintingPolicy());
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010257 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith0cc323c2012-03-05 23:20:05 +000010258 << Msg.str() << AssertExpr->getSourceRange();
Richard Smithe3f470a2012-07-11 22:37:56 +000010259 Failed = true;
Richard Smith0cc323c2012-03-05 23:20:05 +000010260 }
Anders Carlssonc3082412009-03-14 00:33:21 +000010261 }
Mike Stump1eb44332009-09-09 15:08:12 +000010262
Abramo Bagnaraa2026c92011-03-08 16:41:52 +000010263 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithe3f470a2012-07-11 22:37:56 +000010264 AssertExpr, AssertMessage, RParenLoc,
10265 Failed);
Mike Stump1eb44332009-09-09 15:08:12 +000010266
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000010267 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +000010268 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +000010269}
Sebastian Redl50de12f2009-03-24 22:27:57 +000010270
Douglas Gregor1d869352010-04-07 16:53:43 +000010271/// \brief Perform semantic analysis of the given friend type declaration.
10272///
10273/// \returns A friend declaration that.
Richard Smithd6f80da2012-09-20 01:31:00 +000010274FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara0216df82011-10-29 20:52:52 +000010275 SourceLocation FriendLoc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010276 TypeSourceInfo *TSInfo) {
10277 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
10278
10279 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +000010280 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +000010281
Richard Smith6b130222011-10-18 21:39:00 +000010282 // C++03 [class.friend]p2:
10283 // An elaborated-type-specifier shall be used in a friend declaration
10284 // for a class.*
10285 //
10286 // * The class-key of the elaborated-type-specifier is required.
10287 if (!ActiveTemplateInstantiations.empty()) {
10288 // Do not complain about the form of friend template types during
10289 // template instantiation; we will already have complained when the
10290 // template was declared.
10291 } else if (!T->isElaboratedTypeSpecifier()) {
10292 // If we evaluated the type to a record type, suggest putting
10293 // a tag in front.
10294 if (const RecordType *RT = T->getAs<RecordType>()) {
10295 RecordDecl *RD = RT->getDecl();
10296
10297 std::string InsertionText = std::string(" ") + RD->getKindName();
10298
10299 Diag(TypeRange.getBegin(),
Richard Smith80ad52f2013-01-02 11:42:31 +000010300 getLangOpts().CPlusPlus11 ?
Richard Smith6b130222011-10-18 21:39:00 +000010301 diag::warn_cxx98_compat_unelaborated_friend_type :
10302 diag::ext_unelaborated_friend_type)
10303 << (unsigned) RD->getTagKind()
10304 << T
10305 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
10306 InsertionText);
10307 } else {
10308 Diag(FriendLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +000010309 getLangOpts().CPlusPlus11 ?
Richard Smith6b130222011-10-18 21:39:00 +000010310 diag::warn_cxx98_compat_nonclass_type_friend :
10311 diag::ext_nonclass_type_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +000010312 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000010313 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000010314 }
Richard Smith6b130222011-10-18 21:39:00 +000010315 } else if (T->getAs<EnumType>()) {
10316 Diag(FriendLoc,
Richard Smith80ad52f2013-01-02 11:42:31 +000010317 getLangOpts().CPlusPlus11 ?
Richard Smith6b130222011-10-18 21:39:00 +000010318 diag::warn_cxx98_compat_enum_friend :
10319 diag::ext_enum_friend)
10320 << T
Richard Smithd6f80da2012-09-20 01:31:00 +000010321 << TypeRange;
Douglas Gregor1d869352010-04-07 16:53:43 +000010322 }
10323
Richard Smithd6f80da2012-09-20 01:31:00 +000010324 // C++11 [class.friend]p3:
10325 // A friend declaration that does not declare a function shall have one
10326 // of the following forms:
10327 // friend elaborated-type-specifier ;
10328 // friend simple-type-specifier ;
10329 // friend typename-specifier ;
Richard Smith80ad52f2013-01-02 11:42:31 +000010330 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
Richard Smithd6f80da2012-09-20 01:31:00 +000010331 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
10332
Douglas Gregor06245bf2010-04-07 17:57:12 +000010333 // If the type specifier in a friend declaration designates a (possibly
Richard Smithd6f80da2012-09-20 01:31:00 +000010334 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor06245bf2010-04-07 17:57:12 +000010335 // the friend declaration is ignored.
Richard Smithd6f80da2012-09-20 01:31:00 +000010336 return FriendDecl::Create(Context, CurContext, LocStart, TSInfo, FriendLoc);
Douglas Gregor1d869352010-04-07 16:53:43 +000010337}
10338
John McCall9a34edb2010-10-19 01:40:49 +000010339/// Handle a friend tag declaration where the scope specifier was
10340/// templated.
10341Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
10342 unsigned TagSpec, SourceLocation TagLoc,
10343 CXXScopeSpec &SS,
10344 IdentifierInfo *Name, SourceLocation NameLoc,
10345 AttributeList *Attr,
10346 MultiTemplateParamsArg TempParamLists) {
10347 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
10348
10349 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +000010350 bool Invalid = false;
10351
10352 if (TemplateParameterList *TemplateParams
Douglas Gregorc8406492011-05-10 18:27:06 +000010353 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010354 TempParamLists.data(),
John McCall9a34edb2010-10-19 01:40:49 +000010355 TempParamLists.size(),
10356 /*friend*/ true,
10357 isExplicitSpecialization,
10358 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +000010359 if (TemplateParams->size() > 0) {
10360 // This is a declaration of a class template.
10361 if (Invalid)
10362 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000010363
Eric Christopher4110e132011-07-21 05:34:24 +000010364 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
10365 SS, Name, NameLoc, Attr,
10366 TemplateParams, AS_public,
Douglas Gregore7612302011-09-09 19:05:14 +000010367 /*ModulePrivateLoc=*/SourceLocation(),
Eric Christopher4110e132011-07-21 05:34:24 +000010368 TempParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010369 TempParamLists.data()).take();
John McCall9a34edb2010-10-19 01:40:49 +000010370 } else {
10371 // The "template<>" header is extraneous.
10372 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
10373 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
10374 isExplicitSpecialization = true;
10375 }
10376 }
10377
10378 if (Invalid) return 0;
10379
John McCall9a34edb2010-10-19 01:40:49 +000010380 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010381 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010382 if (TempParamLists[I]->size()) {
John McCall9a34edb2010-10-19 01:40:49 +000010383 isAllExplicitSpecializations = false;
10384 break;
10385 }
10386 }
10387
10388 // FIXME: don't ignore attributes.
10389
10390 // If it's explicit specializations all the way down, just forget
10391 // about the template header and build an appropriate non-templated
10392 // friend. TODO: for source fidelity, remember the headers.
10393 if (isAllExplicitSpecializations) {
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010394 if (SS.isEmpty()) {
10395 bool Owned = false;
10396 bool IsDependent = false;
10397 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
10398 Attr, AS_public,
10399 /*ModulePrivateLoc=*/SourceLocation(),
10400 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010401 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010402 /*ScopedEnumUsesClassTag=*/false,
10403 /*UnderlyingType=*/TypeResult());
10404 }
10405
Douglas Gregor2494dd02011-03-01 01:34:45 +000010406 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +000010407 ElaboratedTypeKeyword Keyword
10408 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010409 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +000010410 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010411 if (T.isNull())
10412 return 0;
10413
10414 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10415 if (isa<DependentNameType>(T)) {
10416 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010417 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010418 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010419 TL.setNameLoc(NameLoc);
10420 } else {
10421 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010422 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +000010423 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +000010424 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
10425 }
10426
10427 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10428 TSI, FriendLoc);
10429 Friend->setAccess(AS_public);
10430 CurContext->addDecl(Friend);
10431 return Friend;
10432 }
Douglas Gregorba4ee9a2011-10-20 15:58:54 +000010433
10434 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
10435
10436
John McCall9a34edb2010-10-19 01:40:49 +000010437
10438 // Handle the case of a templated-scope friend class. e.g.
10439 // template <class T> class A<T>::B;
10440 // FIXME: we don't support these right now.
10441 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
10442 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
10443 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
10444 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
Abramo Bagnara38a42912012-02-06 19:09:27 +000010445 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +000010446 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +000010447 TL.setNameLoc(NameLoc);
10448
10449 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
10450 TSI, FriendLoc);
10451 Friend->setAccess(AS_public);
10452 Friend->setUnsupportedFriend(true);
10453 CurContext->addDecl(Friend);
10454 return Friend;
10455}
10456
10457
John McCalldd4a3b02009-09-16 22:47:08 +000010458/// Handle a friend type declaration. This works in tandem with
10459/// ActOnTag.
10460///
10461/// Notes on friend class templates:
10462///
10463/// We generally treat friend class declarations as if they were
10464/// declaring a class. So, for example, the elaborated type specifier
10465/// in a friend declaration is required to obey the restrictions of a
10466/// class-head (i.e. no typedefs in the scope chain), template
10467/// parameters are required to match up with simple template-ids, &c.
10468/// However, unlike when declaring a template specialization, it's
10469/// okay to refer to a template specialization without an empty
10470/// template parameter declaration, e.g.
10471/// friend class A<T>::B<unsigned>;
10472/// We permit this as a special case; if there are any template
10473/// parameters present at all, require proper matching, i.e.
James Dennettef2b5b32012-06-15 22:23:43 +000010474/// template <> template \<class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +000010475Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +000010476 MultiTemplateParamsArg TempParams) {
Daniel Dunbar96a00142012-03-09 18:35:03 +000010477 SourceLocation Loc = DS.getLocStart();
John McCall67d1a672009-08-06 02:15:43 +000010478
10479 assert(DS.isFriendSpecified());
10480 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10481
John McCalldd4a3b02009-09-16 22:47:08 +000010482 // Try to convert the decl specifier to a type. This works for
10483 // friend templates because ActOnTag never produces a ClassTemplateDecl
10484 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +000010485 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +000010486 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
10487 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +000010488 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +000010489 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010490
Douglas Gregor6ccab972010-12-16 01:14:37 +000010491 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
10492 return 0;
10493
John McCalldd4a3b02009-09-16 22:47:08 +000010494 // This is definitely an error in C++98. It's probably meant to
10495 // be forbidden in C++0x, too, but the specification is just
10496 // poorly written.
10497 //
10498 // The problem is with declarations like the following:
10499 // template <T> friend A<T>::foo;
10500 // where deciding whether a class C is a friend or not now hinges
10501 // on whether there exists an instantiation of A that causes
10502 // 'foo' to equal C. There are restrictions on class-heads
10503 // (which we declare (by fiat) elaborated friend declarations to
10504 // be) that makes this tractable.
10505 //
10506 // FIXME: handle "template <> friend class A<T>;", which
10507 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +000010508 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +000010509 Diag(Loc, diag::err_tagless_friend_type_template)
10510 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +000010511 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +000010512 }
Douglas Gregor1d869352010-04-07 16:53:43 +000010513
John McCall02cace72009-08-28 07:59:38 +000010514 // C++98 [class.friend]p1: A friend of a class is a function
10515 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +000010516 // This is fixed in DR77, which just barely didn't make the C++03
10517 // deadline. It's also a very silly restriction that seriously
10518 // affects inner classes and which nobody else seems to implement;
10519 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +000010520 //
10521 // But note that we could warn about it: it's always useless to
10522 // friend one of your own members (it's not, however, worthless to
10523 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +000010524
John McCalldd4a3b02009-09-16 22:47:08 +000010525 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +000010526 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +000010527 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +000010528 NumTempParamLists,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010529 TempParams.data(),
John McCall32f2fb52010-03-25 18:04:51 +000010530 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +000010531 DS.getFriendSpecLoc());
10532 else
Abramo Bagnara0216df82011-10-29 20:52:52 +000010533 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregor1d869352010-04-07 16:53:43 +000010534
10535 if (!D)
John McCalld226f652010-08-21 09:40:31 +000010536 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +000010537
John McCalldd4a3b02009-09-16 22:47:08 +000010538 D->setAccess(AS_public);
10539 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +000010540
John McCalld226f652010-08-21 09:40:31 +000010541 return D;
John McCall02cace72009-08-28 07:59:38 +000010542}
10543
Rafael Espindolafc35cbc2013-01-08 20:44:06 +000010544NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
10545 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +000010546 const DeclSpec &DS = D.getDeclSpec();
10547
10548 assert(DS.isFriendSpecified());
10549 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
10550
10551 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +000010552 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall67d1a672009-08-06 02:15:43 +000010553
10554 // C++ [class.friend]p1
10555 // A friend of a class is a function or class....
10556 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +000010557 // It *doesn't* see through dependent types, which is correct
10558 // according to [temp.arg.type]p3:
10559 // If a declaration acquires a function type through a
10560 // type dependent on a template-parameter and this causes
10561 // a declaration that does not use the syntactic form of a
10562 // function declarator to have a function type, the program
10563 // is ill-formed.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010564 if (!TInfo->getType()->isFunctionType()) {
John McCall67d1a672009-08-06 02:15:43 +000010565 Diag(Loc, diag::err_unexpected_friend);
10566
10567 // It might be worthwhile to try to recover by creating an
10568 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +000010569 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010570 }
10571
10572 // C++ [namespace.memdef]p3
10573 // - If a friend declaration in a non-local class first declares a
10574 // class or function, the friend class or function is a member
10575 // of the innermost enclosing namespace.
10576 // - The name of the friend is not found by simple name lookup
10577 // until a matching declaration is provided in that namespace
10578 // scope (either before or after the class declaration granting
10579 // friendship).
10580 // - If a friend function is called, its name may be found by the
10581 // name lookup that considers functions from namespaces and
10582 // classes associated with the types of the function arguments.
10583 // - When looking for a prior declaration of a class or a function
10584 // declared as a friend, scopes outside the innermost enclosing
10585 // namespace scope are not considered.
10586
John McCall337ec3d2010-10-12 23:13:28 +000010587 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +000010588 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
10589 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +000010590 assert(Name);
10591
Douglas Gregor6ccab972010-12-16 01:14:37 +000010592 // Check for unexpanded parameter packs.
10593 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
10594 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
10595 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
10596 return 0;
10597
John McCall67d1a672009-08-06 02:15:43 +000010598 // The context we found the declaration in, or in which we should
10599 // create the declaration.
10600 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +000010601 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +000010602 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +000010603 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +000010604
John McCall337ec3d2010-10-12 23:13:28 +000010605 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +000010606
John McCall337ec3d2010-10-12 23:13:28 +000010607 // There are four cases here.
10608 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +000010609 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +000010610 // there as appropriate.
10611 // Recover from invalid scope qualifiers as if they just weren't there.
10612 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +000010613 // C++0x [namespace.memdef]p3:
10614 // If the name in a friend declaration is neither qualified nor
10615 // a template-id and the declaration is a function or an
10616 // elaborated-type-specifier, the lookup to determine whether
10617 // the entity has been previously declared shall not consider
10618 // any scopes outside the innermost enclosing namespace.
10619 // C++0x [class.friend]p11:
10620 // If a friend declaration appears in a local class and the name
10621 // specified is an unqualified name, a prior declaration is
10622 // looked up without considering scopes that are outside the
10623 // innermost enclosing non-class scope. For a friend function
10624 // declaration, if there is no prior declaration, the program is
10625 // ill-formed.
10626 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +000010627 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +000010628
John McCall29ae6e52010-10-13 05:45:15 +000010629 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +000010630 DC = CurContext;
10631 while (true) {
10632 // Skip class contexts. If someone can cite chapter and verse
10633 // for this behavior, that would be nice --- it's what GCC and
10634 // EDG do, and it seems like a reasonable intent, but the spec
10635 // really only says that checks for unqualified existing
10636 // declarations should stop at the nearest enclosing namespace,
10637 // not that they should only consider the nearest enclosing
10638 // namespace.
Nick Lewycky9c6fde52012-03-16 19:51:19 +000010639 while (DC->isRecord() || DC->isTransparentContext())
Douglas Gregor182ddf02009-09-28 00:08:27 +000010640 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +000010641
John McCall68263142009-11-18 22:49:29 +000010642 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +000010643
10644 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +000010645 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +000010646 break;
John McCall29ae6e52010-10-13 05:45:15 +000010647
John McCall8a407372010-10-14 22:22:28 +000010648 if (isTemplateId) {
10649 if (isa<TranslationUnitDecl>(DC)) break;
10650 } else {
10651 if (DC->isFileContext()) break;
10652 }
John McCall67d1a672009-08-06 02:15:43 +000010653 DC = DC->getParent();
10654 }
10655
10656 // C++ [class.friend]p1: A friend of a class is a function or
10657 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010658 // C++11 changes this for both friend types and functions.
John McCall7f27d922009-08-06 20:49:32 +000010659 // Most C++ 98 compilers do seem to give an error here, so
10660 // we do, too.
Richard Smithebaf0e62011-10-18 20:49:44 +000010661 if (!Previous.empty() && DC->Equals(CurContext))
10662 Diag(DS.getFriendSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +000010663 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010664 diag::warn_cxx98_compat_friend_is_member :
10665 diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +000010666
John McCall380aaa42010-10-13 06:22:15 +000010667 DCScope = getScopeForDeclContext(S, DC);
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010668
Douglas Gregor883af832011-10-10 01:11:59 +000010669 // C++ [class.friend]p6:
10670 // A function can be defined in a friend declaration of a class if and
10671 // only if the class is a non-local class (9.8), the function name is
10672 // unqualified, and the function has namespace scope.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010673 if (isLocal && D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010674 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
10675 }
10676
John McCall337ec3d2010-10-12 23:13:28 +000010677 // - There's a non-dependent scope specifier, in which case we
10678 // compute it and do a previous lookup there for a function
10679 // or function template.
10680 } else if (!SS.getScopeRep()->isDependent()) {
10681 DC = computeDeclContext(SS);
10682 if (!DC) return 0;
10683
10684 if (RequireCompleteDeclContext(SS, DC)) return 0;
10685
10686 LookupQualifiedName(Previous, DC);
10687
10688 // Ignore things found implicitly in the wrong scope.
10689 // TODO: better diagnostics for this case. Suggesting the right
10690 // qualified scope would be nice...
10691 LookupResult::Filter F = Previous.makeFilter();
10692 while (F.hasNext()) {
10693 NamedDecl *D = F.next();
10694 if (!DC->InEnclosingNamespaceSetOf(
10695 D->getDeclContext()->getRedeclContext()))
10696 F.erase();
10697 }
10698 F.done();
10699
10700 if (Previous.empty()) {
10701 D.setInvalidType();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010702 Diag(Loc, diag::err_qualified_friend_not_found)
10703 << Name << TInfo->getType();
John McCall337ec3d2010-10-12 23:13:28 +000010704 return 0;
10705 }
10706
10707 // C++ [class.friend]p1: A friend of a class is a function or
10708 // class that is not a member of the class . . .
Richard Smithebaf0e62011-10-18 20:49:44 +000010709 if (DC->Equals(CurContext))
10710 Diag(DS.getFriendSpecLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +000010711 getLangOpts().CPlusPlus11 ?
Richard Smithebaf0e62011-10-18 20:49:44 +000010712 diag::warn_cxx98_compat_friend_is_member :
10713 diag::err_friend_is_member);
Douglas Gregor883af832011-10-10 01:11:59 +000010714
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010715 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010716 // C++ [class.friend]p6:
10717 // A function can be defined in a friend declaration of a class if and
10718 // only if the class is a non-local class (9.8), the function name is
10719 // unqualified, and the function has namespace scope.
10720 SemaDiagnosticBuilder DB
10721 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
10722
10723 DB << SS.getScopeRep();
10724 if (DC->isFileContext())
10725 DB << FixItHint::CreateRemoval(SS.getRange());
10726 SS.clear();
10727 }
John McCall337ec3d2010-10-12 23:13:28 +000010728
10729 // - There's a scope specifier that does not match any template
10730 // parameter lists, in which case we use some arbitrary context,
10731 // create a method or method template, and wait for instantiation.
10732 // - There's a scope specifier that does match some template
10733 // parameter lists, which we don't handle right now.
10734 } else {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010735 if (D.isFunctionDefinition()) {
Douglas Gregor883af832011-10-10 01:11:59 +000010736 // C++ [class.friend]p6:
10737 // A function can be defined in a friend declaration of a class if and
10738 // only if the class is a non-local class (9.8), the function name is
10739 // unqualified, and the function has namespace scope.
10740 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
10741 << SS.getScopeRep();
10742 }
10743
John McCall337ec3d2010-10-12 23:13:28 +000010744 DC = CurContext;
10745 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +000010746 }
Douglas Gregor883af832011-10-10 01:11:59 +000010747
John McCall29ae6e52010-10-13 05:45:15 +000010748 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +000010749 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010750 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
10751 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
10752 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +000010753 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +000010754 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
10755 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +000010756 return 0;
John McCall67d1a672009-08-06 02:15:43 +000010757 }
John McCall67d1a672009-08-06 02:15:43 +000010758 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010759
Douglas Gregorfb35e8f2011-11-03 16:37:14 +000010760 // FIXME: This is an egregious hack to cope with cases where the scope stack
10761 // does not contain the declaration context, i.e., in an out-of-line
10762 // definition of a class.
10763 Scope FakeDCScope(S, Scope::DeclScope, Diags);
10764 if (!DCScope) {
10765 FakeDCScope.setEntity(DC);
10766 DCScope = &FakeDCScope;
10767 }
10768
Francois Pichetaf0f4d02011-08-14 03:52:19 +000010769 bool AddToScope = true;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +000010770 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010771 TemplateParams, AddToScope);
John McCalld226f652010-08-21 09:40:31 +000010772 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +000010773
Douglas Gregor182ddf02009-09-28 00:08:27 +000010774 assert(ND->getDeclContext() == DC);
10775 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +000010776
John McCallab88d972009-08-31 22:39:49 +000010777 // Add the function declaration to the appropriate lookup tables,
10778 // adjusting the redeclarations list as necessary. We don't
10779 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +000010780 //
John McCallab88d972009-08-31 22:39:49 +000010781 // Also update the scope-based lookup if the target context's
10782 // lookup context is in lexical scope.
10783 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +000010784 DC = DC->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000010785 DC->makeDeclVisibleInContext(ND);
John McCallab88d972009-08-31 22:39:49 +000010786 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +000010787 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +000010788 }
John McCall02cace72009-08-28 07:59:38 +000010789
10790 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +000010791 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +000010792 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +000010793 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +000010794 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +000010795
John McCall1f2e1a92012-08-10 03:15:35 +000010796 if (ND->isInvalidDecl()) {
John McCall337ec3d2010-10-12 23:13:28 +000010797 FrD->setInvalidDecl();
John McCall1f2e1a92012-08-10 03:15:35 +000010798 } else {
10799 if (DC->isRecord()) CheckFriendAccess(ND);
10800
John McCall6102ca12010-10-16 06:59:13 +000010801 FunctionDecl *FD;
10802 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
10803 FD = FTD->getTemplatedDecl();
10804 else
10805 FD = cast<FunctionDecl>(ND);
10806
10807 // Mark templated-scope function declarations as unsupported.
10808 if (FD->getNumTemplateParameterLists())
10809 FrD->setUnsupportedFriend(true);
10810 }
John McCall337ec3d2010-10-12 23:13:28 +000010811
John McCalld226f652010-08-21 09:40:31 +000010812 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +000010813}
10814
John McCalld226f652010-08-21 09:40:31 +000010815void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
10816 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +000010817
Sebastian Redl50de12f2009-03-24 22:27:57 +000010818 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
10819 if (!Fn) {
10820 Diag(DelLoc, diag::err_deleted_non_function);
10821 return;
10822 }
Douglas Gregoref96ee02012-01-14 16:38:05 +000010823 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010824 // Don't consider the implicit declaration we generate for explicit
10825 // specializations. FIXME: Do not generate these implicit declarations.
David Blaikie619ee6a2012-06-29 18:00:25 +000010826 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization
10827 || Prev->getPreviousDecl()) && !Prev->isDefined()) {
David Blaikied9cf8262012-06-25 21:55:30 +000010828 Diag(DelLoc, diag::err_deleted_decl_not_first);
10829 Diag(Prev->getLocation(), diag::note_previous_declaration);
10830 }
Sebastian Redl50de12f2009-03-24 22:27:57 +000010831 // If the declaration wasn't the first, we delete the function anyway for
10832 // recovery.
10833 }
Sean Hunt10620eb2011-05-06 20:44:56 +000010834 Fn->setDeletedAsWritten();
Sebastian Redl50de12f2009-03-24 22:27:57 +000010835}
Sebastian Redl13e88542009-04-27 21:33:24 +000010836
Sean Hunte4246a62011-05-12 06:15:49 +000010837void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
10838 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
10839
10840 if (MD) {
Sean Hunteb88ae52011-05-23 21:07:59 +000010841 if (MD->getParent()->isDependentType()) {
10842 MD->setDefaulted();
10843 MD->setExplicitlyDefaulted();
10844 return;
10845 }
10846
Sean Hunte4246a62011-05-12 06:15:49 +000010847 CXXSpecialMember Member = getSpecialMember(MD);
10848 if (Member == CXXInvalid) {
10849 Diag(DefaultLoc, diag::err_default_special_members);
10850 return;
10851 }
10852
10853 MD->setDefaulted();
10854 MD->setExplicitlyDefaulted();
10855
Sean Huntcd10dec2011-05-23 23:14:04 +000010856 // If this definition appears within the record, do the checking when
10857 // the record is complete.
10858 const FunctionDecl *Primary = MD;
Richard Smitha8eaf002012-08-23 06:16:52 +000010859 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Sean Huntcd10dec2011-05-23 23:14:04 +000010860 // Find the uninstantiated declaration that actually had the '= default'
10861 // on it.
Richard Smitha8eaf002012-08-23 06:16:52 +000010862 Pattern->isDefined(Primary);
Sean Huntcd10dec2011-05-23 23:14:04 +000010863
10864 if (Primary == Primary->getCanonicalDecl())
Sean Hunte4246a62011-05-12 06:15:49 +000010865 return;
10866
Richard Smithb9d0b762012-07-27 04:22:15 +000010867 CheckExplicitlyDefaultedSpecialMember(MD);
10868
Richard Smith1d28caf2012-12-11 01:14:52 +000010869 // The exception specification is needed because we are defining the
10870 // function.
10871 ResolveExceptionSpec(DefaultLoc,
10872 MD->getType()->castAs<FunctionProtoType>());
10873
Sean Hunte4246a62011-05-12 06:15:49 +000010874 switch (Member) {
10875 case CXXDefaultConstructor: {
10876 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010877 if (!CD->isInvalidDecl())
10878 DefineImplicitDefaultConstructor(DefaultLoc, CD);
10879 break;
10880 }
10881
10882 case CXXCopyConstructor: {
10883 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010884 if (!CD->isInvalidDecl())
10885 DefineImplicitCopyConstructor(DefaultLoc, CD);
Sean Hunte4246a62011-05-12 06:15:49 +000010886 break;
10887 }
Sean Huntcb45a0f2011-05-12 22:46:25 +000010888
Sean Hunt2b188082011-05-14 05:23:28 +000010889 case CXXCopyAssignment: {
Sean Hunt2b188082011-05-14 05:23:28 +000010890 if (!MD->isInvalidDecl())
10891 DefineImplicitCopyAssignment(DefaultLoc, MD);
10892 break;
10893 }
10894
Sean Huntcb45a0f2011-05-12 22:46:25 +000010895 case CXXDestructor: {
10896 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
Sean Hunt49634cf2011-05-13 06:10:58 +000010897 if (!DD->isInvalidDecl())
10898 DefineImplicitDestructor(DefaultLoc, DD);
Sean Huntcb45a0f2011-05-12 22:46:25 +000010899 break;
10900 }
10901
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010902 case CXXMoveConstructor: {
10903 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010904 if (!CD->isInvalidDecl())
10905 DefineImplicitMoveConstructor(DefaultLoc, CD);
Sean Hunt82713172011-05-25 23:16:36 +000010906 break;
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010907 }
Sean Hunt82713172011-05-25 23:16:36 +000010908
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010909 case CXXMoveAssignment: {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +000010910 if (!MD->isInvalidDecl())
10911 DefineImplicitMoveAssignment(DefaultLoc, MD);
10912 break;
10913 }
10914
10915 case CXXInvalid:
David Blaikieb219cfc2011-09-23 05:06:16 +000010916 llvm_unreachable("Invalid special member.");
Sean Hunte4246a62011-05-12 06:15:49 +000010917 }
10918 } else {
10919 Diag(DefaultLoc, diag::err_default_special_members);
10920 }
10921}
10922
Sebastian Redl13e88542009-04-27 21:33:24 +000010923static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +000010924 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +000010925 Stmt *SubStmt = *CI;
10926 if (!SubStmt)
10927 continue;
10928 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar96a00142012-03-09 18:35:03 +000010929 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl13e88542009-04-27 21:33:24 +000010930 diag::err_return_in_constructor_handler);
10931 if (!isa<Expr>(SubStmt))
10932 SearchForReturnInStmt(Self, SubStmt);
10933 }
10934}
10935
10936void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
10937 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
10938 CXXCatchStmt *Handler = TryBlock->getHandler(I);
10939 SearchForReturnInStmt(*this, Handler);
10940 }
10941}
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010942
Aaron Ballmanfff32482012-12-09 17:45:41 +000010943bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
10944 const CXXMethodDecl *Old) {
10945 const FunctionType *NewFT = New->getType()->getAs<FunctionType>();
10946 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>();
10947
10948 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
10949
10950 // If the calling conventions match, everything is fine
10951 if (NewCC == OldCC)
10952 return false;
10953
10954 // If either of the calling conventions are set to "default", we need to pick
10955 // something more sensible based on the target. This supports code where the
10956 // one method explicitly sets thiscall, and another has no explicit calling
10957 // convention.
10958 CallingConv Default =
10959 Context.getTargetInfo().getDefaultCallingConv(TargetInfo::CCMT_Member);
10960 if (NewCC == CC_Default)
10961 NewCC = Default;
10962 if (OldCC == CC_Default)
10963 OldCC = Default;
10964
10965 // If the calling conventions still don't match, then report the error
10966 if (NewCC != OldCC) {
10967 Diag(New->getLocation(),
10968 diag::err_conflicting_overriding_cc_attributes)
10969 << New->getDeclName() << New->getType() << Old->getType();
10970 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
10971 return true;
10972 }
10973
10974 return false;
10975}
10976
Mike Stump1eb44332009-09-09 15:08:12 +000010977bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010978 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +000010979 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
10980 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010981
Chandler Carruth73857792010-02-15 11:53:20 +000010982 if (Context.hasSameType(NewTy, OldTy) ||
10983 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +000010984 return false;
Mike Stump1eb44332009-09-09 15:08:12 +000010985
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010986 // Check if the return types are covariant
10987 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +000010988
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010989 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010990 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
10991 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000010992 NewClassTy = NewPT->getPointeeType();
10993 OldClassTy = OldPT->getPointeeType();
10994 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000010995 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
10996 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
10997 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
10998 NewClassTy = NewRT->getPointeeType();
10999 OldClassTy = OldRT->getPointeeType();
11000 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011001 }
11002 }
Mike Stump1eb44332009-09-09 15:08:12 +000011003
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011004 // The return types aren't either both pointers or references to a class type.
11005 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +000011006 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011007 diag::err_different_return_type_for_overriding_virtual_function)
11008 << New->getDeclName() << NewTy << OldTy;
11009 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +000011010
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011011 return true;
11012 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011013
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011014 // C++ [class.virtual]p6:
11015 // If the return type of D::f differs from the return type of B::f, the
11016 // class type in the return type of D::f shall be complete at the point of
11017 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +000011018 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
11019 if (!RT->isBeingDefined() &&
11020 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregord10099e2012-05-04 16:32:21 +000011021 diag::err_covariant_return_incomplete,
11022 New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011023 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +000011024 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +000011025
Douglas Gregora4923eb2009-11-16 21:35:15 +000011026 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011027 // Check if the new class derives from the old class.
11028 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
11029 Diag(New->getLocation(),
11030 diag::err_covariant_return_not_derived)
11031 << New->getDeclName() << NewTy << OldTy;
11032 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11033 return true;
11034 }
Mike Stump1eb44332009-09-09 15:08:12 +000011035
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011036 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +000011037 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +000011038 diag::err_covariant_return_inaccessible_base,
11039 diag::err_covariant_return_ambiguous_derived_to_base_conv,
11040 // FIXME: Should this point to the return type?
11041 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +000011042 // FIXME: this note won't trigger for delayed access control
11043 // diagnostics, and it's impossible to get an undelayed error
11044 // here from access control during the original parse because
11045 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011046 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11047 return true;
11048 }
11049 }
Mike Stump1eb44332009-09-09 15:08:12 +000011050
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011051 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +000011052 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011053 Diag(New->getLocation(),
11054 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011055 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011056 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11057 return true;
11058 };
Mike Stump1eb44332009-09-09 15:08:12 +000011059
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011060
11061 // The new class type must have the same or less qualifiers as the old type.
11062 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
11063 Diag(New->getLocation(),
11064 diag::err_covariant_return_type_class_type_more_qualified)
11065 << New->getDeclName() << NewTy << OldTy;
11066 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
11067 return true;
11068 };
Mike Stump1eb44332009-09-09 15:08:12 +000011069
Anders Carlssonc3a68b22009-05-14 19:52:19 +000011070 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +000011071}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011072
Douglas Gregor4ba31362009-12-01 17:24:26 +000011073/// \brief Mark the given method pure.
11074///
11075/// \param Method the method to be marked pure.
11076///
11077/// \param InitRange the source range that covers the "0" initializer.
11078bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +000011079 SourceLocation EndLoc = InitRange.getEnd();
11080 if (EndLoc.isValid())
11081 Method->setRangeEnd(EndLoc);
11082
Douglas Gregor4ba31362009-12-01 17:24:26 +000011083 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
11084 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +000011085 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +000011086 }
Douglas Gregor4ba31362009-12-01 17:24:26 +000011087
11088 if (!Method->isInvalidDecl())
11089 Diag(Method->getLocation(), diag::err_non_virtual_pure)
11090 << Method->getDeclName() << InitRange;
11091 return true;
11092}
11093
Douglas Gregor552e2992012-02-21 02:22:07 +000011094/// \brief Determine whether the given declaration is a static data member.
11095static bool isStaticDataMember(Decl *D) {
11096 VarDecl *Var = dyn_cast_or_null<VarDecl>(D);
11097 if (!Var)
11098 return false;
11099
11100 return Var->isStaticDataMember();
11101}
John McCall731ad842009-12-19 09:28:58 +000011102/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
11103/// an initializer for the out-of-line declaration 'Dcl'. The scope
11104/// is a fresh scope pushed for just this purpose.
11105///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011106/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
11107/// static data member of class X, names should be looked up in the scope of
11108/// class X.
John McCalld226f652010-08-21 09:40:31 +000011109void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011110 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011111 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011112
John McCall731ad842009-12-19 09:28:58 +000011113 // We should only get called for declarations with scope specifiers, like:
11114 // int foo::bar;
11115 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011116 EnterDeclaratorContext(S, D->getDeclContext());
Douglas Gregor552e2992012-02-21 02:22:07 +000011117
11118 // If we are parsing the initializer for a static data member, push a
11119 // new expression evaluation context that is associated with this static
11120 // data member.
11121 if (isStaticDataMember(D))
11122 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011123}
11124
11125/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +000011126/// initializer for the out-of-line declaration 'D'.
11127void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011128 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidisb65abda2011-04-22 18:52:25 +000011129 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011130
Douglas Gregor552e2992012-02-21 02:22:07 +000011131 if (isStaticDataMember(D))
11132 PopExpressionEvaluationContext();
11133
John McCall731ad842009-12-19 09:28:58 +000011134 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +000011135 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +000011136}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011137
11138/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
11139/// C++ if/switch/while/for statement.
11140/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +000011141DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011142 // C++ 6.4p2:
11143 // The declarator shall not specify a function or an array.
11144 // The type-specifier-seq shall not contain typedef and shall not declare a
11145 // new class or enumeration.
11146 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
11147 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011148
11149 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor9a30c992011-07-05 16:13:20 +000011150 if (!Dcl)
11151 return true;
11152
Argyrios Kyrtzidisdb7abf72011-06-28 03:01:12 +000011153 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
11154 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011155 << D.getSourceRange();
Douglas Gregor9a30c992011-07-05 16:13:20 +000011156 return true;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011157 }
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011158
Douglas Gregor99e9b4d2009-11-25 00:27:52 +000011159 return Dcl;
11160}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011161
Douglas Gregordfe65432011-07-28 19:11:31 +000011162void Sema::LoadExternalVTableUses() {
11163 if (!ExternalSource)
11164 return;
11165
11166 SmallVector<ExternalVTableUse, 4> VTables;
11167 ExternalSource->ReadUsedVTables(VTables);
11168 SmallVector<VTableUse, 4> NewUses;
11169 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
11170 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
11171 = VTablesUsed.find(VTables[I].Record);
11172 // Even if a definition wasn't required before, it may be required now.
11173 if (Pos != VTablesUsed.end()) {
11174 if (!Pos->second && VTables[I].DefinitionRequired)
11175 Pos->second = true;
11176 continue;
11177 }
11178
11179 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
11180 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
11181 }
11182
11183 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
11184}
11185
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011186void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
11187 bool DefinitionRequired) {
11188 // Ignore any vtable uses in unevaluated operands or for classes that do
11189 // not have a vtable.
11190 if (!Class->isDynamicClass() || Class->isDependentContext() ||
11191 CurContext->isDependentContext() ||
Eli Friedman78a54242012-01-21 04:44:06 +000011192 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +000011193 return;
11194
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011195 // Try to insert this class into the map.
Douglas Gregordfe65432011-07-28 19:11:31 +000011196 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011197 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11198 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
11199 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
11200 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +000011201 // If we already had an entry, check to see if we are promoting this vtable
11202 // to required a definition. If so, we need to reappend to the VTableUses
11203 // list, since we may have already processed the first entry.
11204 if (DefinitionRequired && !Pos.first->second) {
11205 Pos.first->second = true;
11206 } else {
11207 // Otherwise, we can early exit.
11208 return;
11209 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011210 }
11211
11212 // Local classes need to have their virtual members marked
11213 // immediately. For all other classes, we mark their virtual members
11214 // at the end of the translation unit.
11215 if (Class->isLocalClass())
11216 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +000011217 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011218 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +000011219}
11220
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011221bool Sema::DefineUsedVTables() {
Douglas Gregordfe65432011-07-28 19:11:31 +000011222 LoadExternalVTableUses();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011223 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +000011224 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +000011225
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011226 // Note: The VTableUses vector could grow as a result of marking
11227 // the members of a class as "used", so we check the size each
Richard Smithb9d0b762012-07-27 04:22:15 +000011228 // time through the loop and prefer indices (which are stable) to
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011229 // iterators (which are not).
Douglas Gregor78844032011-04-22 22:25:37 +000011230 bool DefinedAnything = false;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011231 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +000011232 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011233 if (!Class)
11234 continue;
11235
11236 SourceLocation Loc = VTableUses[I].second;
11237
Richard Smithb9d0b762012-07-27 04:22:15 +000011238 bool DefineVTable = true;
11239
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011240 // If this class has a key function, but that key function is
11241 // defined in another translation unit, we don't need to emit the
11242 // vtable even though we're using it.
11243 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +000011244 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011245 switch (KeyFunction->getTemplateSpecializationKind()) {
11246 case TSK_Undeclared:
11247 case TSK_ExplicitSpecialization:
11248 case TSK_ExplicitInstantiationDeclaration:
11249 // The key function is in another translation unit.
Richard Smithb9d0b762012-07-27 04:22:15 +000011250 DefineVTable = false;
11251 break;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011252
11253 case TSK_ExplicitInstantiationDefinition:
11254 case TSK_ImplicitInstantiation:
11255 // We will be instantiating the key function.
11256 break;
11257 }
11258 } else if (!KeyFunction) {
11259 // If we have a class with no key function that is the subject
11260 // of an explicit instantiation declaration, suppress the
11261 // vtable; it will live with the explicit instantiation
11262 // definition.
11263 bool IsExplicitInstantiationDeclaration
11264 = Class->getTemplateSpecializationKind()
11265 == TSK_ExplicitInstantiationDeclaration;
11266 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
11267 REnd = Class->redecls_end();
11268 R != REnd; ++R) {
11269 TemplateSpecializationKind TSK
11270 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
11271 if (TSK == TSK_ExplicitInstantiationDeclaration)
11272 IsExplicitInstantiationDeclaration = true;
11273 else if (TSK == TSK_ExplicitInstantiationDefinition) {
11274 IsExplicitInstantiationDeclaration = false;
11275 break;
11276 }
11277 }
11278
11279 if (IsExplicitInstantiationDeclaration)
Richard Smithb9d0b762012-07-27 04:22:15 +000011280 DefineVTable = false;
11281 }
11282
11283 // The exception specifications for all virtual members may be needed even
11284 // if we are not providing an authoritative form of the vtable in this TU.
11285 // We may choose to emit it available_externally anyway.
11286 if (!DefineVTable) {
11287 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
11288 continue;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011289 }
11290
11291 // Mark all of the virtual members of this class as referenced, so
11292 // that we can build a vtable. Then, tell the AST consumer that a
11293 // vtable for this class is required.
Douglas Gregor78844032011-04-22 22:25:37 +000011294 DefinedAnything = true;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011295 MarkVirtualMembersReferenced(Loc, Class);
11296 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
11297 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
11298
11299 // Optionally warn if we're emitting a weak vtable.
11300 if (Class->getLinkage() == ExternalLinkage &&
11301 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Douglas Gregora120d012011-09-23 19:04:03 +000011302 const FunctionDecl *KeyFunctionDef = 0;
11303 if (!KeyFunction ||
11304 (KeyFunction->hasBody(KeyFunctionDef) &&
11305 KeyFunctionDef->isInlined()))
David Blaikie44d95b52011-12-09 18:32:50 +000011306 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
11307 TSK_ExplicitInstantiationDefinition
11308 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
11309 << Class;
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011310 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011311 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +000011312 VTableUses.clear();
11313
Douglas Gregor78844032011-04-22 22:25:37 +000011314 return DefinedAnything;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +000011315}
Anders Carlssond6a637f2009-12-07 08:24:59 +000011316
Richard Smithb9d0b762012-07-27 04:22:15 +000011317void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
11318 const CXXRecordDecl *RD) {
11319 for (CXXRecordDecl::method_iterator I = RD->method_begin(),
11320 E = RD->method_end(); I != E; ++I)
11321 if ((*I)->isVirtual() && !(*I)->isPure())
11322 ResolveExceptionSpec(Loc, (*I)->getType()->castAs<FunctionProtoType>());
11323}
11324
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011325void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
11326 const CXXRecordDecl *RD) {
Richard Smithff817f72012-07-07 06:59:51 +000011327 // Mark all functions which will appear in RD's vtable as used.
11328 CXXFinalOverriderMap FinalOverriders;
11329 RD->getFinalOverriders(FinalOverriders);
11330 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
11331 E = FinalOverriders.end();
11332 I != E; ++I) {
11333 for (OverridingMethods::const_iterator OI = I->second.begin(),
11334 OE = I->second.end();
11335 OI != OE; ++OI) {
11336 assert(OI->second.size() > 0 && "no final overrider");
11337 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlssond6a637f2009-12-07 08:24:59 +000011338
Richard Smithff817f72012-07-07 06:59:51 +000011339 // C++ [basic.def.odr]p2:
11340 // [...] A virtual member function is used if it is not pure. [...]
11341 if (!Overrider->isPure())
11342 MarkFunctionReferenced(Loc, Overrider);
11343 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011344 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011345
11346 // Only classes that have virtual bases need a VTT.
11347 if (RD->getNumVBases() == 0)
11348 return;
11349
11350 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
11351 e = RD->bases_end(); i != e; ++i) {
11352 const CXXRecordDecl *Base =
11353 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +000011354 if (Base->getNumVBases() == 0)
11355 continue;
11356 MarkVirtualMembersReferenced(Loc, Base);
11357 }
Anders Carlssond6a637f2009-12-07 08:24:59 +000011358}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011359
11360/// SetIvarInitializers - This routine builds initialization ASTs for the
11361/// Objective-C implementation whose ivars need be initialized.
11362void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikie4e4d0842012-03-11 07:00:24 +000011363 if (!getLangOpts().CPlusPlus)
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011364 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +000011365 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000011366 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011367 CollectIvarsToConstructOrDestruct(OID, ivars);
11368 if (ivars.empty())
11369 return;
Chris Lattner5f9e2722011-07-23 10:55:15 +000011370 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011371 for (unsigned i = 0; i < ivars.size(); i++) {
11372 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011373 if (Field->isInvalidDecl())
11374 continue;
11375
Sean Huntcbb67482011-01-08 20:30:50 +000011376 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011377 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
11378 InitializationKind InitKind =
11379 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
11380
11381 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +000011382 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +000011383 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +000011384 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011385 // Note, MemberInit could actually come back empty if no initialization
11386 // is required (e.g., because it would call a trivial default constructor)
11387 if (!MemberInit.get() || MemberInit.isInvalid())
11388 continue;
John McCallb4eb64d2010-10-08 02:01:28 +000011389
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011390 Member =
Sean Huntcbb67482011-01-08 20:30:50 +000011391 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
11392 SourceLocation(),
11393 MemberInit.takeAs<Expr>(),
11394 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011395 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011396
11397 // Be sure that the destructor is accessible and is marked as referenced.
11398 if (const RecordType *RecordTy
11399 = Context.getBaseElementType(Field->getType())
11400 ->getAs<RecordType>()) {
11401 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +000011402 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000011403 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +000011404 CheckDestructorAccess(Field->getLocation(), Destructor,
11405 PDiag(diag::err_access_dtor_ivar)
11406 << Context.getBaseElementType(Field->getType()));
11407 }
11408 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +000011409 }
11410 ObjCImplementation->setIvarInitializers(Context,
11411 AllToInit.data(), AllToInit.size());
11412 }
11413}
Sean Huntfe57eef2011-05-04 05:57:24 +000011414
Sean Huntebcbe1d2011-05-04 23:29:54 +000011415static
11416void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
11417 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
11418 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
11419 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
11420 Sema &S) {
11421 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11422 CE = Current.end();
11423 if (Ctor->isInvalidDecl())
11424 return;
11425
Richard Smitha8eaf002012-08-23 06:16:52 +000011426 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
11427
11428 // Target may not be determinable yet, for instance if this is a dependent
11429 // call in an uninstantiated template.
11430 if (Target) {
11431 const FunctionDecl *FNTarget = 0;
11432 (void)Target->hasBody(FNTarget);
11433 Target = const_cast<CXXConstructorDecl*>(
11434 cast_or_null<CXXConstructorDecl>(FNTarget));
11435 }
Sean Huntebcbe1d2011-05-04 23:29:54 +000011436
11437 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
11438 // Avoid dereferencing a null pointer here.
11439 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
11440
11441 if (!Current.insert(Canonical))
11442 return;
11443
11444 // We know that beyond here, we aren't chaining into a cycle.
11445 if (!Target || !Target->isDelegatingConstructor() ||
11446 Target->isInvalidDecl() || Valid.count(TCanonical)) {
11447 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11448 Valid.insert(*CI);
11449 Current.clear();
11450 // We've hit a cycle.
11451 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11452 Current.count(TCanonical)) {
11453 // If we haven't diagnosed this cycle yet, do so now.
11454 if (!Invalid.count(TCanonical)) {
11455 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Sean Huntc1598702011-05-05 00:05:47 +000011456 diag::warn_delegating_ctor_cycle)
Sean Huntebcbe1d2011-05-04 23:29:54 +000011457 << Ctor;
11458
Richard Smitha8eaf002012-08-23 06:16:52 +000011459 // Don't add a note for a function delegating directly to itself.
Sean Huntebcbe1d2011-05-04 23:29:54 +000011460 if (TCanonical != Canonical)
11461 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
11462
11463 CXXConstructorDecl *C = Target;
11464 while (C->getCanonicalDecl() != Canonical) {
Richard Smitha8eaf002012-08-23 06:16:52 +000011465 const FunctionDecl *FNTarget = 0;
Sean Huntebcbe1d2011-05-04 23:29:54 +000011466 (void)C->getTargetConstructor()->hasBody(FNTarget);
11467 assert(FNTarget && "Ctor cycle through bodiless function");
11468
Richard Smitha8eaf002012-08-23 06:16:52 +000011469 C = const_cast<CXXConstructorDecl*>(
11470 cast<CXXConstructorDecl>(FNTarget));
Sean Huntebcbe1d2011-05-04 23:29:54 +000011471 S.Diag(C->getLocation(), diag::note_which_delegates_to);
11472 }
11473 }
11474
11475 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
11476 Invalid.insert(*CI);
11477 Current.clear();
11478 } else {
11479 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
11480 }
11481}
11482
11483
Sean Huntfe57eef2011-05-04 05:57:24 +000011484void Sema::CheckDelegatingCtorCycles() {
11485 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
11486
Sean Huntebcbe1d2011-05-04 23:29:54 +000011487 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
11488 CE = Current.end();
Sean Huntfe57eef2011-05-04 05:57:24 +000011489
Douglas Gregor0129b562011-07-27 21:57:17 +000011490 for (DelegatingCtorDeclsType::iterator
11491 I = DelegatingCtorDecls.begin(ExternalSource),
Sean Huntebcbe1d2011-05-04 23:29:54 +000011492 E = DelegatingCtorDecls.end();
Richard Smitha8eaf002012-08-23 06:16:52 +000011493 I != E; ++I)
11494 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Sean Huntebcbe1d2011-05-04 23:29:54 +000011495
11496 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
11497 (*CI)->setInvalidDecl();
Sean Huntfe57eef2011-05-04 05:57:24 +000011498}
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011499
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011500namespace {
11501 /// \brief AST visitor that finds references to the 'this' expression.
11502 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
11503 Sema &S;
11504
11505 public:
11506 explicit FindCXXThisExpr(Sema &S) : S(S) { }
11507
11508 bool VisitCXXThisExpr(CXXThisExpr *E) {
11509 S.Diag(E->getLocation(), diag::err_this_static_member_func)
11510 << E->isImplicit();
11511 return false;
11512 }
11513 };
11514}
11515
11516bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
11517 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11518 if (!TSInfo)
11519 return false;
11520
11521 TypeLoc TL = TSInfo->getTypeLoc();
11522 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11523 if (!ProtoTL)
11524 return false;
11525
11526 // C++11 [expr.prim.general]p3:
11527 // [The expression this] shall not appear before the optional
11528 // cv-qualifier-seq and it shall not appear within the declaration of a
11529 // static member function (although its type and value category are defined
11530 // within a static member function as they are within a non-static member
11531 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumic86d1fd2012-04-21 09:40:04 +000011532 // until the complete declarator is known. - end note ]
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011533 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11534 FindCXXThisExpr Finder(*this);
11535
11536 // If the return type came after the cv-qualifier-seq, check it now.
11537 if (Proto->hasTrailingReturn() &&
11538 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11539 return true;
11540
11541 // Check the exception specification.
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011542 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
11543 return true;
11544
11545 return checkThisInStaticMemberFunctionAttributes(Method);
11546}
11547
11548bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
11549 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
11550 if (!TSInfo)
11551 return false;
11552
11553 TypeLoc TL = TSInfo->getTypeLoc();
11554 FunctionProtoTypeLoc *ProtoTL = dyn_cast<FunctionProtoTypeLoc>(&TL);
11555 if (!ProtoTL)
11556 return false;
11557
11558 const FunctionProtoType *Proto = ProtoTL->getTypePtr();
11559 FindCXXThisExpr Finder(*this);
11560
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011561 switch (Proto->getExceptionSpecType()) {
Richard Smithe6975e92012-04-17 00:58:00 +000011562 case EST_Uninstantiated:
Richard Smithb9d0b762012-07-27 04:22:15 +000011563 case EST_Unevaluated:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011564 case EST_BasicNoexcept:
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011565 case EST_DynamicNone:
11566 case EST_MSAny:
11567 case EST_None:
11568 break;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011569
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011570 case EST_ComputedNoexcept:
11571 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11572 return true;
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011573
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011574 case EST_Dynamic:
11575 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011576 EEnd = Proto->exception_end();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011577 E != EEnd; ++E) {
11578 if (!Finder.TraverseType(*E))
11579 return true;
11580 }
11581 break;
11582 }
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011583
11584 return false;
Douglas Gregorcefc3af2012-04-16 07:05:22 +000011585}
11586
11587bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
11588 FindCXXThisExpr Finder(*this);
11589
11590 // Check attributes.
11591 for (Decl::attr_iterator A = Method->attr_begin(), AEnd = Method->attr_end();
11592 A != AEnd; ++A) {
11593 // FIXME: This should be emitted by tblgen.
11594 Expr *Arg = 0;
11595 ArrayRef<Expr *> Args;
11596 if (GuardedByAttr *G = dyn_cast<GuardedByAttr>(*A))
11597 Arg = G->getArg();
11598 else if (PtGuardedByAttr *G = dyn_cast<PtGuardedByAttr>(*A))
11599 Arg = G->getArg();
11600 else if (AcquiredAfterAttr *AA = dyn_cast<AcquiredAfterAttr>(*A))
11601 Args = ArrayRef<Expr *>(AA->args_begin(), AA->args_size());
11602 else if (AcquiredBeforeAttr *AB = dyn_cast<AcquiredBeforeAttr>(*A))
11603 Args = ArrayRef<Expr *>(AB->args_begin(), AB->args_size());
11604 else if (ExclusiveLockFunctionAttr *ELF
11605 = dyn_cast<ExclusiveLockFunctionAttr>(*A))
11606 Args = ArrayRef<Expr *>(ELF->args_begin(), ELF->args_size());
11607 else if (SharedLockFunctionAttr *SLF
11608 = dyn_cast<SharedLockFunctionAttr>(*A))
11609 Args = ArrayRef<Expr *>(SLF->args_begin(), SLF->args_size());
11610 else if (ExclusiveTrylockFunctionAttr *ETLF
11611 = dyn_cast<ExclusiveTrylockFunctionAttr>(*A)) {
11612 Arg = ETLF->getSuccessValue();
11613 Args = ArrayRef<Expr *>(ETLF->args_begin(), ETLF->args_size());
11614 } else if (SharedTrylockFunctionAttr *STLF
11615 = dyn_cast<SharedTrylockFunctionAttr>(*A)) {
11616 Arg = STLF->getSuccessValue();
11617 Args = ArrayRef<Expr *>(STLF->args_begin(), STLF->args_size());
11618 } else if (UnlockFunctionAttr *UF = dyn_cast<UnlockFunctionAttr>(*A))
11619 Args = ArrayRef<Expr *>(UF->args_begin(), UF->args_size());
11620 else if (LockReturnedAttr *LR = dyn_cast<LockReturnedAttr>(*A))
11621 Arg = LR->getArg();
11622 else if (LocksExcludedAttr *LE = dyn_cast<LocksExcludedAttr>(*A))
11623 Args = ArrayRef<Expr *>(LE->args_begin(), LE->args_size());
11624 else if (ExclusiveLocksRequiredAttr *ELR
11625 = dyn_cast<ExclusiveLocksRequiredAttr>(*A))
11626 Args = ArrayRef<Expr *>(ELR->args_begin(), ELR->args_size());
11627 else if (SharedLocksRequiredAttr *SLR
11628 = dyn_cast<SharedLocksRequiredAttr>(*A))
11629 Args = ArrayRef<Expr *>(SLR->args_begin(), SLR->args_size());
11630
11631 if (Arg && !Finder.TraverseStmt(Arg))
11632 return true;
11633
11634 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
11635 if (!Finder.TraverseStmt(Args[I]))
11636 return true;
11637 }
11638 }
11639
11640 return false;
11641}
11642
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011643void
11644Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
11645 ArrayRef<ParsedType> DynamicExceptions,
11646 ArrayRef<SourceRange> DynamicExceptionRanges,
11647 Expr *NoexceptExpr,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000011648 SmallVectorImpl<QualType> &Exceptions,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011649 FunctionProtoType::ExtProtoInfo &EPI) {
11650 Exceptions.clear();
11651 EPI.ExceptionSpecType = EST;
11652 if (EST == EST_Dynamic) {
11653 Exceptions.reserve(DynamicExceptions.size());
11654 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
11655 // FIXME: Preserve type source info.
11656 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
11657
11658 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
11659 collectUnexpandedParameterPacks(ET, Unexpanded);
11660 if (!Unexpanded.empty()) {
11661 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
11662 UPPC_ExceptionType,
11663 Unexpanded);
11664 continue;
11665 }
11666
11667 // Check that the type is valid for an exception spec, and
11668 // drop it if not.
11669 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
11670 Exceptions.push_back(ET);
11671 }
11672 EPI.NumExceptions = Exceptions.size();
11673 EPI.Exceptions = Exceptions.data();
11674 return;
11675 }
11676
11677 if (EST == EST_ComputedNoexcept) {
11678 // If an error occurred, there's no expression here.
11679 if (NoexceptExpr) {
11680 assert((NoexceptExpr->isTypeDependent() ||
11681 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
11682 Context.BoolTy) &&
11683 "Parser should have made sure that the expression is boolean");
11684 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
11685 EPI.ExceptionSpecType = EST_BasicNoexcept;
11686 return;
11687 }
11688
11689 if (!NoexceptExpr->isValueDependent())
11690 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, 0,
Douglas Gregorab41fe92012-05-04 22:38:52 +000011691 diag::err_noexcept_needs_constant_expression,
Douglas Gregor74e2fc32012-04-16 18:27:27 +000011692 /*AllowFold*/ false).take();
11693 EPI.NoexceptExpr = NoexceptExpr;
11694 }
11695 return;
11696 }
11697}
11698
Peter Collingbourne78dd67e2011-10-02 23:49:40 +000011699/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
11700Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
11701 // Implicitly declared functions (e.g. copy constructors) are
11702 // __host__ __device__
11703 if (D->isImplicit())
11704 return CFT_HostDevice;
11705
11706 if (D->hasAttr<CUDAGlobalAttr>())
11707 return CFT_Global;
11708
11709 if (D->hasAttr<CUDADeviceAttr>()) {
11710 if (D->hasAttr<CUDAHostAttr>())
11711 return CFT_HostDevice;
11712 else
11713 return CFT_Device;
11714 }
11715
11716 return CFT_Host;
11717}
11718
11719bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
11720 CUDAFunctionTarget CalleeTarget) {
11721 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
11722 // Callable from the device only."
11723 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
11724 return true;
11725
11726 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
11727 // Callable from the host only."
11728 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
11729 // Callable from the host only."
11730 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
11731 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
11732 return true;
11733
11734 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
11735 return true;
11736
11737 return false;
11738}