blob: 88193f54642f2815ce8af7ad1d4a382eb7e3ec8f [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCall5f1e0942010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregore737f502010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000019#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000020#include "clang/AST/ASTContext.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000021#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000022#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000023#include "clang/AST/DeclVisitor.h"
Sean Hunt41717662011-02-26 19:13:13 +000024#include "clang/AST/ExprCXX.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000025#include "clang/AST/RecordLayout.h"
26#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000027#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000028#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000029#include "clang/Sema/DeclSpec.h"
30#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000031#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000032#include "clang/Lex/Preprocessor.h"
John McCall50df6ae2010-08-25 07:03:20 +000033#include "llvm/ADT/DenseSet.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000034#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000035#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000036#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000037
38using namespace clang;
39
Chris Lattner8123a952008-04-10 02:22:51 +000040//===----------------------------------------------------------------------===//
41// CheckDefaultArgumentVisitor
42//===----------------------------------------------------------------------===//
43
Chris Lattner9e979552008-04-12 23:52:44 +000044namespace {
45 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
46 /// the default argument of a parameter to determine whether it
47 /// contains any ill-formed subexpressions. For example, this will
48 /// diagnose the use of local variables or parameters within the
49 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000050 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000051 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000052 Expr *DefaultArg;
53 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000054
Chris Lattner9e979552008-04-12 23:52:44 +000055 public:
Mike Stump1eb44332009-09-09 15:08:12 +000056 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000057 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000058
Chris Lattner9e979552008-04-12 23:52:44 +000059 bool VisitExpr(Expr *Node);
60 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000061 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000062 };
Chris Lattner8123a952008-04-10 02:22:51 +000063
Chris Lattner9e979552008-04-12 23:52:44 +000064 /// VisitExpr - Visit all of the children of this expression.
65 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
66 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000067 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000068 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000069 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000070 }
71
Chris Lattner9e979552008-04-12 23:52:44 +000072 /// VisitDeclRefExpr - Visit a reference to a declaration, to
73 /// determine whether this declaration can be used in the default
74 /// argument expression.
75 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000076 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000077 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
78 // C++ [dcl.fct.default]p9
79 // Default arguments are evaluated each time the function is
80 // called. The order of evaluation of function arguments is
81 // unspecified. Consequently, parameters of a function shall not
82 // be used in default argument expressions, even if they are not
83 // evaluated. Parameters of a function declared before a default
84 // argument expression are in scope and can hide namespace and
85 // class member names.
Mike Stump1eb44332009-09-09 15:08:12 +000086 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000087 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000088 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000089 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000090 // C++ [dcl.fct.default]p7
91 // Local variables shall not be used in default argument
92 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000093 if (VDecl->isLocalVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000094 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000095 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000096 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000097 }
Chris Lattner8123a952008-04-10 02:22:51 +000098
Douglas Gregor3996f232008-11-04 13:41:56 +000099 return false;
100 }
Chris Lattner9e979552008-04-12 23:52:44 +0000101
Douglas Gregor796da182008-11-04 14:32:21 +0000102 /// VisitCXXThisExpr - Visit a C++ "this" expression.
103 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
104 // C++ [dcl.fct.default]p8:
105 // The keyword this shall not be used in a default argument of a
106 // member function.
107 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000108 diag::err_param_default_argument_references_this)
109 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000110 }
Chris Lattner8123a952008-04-10 02:22:51 +0000111}
112
Anders Carlssoned961f92009-08-25 02:29:20 +0000113bool
John McCall9ae2f072010-08-23 23:25:46 +0000114Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000115 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000116 if (RequireCompleteType(Param->getLocation(), Param->getType(),
117 diag::err_typecheck_decl_incomplete_type)) {
118 Param->setInvalidDecl();
119 return true;
120 }
121
Anders Carlssoned961f92009-08-25 02:29:20 +0000122 // C++ [dcl.fct.default]p5
123 // A default argument expression is implicitly converted (clause
124 // 4) to the parameter type. The default argument expression has
125 // the same semantic constraints as the initializer expression in
126 // a declaration of a variable of the parameter type, using the
127 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000128 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
129 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000130 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
131 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000132 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCall60d7b3a2010-08-24 06:29:42 +0000133 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000134 MultiExprArg(*this, &Arg, 1));
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000135 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000136 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000137 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000138
John McCallb4eb64d2010-10-08 02:01:28 +0000139 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000140 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000141
Anders Carlssoned961f92009-08-25 02:29:20 +0000142 // Okay: add the default argument to the parameter
143 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000145 // We have already instantiated this parameter; provide each of the
146 // instantiations with the uninstantiated default argument.
147 UnparsedDefaultArgInstantiationsMap::iterator InstPos
148 = UnparsedDefaultArgInstantiations.find(Param);
149 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
150 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
151 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
152
153 // We're done tracking this parameter's instantiations.
154 UnparsedDefaultArgInstantiations.erase(InstPos);
155 }
156
Anders Carlsson9351c172009-08-25 03:18:48 +0000157 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000158}
159
Chris Lattner8123a952008-04-10 02:22:51 +0000160/// ActOnParamDefaultArgument - Check whether the default argument
161/// provided for a function parameter is well-formed. If so, attach it
162/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000163void
John McCalld226f652010-08-21 09:40:31 +0000164Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000165 Expr *DefaultArg) {
166 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000167 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000168
John McCalld226f652010-08-21 09:40:31 +0000169 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000170 UnparsedDefaultArgLocs.erase(Param);
171
Chris Lattner3d1cee32008-04-08 05:04:30 +0000172 // Default arguments are only permitted in C++
173 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000174 Diag(EqualLoc, diag::err_param_default_argument)
175 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000176 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000177 return;
178 }
179
Douglas Gregor6f526752010-12-16 08:48:57 +0000180 // Check for unexpanded parameter packs.
181 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
182 Param->setInvalidDecl();
183 return;
184 }
185
Anders Carlsson66e30672009-08-25 01:02:06 +0000186 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000187 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
188 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000189 Param->setInvalidDecl();
190 return;
191 }
Mike Stump1eb44332009-09-09 15:08:12 +0000192
John McCall9ae2f072010-08-23 23:25:46 +0000193 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000194}
195
Douglas Gregor61366e92008-12-24 00:01:03 +0000196/// ActOnParamUnparsedDefaultArgument - We've seen a default
197/// argument for a function parameter, but we can't parse it yet
198/// because we're inside a class definition. Note that this default
199/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000200void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000201 SourceLocation EqualLoc,
202 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000203 if (!param)
204 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000205
John McCalld226f652010-08-21 09:40:31 +0000206 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000207 if (Param)
208 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000209
Anders Carlsson5e300d12009-06-12 16:51:40 +0000210 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000211}
212
Douglas Gregor72b505b2008-12-16 21:30:33 +0000213/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
214/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000215void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000216 if (!param)
217 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000218
John McCalld226f652010-08-21 09:40:31 +0000219 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000220
Anders Carlsson5e300d12009-06-12 16:51:40 +0000221 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000222
Anders Carlsson5e300d12009-06-12 16:51:40 +0000223 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000224}
225
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000226/// CheckExtraCXXDefaultArguments - Check for any extra default
227/// arguments in the declarator, which is not a function declaration
228/// or definition and therefore is not permitted to have default
229/// arguments. This routine should be invoked for every declarator
230/// that is not a function declaration or definition.
231void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
232 // C++ [dcl.fct.default]p3
233 // A default argument expression shall be specified only in the
234 // parameter-declaration-clause of a function declaration or in a
235 // template-parameter (14.1). It shall not be specified for a
236 // parameter pack. If it is specified in a
237 // parameter-declaration-clause, it shall not occur within a
238 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000239 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000240 DeclaratorChunk &chunk = D.getTypeObject(i);
241 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000242 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
243 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000244 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000245 if (Param->hasUnparsedDefaultArg()) {
246 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000247 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
248 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
249 delete Toks;
250 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000251 } else if (Param->getDefaultArg()) {
252 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
253 << Param->getDefaultArg()->getSourceRange();
254 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000255 }
256 }
257 }
258 }
259}
260
Chris Lattner3d1cee32008-04-08 05:04:30 +0000261// MergeCXXFunctionDecl - Merge two declarations of the same C++
262// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000263// type. Subroutine of MergeFunctionDecl. Returns true if there was an
264// error, false otherwise.
265bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
266 bool Invalid = false;
267
Chris Lattner3d1cee32008-04-08 05:04:30 +0000268 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000269 // For non-template functions, default arguments can be added in
270 // later declarations of a function in the same
271 // scope. Declarations in different scopes have completely
272 // distinct sets of default arguments. That is, declarations in
273 // inner scopes do not acquire default arguments from
274 // declarations in outer scopes, and vice versa. In a given
275 // function declaration, all parameters subsequent to a
276 // parameter with a default argument shall have default
277 // arguments supplied in this or previous declarations. A
278 // default argument shall not be redefined by a later
279 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000280 //
281 // C++ [dcl.fct.default]p6:
282 // Except for member functions of class templates, the default arguments
283 // in a member function definition that appears outside of the class
284 // definition are added to the set of default arguments provided by the
285 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000286 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
287 ParmVarDecl *OldParam = Old->getParamDecl(p);
288 ParmVarDecl *NewParam = New->getParamDecl(p);
289
Douglas Gregor6cc15182009-09-11 18:44:32 +0000290 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000291
Francois Pichet8d051e02011-04-10 03:03:52 +0000292 unsigned DiagDefaultParamID =
293 diag::err_param_default_argument_redefinition;
294
295 // MSVC accepts that default parameters be redefined for member functions
296 // of template class. The new default parameter's value is ignored.
297 Invalid = true;
298 if (getLangOptions().Microsoft) {
299 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
300 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cf90492011-04-10 04:58:30 +0000301 // Merge the old default argument into the new parameter.
302 NewParam->setHasInheritedDefaultArg();
303 if (OldParam->hasUninstantiatedDefaultArg())
304 NewParam->setUninstantiatedDefaultArg(
305 OldParam->getUninstantiatedDefaultArg());
306 else
307 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichetcf320c62011-04-22 08:25:24 +0000308 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet8d051e02011-04-10 03:03:52 +0000309 Invalid = false;
310 }
311 }
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000312
Francois Pichet8cf90492011-04-10 04:58:30 +0000313 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
314 // hint here. Alternatively, we could walk the type-source information
315 // for NewParam to find the last source location in the type... but it
316 // isn't worth the effort right now. This is the kind of test case that
317 // is hard to get right:
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000318 // int f(int);
319 // void g(int (*fp)(int) = f);
320 // void g(int (*fp)(int) = &f);
Francois Pichet8d051e02011-04-10 03:03:52 +0000321 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000322 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000323
324 // Look for the function declaration where the default argument was
325 // actually written, which may be a declaration prior to Old.
326 for (FunctionDecl *Older = Old->getPreviousDeclaration();
327 Older; Older = Older->getPreviousDeclaration()) {
328 if (!Older->getParamDecl(p)->hasDefaultArg())
329 break;
330
331 OldParam = Older->getParamDecl(p);
332 }
333
334 Diag(OldParam->getLocation(), diag::note_previous_definition)
335 << OldParam->getDefaultArgRange();
Douglas Gregord85cef52009-09-17 19:51:30 +0000336 } else if (OldParam->hasDefaultArg()) {
John McCall3d6c1782010-05-04 01:53:42 +0000337 // Merge the old default argument into the new parameter.
338 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000339 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000340 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000341 if (OldParam->hasUninstantiatedDefaultArg())
342 NewParam->setUninstantiatedDefaultArg(
343 OldParam->getUninstantiatedDefaultArg());
344 else
John McCall3d6c1782010-05-04 01:53:42 +0000345 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregor6cc15182009-09-11 18:44:32 +0000346 } else if (NewParam->hasDefaultArg()) {
347 if (New->getDescribedFunctionTemplate()) {
348 // Paragraph 4, quoted above, only applies to non-template functions.
349 Diag(NewParam->getLocation(),
350 diag::err_param_default_argument_template_redecl)
351 << NewParam->getDefaultArgRange();
352 Diag(Old->getLocation(), diag::note_template_prev_declaration)
353 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000354 } else if (New->getTemplateSpecializationKind()
355 != TSK_ImplicitInstantiation &&
356 New->getTemplateSpecializationKind() != TSK_Undeclared) {
357 // C++ [temp.expr.spec]p21:
358 // Default function arguments shall not be specified in a declaration
359 // or a definition for one of the following explicit specializations:
360 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000361 // - the explicit specialization of a member function template;
362 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000363 // template where the class template specialization to which the
364 // member function specialization belongs is implicitly
365 // instantiated.
366 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
367 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
368 << New->getDeclName()
369 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000370 } else if (New->getDeclContext()->isDependentContext()) {
371 // C++ [dcl.fct.default]p6 (DR217):
372 // Default arguments for a member function of a class template shall
373 // be specified on the initial declaration of the member function
374 // within the class template.
375 //
376 // Reading the tea leaves a bit in DR217 and its reference to DR205
377 // leads me to the conclusion that one cannot add default function
378 // arguments for an out-of-line definition of a member function of a
379 // dependent type.
380 int WhichKind = 2;
381 if (CXXRecordDecl *Record
382 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
383 if (Record->getDescribedClassTemplate())
384 WhichKind = 0;
385 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
386 WhichKind = 1;
387 else
388 WhichKind = 2;
389 }
390
391 Diag(NewParam->getLocation(),
392 diag::err_param_default_argument_member_template_redecl)
393 << WhichKind
394 << NewParam->getDefaultArgRange();
395 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000396 }
397 }
398
Douglas Gregore13ad832010-02-12 07:32:17 +0000399 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000400 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000401
Douglas Gregorcda9c672009-02-16 17:45:42 +0000402 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000403}
404
Sebastian Redl60618fa2011-03-12 11:50:43 +0000405/// \brief Merge the exception specifications of two variable declarations.
406///
407/// This is called when there's a redeclaration of a VarDecl. The function
408/// checks if the redeclaration might have an exception specification and
409/// validates compatibility and merges the specs if necessary.
410void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
411 // Shortcut if exceptions are disabled.
412 if (!getLangOptions().CXXExceptions)
413 return;
414
415 assert(Context.hasSameType(New->getType(), Old->getType()) &&
416 "Should only be called if types are otherwise the same.");
417
418 QualType NewType = New->getType();
419 QualType OldType = Old->getType();
420
421 // We're only interested in pointers and references to functions, as well
422 // as pointers to member functions.
423 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
424 NewType = R->getPointeeType();
425 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
426 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
427 NewType = P->getPointeeType();
428 OldType = OldType->getAs<PointerType>()->getPointeeType();
429 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
430 NewType = M->getPointeeType();
431 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
432 }
433
434 if (!NewType->isFunctionProtoType())
435 return;
436
437 // There's lots of special cases for functions. For function pointers, system
438 // libraries are hopefully not as broken so that we don't need these
439 // workarounds.
440 if (CheckEquivalentExceptionSpec(
441 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
442 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
443 New->setInvalidDecl();
444 }
445}
446
Chris Lattner3d1cee32008-04-08 05:04:30 +0000447/// CheckCXXDefaultArguments - Verify that the default arguments for a
448/// function declaration are well-formed according to C++
449/// [dcl.fct.default].
450void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
451 unsigned NumParams = FD->getNumParams();
452 unsigned p;
453
454 // Find first parameter with a default argument
455 for (p = 0; p < NumParams; ++p) {
456 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000457 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000458 break;
459 }
460
461 // C++ [dcl.fct.default]p4:
462 // In a given function declaration, all parameters
463 // subsequent to a parameter with a default argument shall
464 // have default arguments supplied in this or previous
465 // declarations. A default argument shall not be redefined
466 // by a later declaration (not even to the same value).
467 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000468 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000469 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000470 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000471 if (Param->isInvalidDecl())
472 /* We already complained about this parameter. */;
473 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000474 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000475 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000476 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000477 else
Mike Stump1eb44332009-09-09 15:08:12 +0000478 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000479 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Chris Lattner3d1cee32008-04-08 05:04:30 +0000481 LastMissingDefaultArg = p;
482 }
483 }
484
485 if (LastMissingDefaultArg > 0) {
486 // Some default arguments were missing. Clear out all of the
487 // default arguments up to (and including) the last missing
488 // default argument, so that we leave the function parameters
489 // in a semantically valid state.
490 for (p = 0; p <= LastMissingDefaultArg; ++p) {
491 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000492 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000493 Param->setDefaultArg(0);
494 }
495 }
496 }
497}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000498
Douglas Gregorb48fe382008-10-31 09:07:45 +0000499/// isCurrentClassName - Determine whether the identifier II is the
500/// name of the class type currently being defined. In the case of
501/// nested classes, this will only return true if II is the name of
502/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000503bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
504 const CXXScopeSpec *SS) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000505 assert(getLangOptions().CPlusPlus && "No class names in C!");
506
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000507 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000508 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000509 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000510 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
511 } else
512 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
513
Douglas Gregor6f7a17b2010-02-05 06:12:42 +0000514 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +0000515 return &II == CurDecl->getIdentifier();
516 else
517 return false;
518}
519
Mike Stump1eb44332009-09-09 15:08:12 +0000520/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000521///
522/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
523/// and returns NULL otherwise.
524CXXBaseSpecifier *
525Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
526 SourceRange SpecifierRange,
527 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000528 TypeSourceInfo *TInfo,
529 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +0000530 QualType BaseType = TInfo->getType();
531
Douglas Gregor2943aed2009-03-03 04:44:36 +0000532 // C++ [class.union]p1:
533 // A union shall not have base classes.
534 if (Class->isUnion()) {
535 Diag(Class->getLocation(), diag::err_base_clause_on_union)
536 << SpecifierRange;
537 return 0;
538 }
539
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000540 if (EllipsisLoc.isValid() &&
541 !TInfo->getType()->containsUnexpandedParameterPack()) {
542 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
543 << TInfo->getTypeLoc().getSourceRange();
544 EllipsisLoc = SourceLocation();
545 }
546
Douglas Gregor2943aed2009-03-03 04:44:36 +0000547 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000548 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000549 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000550 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +0000551
552 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000553
554 // Base specifiers must be record types.
555 if (!BaseType->isRecordType()) {
556 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
557 return 0;
558 }
559
560 // C++ [class.union]p1:
561 // A union shall not be used as a base class.
562 if (BaseType->isUnionType()) {
563 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
564 return 0;
565 }
566
567 // C++ [class.derived]p2:
568 // The class-name in a base-specifier shall not be an incompletely
569 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000570 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000571 PDiag(diag::err_incomplete_base_class)
John McCall572fc622010-08-17 07:23:57 +0000572 << SpecifierRange)) {
573 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000574 return 0;
John McCall572fc622010-08-17 07:23:57 +0000575 }
Douglas Gregor2943aed2009-03-03 04:44:36 +0000576
Eli Friedman1d954f62009-08-15 21:55:26 +0000577 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000578 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000579 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +0000580 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000581 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000582 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
583 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +0000584
Anders Carlsson1d209272011-03-25 14:55:14 +0000585 // C++ [class]p3:
586 // If a class is marked final and it appears as a base-type-specifier in
587 // base-clause, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000588 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +0000589 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
590 << CXXBaseDecl->getDeclName();
591 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
592 << CXXBaseDecl->getDeclName();
593 return 0;
594 }
595
John McCall572fc622010-08-17 07:23:57 +0000596 if (BaseDecl->isInvalidDecl())
597 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +0000598
599 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +0000600 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000601 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000602 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +0000603}
604
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000605/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
606/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000607/// example:
608/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000609/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +0000610BaseResult
John McCalld226f652010-08-21 09:40:31 +0000611Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000612 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000613 ParsedType basetype, SourceLocation BaseLoc,
614 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000615 if (!classdecl)
616 return true;
617
Douglas Gregor40808ce2009-03-09 23:48:35 +0000618 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +0000619 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000620 if (!Class)
621 return true;
622
Nick Lewycky56062202010-07-26 16:56:01 +0000623 TypeSourceInfo *TInfo = 0;
624 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +0000625
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000626 if (EllipsisLoc.isInvalid() &&
627 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +0000628 UPPC_BaseType))
629 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000630
Douglas Gregor2943aed2009-03-03 04:44:36 +0000631 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000632 Virtual, Access, TInfo,
633 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000634 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000635
Douglas Gregor2943aed2009-03-03 04:44:36 +0000636 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000637}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000638
Douglas Gregor2943aed2009-03-03 04:44:36 +0000639/// \brief Performs the actual work of attaching the given base class
640/// specifiers to a C++ class.
641bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
642 unsigned NumBases) {
643 if (NumBases == 0)
644 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000645
646 // Used to keep track of which base types we have already seen, so
647 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000648 // that the key is always the unqualified canonical type of the base
649 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000650 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
651
652 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000653 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000654 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000655 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000656 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000657 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000658 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian0ed5c5d2010-05-20 23:34:56 +0000659 if (!Class->hasObjectMember()) {
660 if (const RecordType *FDTTy =
661 NewBaseType.getTypePtr()->getAs<RecordType>())
662 if (FDTTy->getDecl()->hasObjectMember())
663 Class->setHasObjectMember(true);
664 }
665
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000666 if (KnownBaseTypes[NewBaseType]) {
667 // C++ [class.mi]p3:
668 // A class shall not be specified as a direct base class of a
669 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000670 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000671 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000672 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000673 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000674
675 // Delete the duplicate base class specifier; we're going to
676 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000677 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000678
679 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000680 } else {
681 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000682 KnownBaseTypes[NewBaseType] = Bases[idx];
683 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000684 }
685 }
686
687 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000688 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000689
690 // Delete the remaining (good) base class specifiers, since their
691 // data has been copied into the CXXRecordDecl.
692 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000693 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000694
695 return Invalid;
696}
697
698/// ActOnBaseSpecifiers - Attach the given base specifiers to the
699/// class, after checking whether there are any duplicate base
700/// classes.
John McCalld226f652010-08-21 09:40:31 +0000701void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000702 unsigned NumBases) {
703 if (!ClassDecl || !Bases || !NumBases)
704 return;
705
706 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +0000707 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000708 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000709}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000710
John McCall3cb0ebd2010-03-10 03:28:59 +0000711static CXXRecordDecl *GetClassForType(QualType T) {
712 if (const RecordType *RT = T->getAs<RecordType>())
713 return cast<CXXRecordDecl>(RT->getDecl());
714 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
715 return ICT->getDecl();
716 else
717 return 0;
718}
719
Douglas Gregora8f32e02009-10-06 17:59:45 +0000720/// \brief Determine whether the type \p Derived is a C++ class that is
721/// derived from the type \p Base.
722bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
723 if (!getLangOptions().CPlusPlus)
724 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +0000725
726 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
727 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000728 return false;
729
John McCall3cb0ebd2010-03-10 03:28:59 +0000730 CXXRecordDecl *BaseRD = GetClassForType(Base);
731 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000732 return false;
733
John McCall86ff3082010-02-04 22:26:26 +0000734 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
735 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000736}
737
738/// \brief Determine whether the type \p Derived is a C++ class that is
739/// derived from the type \p Base.
740bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
741 if (!getLangOptions().CPlusPlus)
742 return false;
743
John McCall3cb0ebd2010-03-10 03:28:59 +0000744 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
745 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000746 return false;
747
John McCall3cb0ebd2010-03-10 03:28:59 +0000748 CXXRecordDecl *BaseRD = GetClassForType(Base);
749 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000750 return false;
751
Douglas Gregora8f32e02009-10-06 17:59:45 +0000752 return DerivedRD->isDerivedFrom(BaseRD, Paths);
753}
754
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000755void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +0000756 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000757 assert(BasePathArray.empty() && "Base path array must be empty!");
758 assert(Paths.isRecordingPaths() && "Must record paths!");
759
760 const CXXBasePath &Path = Paths.front();
761
762 // We first go backward and check if we have a virtual base.
763 // FIXME: It would be better if CXXBasePath had the base specifier for
764 // the nearest virtual base.
765 unsigned Start = 0;
766 for (unsigned I = Path.size(); I != 0; --I) {
767 if (Path[I - 1].Base->isVirtual()) {
768 Start = I - 1;
769 break;
770 }
771 }
772
773 // Now add all bases.
774 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +0000775 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000776}
777
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000778/// \brief Determine whether the given base path includes a virtual
779/// base class.
John McCallf871d0c2010-08-07 06:22:56 +0000780bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
781 for (CXXCastPath::const_iterator B = BasePath.begin(),
782 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000783 B != BEnd; ++B)
784 if ((*B)->isVirtual())
785 return true;
786
787 return false;
788}
789
Douglas Gregora8f32e02009-10-06 17:59:45 +0000790/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
791/// conversion (where Derived and Base are class types) is
792/// well-formed, meaning that the conversion is unambiguous (and
793/// that all of the base classes are accessible). Returns true
794/// and emits a diagnostic if the code is ill-formed, returns false
795/// otherwise. Loc is the location where this routine should point to
796/// if there is an error, and Range is the source range to highlight
797/// if there is an error.
798bool
799Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +0000800 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000801 unsigned AmbigiousBaseConvID,
802 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000803 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +0000804 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000805 // First, determine whether the path from Derived to Base is
806 // ambiguous. This is slightly more expensive than checking whether
807 // the Derived to Base conversion exists, because here we need to
808 // explore multiple paths to determine if there is an ambiguity.
809 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
810 /*DetectVirtual=*/false);
811 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
812 assert(DerivationOkay &&
813 "Can only be used with a derived-to-base conversion");
814 (void)DerivationOkay;
815
816 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000817 if (InaccessibleBaseID) {
818 // Check that the base class can be accessed.
819 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
820 InaccessibleBaseID)) {
821 case AR_inaccessible:
822 return true;
823 case AR_accessible:
824 case AR_dependent:
825 case AR_delayed:
826 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +0000827 }
John McCall6b2accb2010-02-10 09:31:12 +0000828 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000829
830 // Build a base path if necessary.
831 if (BasePath)
832 BuildBasePathArray(Paths, *BasePath);
833 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000834 }
835
836 // We know that the derived-to-base conversion is ambiguous, and
837 // we're going to produce a diagnostic. Perform the derived-to-base
838 // search just one more time to compute all of the possible paths so
839 // that we can print them out. This is more expensive than any of
840 // the previous derived-to-base checks we've done, but at this point
841 // performance isn't as much of an issue.
842 Paths.clear();
843 Paths.setRecordingPaths(true);
844 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
845 assert(StillOkay && "Can only be used with a derived-to-base conversion");
846 (void)StillOkay;
847
848 // Build up a textual representation of the ambiguous paths, e.g.,
849 // D -> B -> A, that will be used to illustrate the ambiguous
850 // conversions in the diagnostic. We only print one of the paths
851 // to each base class subobject.
852 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
853
854 Diag(Loc, AmbigiousBaseConvID)
855 << Derived << Base << PathDisplayStr << Range << Name;
856 return true;
857}
858
859bool
860Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000861 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +0000862 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000863 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000864 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +0000865 IgnoreAccess ? 0
866 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000867 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000868 Loc, Range, DeclarationName(),
869 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000870}
871
872
873/// @brief Builds a string representing ambiguous paths from a
874/// specific derived class to different subobjects of the same base
875/// class.
876///
877/// This function builds a string that can be used in error messages
878/// to show the different paths that one can take through the
879/// inheritance hierarchy to go from the derived class to different
880/// subobjects of a base class. The result looks something like this:
881/// @code
882/// struct D -> struct B -> struct A
883/// struct D -> struct C -> struct A
884/// @endcode
885std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
886 std::string PathDisplayStr;
887 std::set<unsigned> DisplayedPaths;
888 for (CXXBasePaths::paths_iterator Path = Paths.begin();
889 Path != Paths.end(); ++Path) {
890 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
891 // We haven't displayed a path to this particular base
892 // class subobject yet.
893 PathDisplayStr += "\n ";
894 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
895 for (CXXBasePath::const_iterator Element = Path->begin();
896 Element != Path->end(); ++Element)
897 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
898 }
899 }
900
901 return PathDisplayStr;
902}
903
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000904//===----------------------------------------------------------------------===//
905// C++ class member Handling
906//===----------------------------------------------------------------------===//
907
Abramo Bagnara6206d532010-06-05 05:09:32 +0000908/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCalld226f652010-08-21 09:40:31 +0000909Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
910 SourceLocation ASLoc,
911 SourceLocation ColonLoc) {
Abramo Bagnara6206d532010-06-05 05:09:32 +0000912 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +0000913 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +0000914 ASLoc, ColonLoc);
915 CurContext->addHiddenDecl(ASDecl);
John McCalld226f652010-08-21 09:40:31 +0000916 return ASDecl;
Abramo Bagnara6206d532010-06-05 05:09:32 +0000917}
918
Anders Carlsson9e682d92011-01-20 05:57:14 +0000919/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlsson4ebf1602011-01-20 06:29:02 +0000920void Sema::CheckOverrideControl(const Decl *D) {
Anders Carlsson9e682d92011-01-20 05:57:14 +0000921 const CXXMethodDecl *MD = llvm::dyn_cast<CXXMethodDecl>(D);
922 if (!MD || !MD->isVirtual())
923 return;
924
Anders Carlsson3ffe1832011-01-20 06:33:26 +0000925 if (MD->isDependentContext())
926 return;
927
Anders Carlsson9e682d92011-01-20 05:57:14 +0000928 // C++0x [class.virtual]p3:
929 // If a virtual function is marked with the virt-specifier override and does
930 // not override a member function of a base class,
931 // the program is ill-formed.
932 bool HasOverriddenMethods =
933 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000934 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlsson4ebf1602011-01-20 06:29:02 +0000935 Diag(MD->getLocation(),
Anders Carlsson9e682d92011-01-20 05:57:14 +0000936 diag::err_function_marked_override_not_overriding)
937 << MD->getDeclName();
938 return;
939 }
940}
941
Anders Carlsson2e1c7302011-01-20 16:25:36 +0000942/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
943/// function overrides a virtual member function marked 'final', according to
944/// C++0x [class.virtual]p3.
945bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
946 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000947 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +0000948 return false;
949
950 Diag(New->getLocation(), diag::err_final_function_overridden)
951 << New->getDeclName();
952 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
953 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +0000954}
955
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000956/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
957/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
958/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000959/// any.
John McCalld226f652010-08-21 09:40:31 +0000960Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000961Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000962 MultiTemplateParamsArg TemplateParameterLists,
Anders Carlsson69a87352011-01-20 03:57:25 +0000963 ExprTy *BW, const VirtSpecifiers &VS,
964 ExprTy *InitExpr, bool IsDefinition,
Sebastian Redld1a78462009-11-24 23:38:44 +0000965 bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000966 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +0000967 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
968 DeclarationName Name = NameInfo.getName();
969 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +0000970
971 // For anonymous bitfields, the location should point to the type.
972 if (Loc.isInvalid())
973 Loc = D.getSourceRange().getBegin();
974
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000975 Expr *BitWidth = static_cast<Expr*>(BW);
976 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000977
John McCall4bde1e12010-06-04 08:34:12 +0000978 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +0000979 assert(!DS.isFriendSpecified());
980
John McCall4bde1e12010-06-04 08:34:12 +0000981 bool isFunc = false;
982 if (D.isFunctionDeclarator())
983 isFunc = true;
984 else if (D.getNumTypeObjects() == 0 &&
985 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
John McCallb3d87482010-08-24 05:47:05 +0000986 QualType TDType = GetTypeFromParser(DS.getRepAsType());
John McCall4bde1e12010-06-04 08:34:12 +0000987 isFunc = TDType->isFunctionType();
988 }
989
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000990 // C++ 9.2p6: A member shall not be declared to have automatic storage
991 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000992 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
993 // data members and cannot be applied to names declared const or static,
994 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000995 switch (DS.getStorageClassSpec()) {
996 case DeclSpec::SCS_unspecified:
997 case DeclSpec::SCS_typedef:
998 case DeclSpec::SCS_static:
999 // FALL THROUGH.
1000 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +00001001 case DeclSpec::SCS_mutable:
1002 if (isFunc) {
1003 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001004 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +00001005 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001006 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Sebastian Redla11f42f2008-11-17 23:24:37 +00001008 // FIXME: It would be nicer if the keyword was ignored only for this
1009 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +00001010 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +00001011 }
1012 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001013 default:
1014 if (DS.getStorageClassSpecLoc().isValid())
1015 Diag(DS.getStorageClassSpecLoc(),
1016 diag::err_storageclass_invalid_for_member);
1017 else
1018 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1019 D.getMutableDeclSpec().ClearStorageClassSpecs();
1020 }
1021
Sebastian Redl669d5d72008-11-14 23:42:31 +00001022 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1023 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +00001024 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001025
1026 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +00001027 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +00001028 CXXScopeSpec &SS = D.getCXXScopeSpec();
1029
1030
1031 if (SS.isSet() && !SS.isInvalid()) {
1032 // The user provided a superfluous scope specifier inside a class
1033 // definition:
1034 //
1035 // class X {
1036 // int X::member;
1037 // };
1038 DeclContext *DC = 0;
1039 if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
1040 Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
1041 << Name << FixItHint::CreateRemoval(SS.getRange());
1042 else
1043 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1044 << Name << SS.getRange();
1045
1046 SS.clear();
1047 }
1048
Douglas Gregor37b372b2009-08-20 22:52:58 +00001049 // FIXME: Check for template parameters!
Douglas Gregor56c04582010-12-16 00:46:58 +00001050 // FIXME: Check that the name is an identifier!
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001051 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1052 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001053 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001054 } else {
John McCalld226f652010-08-21 09:40:31 +00001055 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001056 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001057 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001058 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001059
1060 // Non-instance-fields can't have a bitfield.
1061 if (BitWidth) {
1062 if (Member->isInvalidDecl()) {
1063 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001064 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001065 // C++ 9.6p3: A bit-field shall not be a static member.
1066 // "static member 'A' cannot be a bit-field"
1067 Diag(Loc, diag::err_static_not_bitfield)
1068 << Name << BitWidth->getSourceRange();
1069 } else if (isa<TypedefDecl>(Member)) {
1070 // "typedef member 'x' cannot be a bit-field"
1071 Diag(Loc, diag::err_typedef_not_bitfield)
1072 << Name << BitWidth->getSourceRange();
1073 } else {
1074 // A function typedef ("typedef int f(); f a;").
1075 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1076 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001077 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001078 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001079 }
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Chris Lattner8b963ef2009-03-05 23:01:03 +00001081 BitWidth = 0;
1082 Member->setInvalidDecl();
1083 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001084
1085 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001086
Douglas Gregor37b372b2009-08-20 22:52:58 +00001087 // If we have declared a member function template, set the access of the
1088 // templated declaration as well.
1089 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1090 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001091 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001092
Anders Carlssonaae5af22011-01-20 04:34:22 +00001093 if (VS.isOverrideSpecified()) {
1094 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1095 if (!MD || !MD->isVirtual()) {
1096 Diag(Member->getLocStart(),
1097 diag::override_keyword_only_allowed_on_virtual_member_functions)
1098 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001099 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001100 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001101 }
1102 if (VS.isFinalSpecified()) {
1103 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1104 if (!MD || !MD->isVirtual()) {
1105 Diag(Member->getLocStart(),
1106 diag::override_keyword_only_allowed_on_virtual_member_functions)
1107 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001108 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001109 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001110 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001111
Douglas Gregorf5251602011-03-08 17:10:18 +00001112 if (VS.getLastLocation().isValid()) {
1113 // Update the end location of a method that has a virt-specifiers.
1114 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1115 MD->setRangeEnd(VS.getLastLocation());
1116 }
1117
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001118 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001119
Douglas Gregor10bd3682008-11-17 22:58:34 +00001120 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001121
Douglas Gregor021c3b32009-03-11 23:00:04 +00001122 if (Init)
Richard Smith34b41d92011-02-20 03:19:35 +00001123 AddInitializerToDecl(Member, Init, false,
1124 DS.getTypeSpecType() == DeclSpec::TST_auto);
Sebastian Redle2b68332009-04-12 17:16:29 +00001125 if (Deleted) // FIXME: Source location is not very good.
John McCalld226f652010-08-21 09:40:31 +00001126 SetDeclDeleted(Member, D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001127
Richard Smith483b9f32011-02-21 20:05:19 +00001128 FinalizeDeclaration(Member);
1129
John McCallb25b2952011-02-15 07:12:36 +00001130 if (isInstField)
Douglas Gregor44b43212008-12-11 16:49:14 +00001131 FieldCollector->Add(cast<FieldDecl>(Member));
John McCalld226f652010-08-21 09:40:31 +00001132 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001133}
1134
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001135/// \brief Find the direct and/or virtual base specifiers that
1136/// correspond to the given base type, for use in base initialization
1137/// within a constructor.
1138static bool FindBaseInitializer(Sema &SemaRef,
1139 CXXRecordDecl *ClassDecl,
1140 QualType BaseType,
1141 const CXXBaseSpecifier *&DirectBaseSpec,
1142 const CXXBaseSpecifier *&VirtualBaseSpec) {
1143 // First, check for a direct base class.
1144 DirectBaseSpec = 0;
1145 for (CXXRecordDecl::base_class_const_iterator Base
1146 = ClassDecl->bases_begin();
1147 Base != ClassDecl->bases_end(); ++Base) {
1148 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1149 // We found a direct base of this type. That's what we're
1150 // initializing.
1151 DirectBaseSpec = &*Base;
1152 break;
1153 }
1154 }
1155
1156 // Check for a virtual base class.
1157 // FIXME: We might be able to short-circuit this if we know in advance that
1158 // there are no virtual bases.
1159 VirtualBaseSpec = 0;
1160 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1161 // We haven't found a base yet; search the class hierarchy for a
1162 // virtual base class.
1163 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1164 /*DetectVirtual=*/false);
1165 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1166 BaseType, Paths)) {
1167 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1168 Path != Paths.end(); ++Path) {
1169 if (Path->back().Base->isVirtual()) {
1170 VirtualBaseSpec = Path->back().Base;
1171 break;
1172 }
1173 }
1174 }
1175 }
1176
1177 return DirectBaseSpec || VirtualBaseSpec;
1178}
1179
Douglas Gregor7ad83902008-11-05 04:29:56 +00001180/// ActOnMemInitializer - Handle a C++ member initializer.
John McCallf312b1e2010-08-26 23:41:50 +00001181MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001182Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001183 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001184 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001185 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001186 ParsedType TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001187 SourceLocation IdLoc,
1188 SourceLocation LParenLoc,
1189 ExprTy **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001190 SourceLocation RParenLoc,
1191 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001192 if (!ConstructorD)
1193 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001194
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001195 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001196
1197 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001198 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001199 if (!Constructor) {
1200 // The user wrote a constructor initializer on a function that is
1201 // not a C++ constructor. Ignore the error for now, because we may
1202 // have more member initializers coming; we'll diagnose it just
1203 // once in ActOnMemInitializers.
1204 return true;
1205 }
1206
1207 CXXRecordDecl *ClassDecl = Constructor->getParent();
1208
1209 // C++ [class.base.init]p2:
1210 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001211 // constructor's class and, if not found in that scope, are looked
1212 // up in the scope containing the constructor's definition.
1213 // [Note: if the constructor's class contains a member with the
1214 // same name as a direct or virtual base class of the class, a
1215 // mem-initializer-id naming the member or base class and composed
1216 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001217 // mem-initializer-id for the hidden base class may be specified
1218 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001219 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001220 // Look for a member, first.
1221 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001222 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001223 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001224 if (Result.first != Result.second) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001225 Member = dyn_cast<FieldDecl>(*Result.first);
Francois Pichet87c2e122010-11-21 06:08:52 +00001226
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001227 if (Member) {
1228 if (EllipsisLoc.isValid())
1229 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1230 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1231
Francois Pichet00eb3f92010-12-04 09:14:42 +00001232 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001233 LParenLoc, RParenLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001234 }
1235
Francois Pichet00eb3f92010-12-04 09:14:42 +00001236 // Handle anonymous union case.
1237 if (IndirectFieldDecl* IndirectField
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001238 = dyn_cast<IndirectFieldDecl>(*Result.first)) {
1239 if (EllipsisLoc.isValid())
1240 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1241 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1242
Francois Pichet00eb3f92010-12-04 09:14:42 +00001243 return BuildMemberInitializer(IndirectField, (Expr**)Args,
1244 NumArgs, IdLoc,
1245 LParenLoc, RParenLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001246 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001247 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001248 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001249 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001250 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001251 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001252
1253 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001254 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCall2b194412009-12-21 10:41:20 +00001255 } else {
1256 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1257 LookupParsedName(R, S, &SS);
1258
1259 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1260 if (!TyD) {
1261 if (R.isAmbiguous()) return true;
1262
John McCallfd225442010-04-09 19:01:14 +00001263 // We don't want access-control diagnostics here.
1264 R.suppressDiagnostics();
1265
Douglas Gregor7a886e12010-01-19 06:46:48 +00001266 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1267 bool NotUnknownSpecialization = false;
1268 DeclContext *DC = computeDeclContext(SS, false);
1269 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1270 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1271
1272 if (!NotUnknownSpecialization) {
1273 // When the scope specifier can refer to a member of an unknown
1274 // specialization, we take it as a type name.
Douglas Gregore29425b2011-02-28 22:42:13 +00001275 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1276 SS.getWithLocInContext(Context),
1277 *MemberOrBase, IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001278 if (BaseType.isNull())
1279 return true;
1280
Douglas Gregor7a886e12010-01-19 06:46:48 +00001281 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001282 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001283 }
1284 }
1285
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001286 // If no results were found, try to correct typos.
Douglas Gregor7a886e12010-01-19 06:46:48 +00001287 if (R.empty() && BaseType.isNull() &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00001288 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1289 R.isSingleResult()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001290 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00001291 if (Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl)) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001292 // We have found a non-static data member with a similar
1293 // name to what was typed; complain and initialize that
1294 // member.
1295 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1296 << MemberOrBase << true << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001297 << FixItHint::CreateReplacement(R.getNameLoc(),
1298 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001299 Diag(Member->getLocation(), diag::note_previous_decl)
1300 << Member->getDeclName();
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001301
1302 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1303 LParenLoc, RParenLoc);
1304 }
1305 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1306 const CXXBaseSpecifier *DirectBaseSpec;
1307 const CXXBaseSpecifier *VirtualBaseSpec;
1308 if (FindBaseInitializer(*this, ClassDecl,
1309 Context.getTypeDeclType(Type),
1310 DirectBaseSpec, VirtualBaseSpec)) {
1311 // We have found a direct or virtual base class with a
1312 // similar name to what was typed; complain and initialize
1313 // that base class.
1314 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1315 << MemberOrBase << false << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001316 << FixItHint::CreateReplacement(R.getNameLoc(),
1317 R.getLookupName().getAsString());
Douglas Gregor0d535c82010-01-07 00:26:25 +00001318
1319 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1320 : VirtualBaseSpec;
1321 Diag(BaseSpec->getSourceRange().getBegin(),
1322 diag::note_base_class_specified_here)
1323 << BaseSpec->getType()
1324 << BaseSpec->getSourceRange();
1325
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001326 TyD = Type;
1327 }
1328 }
1329 }
1330
Douglas Gregor7a886e12010-01-19 06:46:48 +00001331 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001332 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1333 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1334 return true;
1335 }
John McCall2b194412009-12-21 10:41:20 +00001336 }
1337
Douglas Gregor7a886e12010-01-19 06:46:48 +00001338 if (BaseType.isNull()) {
1339 BaseType = Context.getTypeDeclType(TyD);
1340 if (SS.isSet()) {
1341 NestedNameSpecifier *Qualifier =
1342 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001343
Douglas Gregor7a886e12010-01-19 06:46:48 +00001344 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001345 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001346 }
John McCall2b194412009-12-21 10:41:20 +00001347 }
1348 }
Mike Stump1eb44332009-09-09 15:08:12 +00001349
John McCalla93c9342009-12-07 02:54:59 +00001350 if (!TInfo)
1351 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001352
John McCalla93c9342009-12-07 02:54:59 +00001353 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001354 LParenLoc, RParenLoc, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001355}
1356
John McCallb4190042009-11-04 23:02:40 +00001357/// Checks an initializer expression for use of uninitialized fields, such as
1358/// containing the field that is being initialized. Returns true if there is an
1359/// uninitialized field was used an updates the SourceLocation parameter; false
1360/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00001361static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichet00eb3f92010-12-04 09:14:42 +00001362 const ValueDecl *LhsField,
Nick Lewycky43ad1822010-06-15 07:32:55 +00001363 SourceLocation *L) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00001364 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
1365
Nick Lewycky43ad1822010-06-15 07:32:55 +00001366 if (isa<CallExpr>(S)) {
1367 // Do not descend into function calls or constructors, as the use
1368 // of an uninitialized field may be valid. One would have to inspect
1369 // the contents of the function/ctor to determine if it is safe or not.
1370 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1371 // may be safe, depending on what the function/ctor does.
1372 return false;
1373 }
1374 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1375 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson175ffbf2010-10-06 02:43:25 +00001376
1377 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
1378 // The member expression points to a static data member.
1379 assert(VD->isStaticDataMember() &&
1380 "Member points to non-static data member!");
Nick Lewyckyedd59112010-10-06 18:37:39 +00001381 (void)VD;
Anders Carlsson175ffbf2010-10-06 02:43:25 +00001382 return false;
1383 }
1384
1385 if (isa<EnumConstantDecl>(RhsField)) {
1386 // The member expression points to an enum.
1387 return false;
1388 }
1389
John McCallb4190042009-11-04 23:02:40 +00001390 if (RhsField == LhsField) {
1391 // Initializing a field with itself. Throw a warning.
1392 // But wait; there are exceptions!
1393 // Exception #1: The field may not belong to this record.
1394 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00001395 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00001396 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1397 // Even though the field matches, it does not belong to this record.
1398 return false;
1399 }
1400 // None of the exceptions triggered; return true to indicate an
1401 // uninitialized field was used.
1402 *L = ME->getMemberLoc();
1403 return true;
1404 }
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00001405 } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
Argyrios Kyrtzidisff8819b2010-09-21 10:47:20 +00001406 // sizeof/alignof doesn't reference contents, do not warn.
1407 return false;
1408 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
1409 // address-of doesn't reference contents (the pointer may be dereferenced
1410 // in the same expression but it would be rare; and weird).
1411 if (UOE->getOpcode() == UO_AddrOf)
1412 return false;
John McCallb4190042009-11-04 23:02:40 +00001413 }
John McCall7502c1d2011-02-13 04:07:26 +00001414 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewycky43ad1822010-06-15 07:32:55 +00001415 if (!*it) {
1416 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00001417 continue;
1418 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001419 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1420 return true;
John McCallb4190042009-11-04 23:02:40 +00001421 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001422 return false;
John McCallb4190042009-11-04 23:02:40 +00001423}
1424
John McCallf312b1e2010-08-26 23:41:50 +00001425MemInitResult
Chandler Carruth894aed92010-12-06 09:23:57 +00001426Sema::BuildMemberInitializer(ValueDecl *Member, Expr **Args,
Eli Friedman59c04372009-07-29 19:44:27 +00001427 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001428 SourceLocation LParenLoc,
Eli Friedman59c04372009-07-29 19:44:27 +00001429 SourceLocation RParenLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00001430 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
1431 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
1432 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00001433 "Member must be a FieldDecl or IndirectFieldDecl");
1434
Douglas Gregor464b2f02010-11-05 22:21:31 +00001435 if (Member->isInvalidDecl())
1436 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00001437
John McCallb4190042009-11-04 23:02:40 +00001438 // Diagnose value-uses of fields to initialize themselves, e.g.
1439 // foo(foo)
1440 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001441 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001442 for (unsigned i = 0; i < NumArgs; ++i) {
1443 SourceLocation L;
1444 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1445 // FIXME: Return true in the case when other fields are used before being
1446 // uninitialized. For example, let this field be the i'th field. When
1447 // initializing the i'th field, throw a warning if any of the >= i'th
1448 // fields are used, as they are not yet initialized.
1449 // Right now we are only handling the case where the i'th field uses
1450 // itself in its initializer.
1451 Diag(L, diag::warn_field_is_uninit);
1452 }
1453 }
1454
Eli Friedman59c04372009-07-29 19:44:27 +00001455 bool HasDependentArg = false;
1456 for (unsigned i = 0; i < NumArgs; i++)
1457 HasDependentArg |= Args[i]->isTypeDependent();
1458
Chandler Carruth894aed92010-12-06 09:23:57 +00001459 Expr *Init;
Eli Friedman0f2b97d2010-07-24 21:19:15 +00001460 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001461 // Can't check initialization for a member of dependent type or when
1462 // any of the arguments are type-dependent expressions.
Chandler Carruth894aed92010-12-06 09:23:57 +00001463 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1464 RParenLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001465
1466 // Erase any temporaries within this evaluation context; we're not
1467 // going to track them in the AST, since we'll be rebuilding the
1468 // ASTs during template instantiation.
1469 ExprTemporaries.erase(
1470 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1471 ExprTemporaries.end());
Chandler Carruth894aed92010-12-06 09:23:57 +00001472 } else {
1473 // Initialize the member.
1474 InitializedEntity MemberEntity =
1475 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
1476 : InitializedEntity::InitializeMember(IndirectMember, 0);
1477 InitializationKind Kind =
1478 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
John McCallb4eb64d2010-10-08 02:01:28 +00001479
Chandler Carruth894aed92010-12-06 09:23:57 +00001480 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1481
1482 ExprResult MemberInit =
1483 InitSeq.Perform(*this, MemberEntity, Kind,
1484 MultiExprArg(*this, Args, NumArgs), 0);
1485 if (MemberInit.isInvalid())
1486 return true;
1487
1488 CheckImplicitConversions(MemberInit.get(), LParenLoc);
1489
1490 // C++0x [class.base.init]p7:
1491 // The initialization of each base and member constitutes a
1492 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00001493 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00001494 if (MemberInit.isInvalid())
1495 return true;
1496
1497 // If we are in a dependent context, template instantiation will
1498 // perform this type-checking again. Just save the arguments that we
1499 // received in a ParenListExpr.
1500 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1501 // of the information that we have about the member
1502 // initializer. However, deconstructing the ASTs is a dicey process,
1503 // and this approach is far more likely to get the corner cases right.
1504 if (CurContext->isDependentContext())
1505 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1506 RParenLoc);
1507 else
1508 Init = MemberInit.get();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001509 }
1510
Chandler Carruth894aed92010-12-06 09:23:57 +00001511 if (DirectMember) {
Sean Huntcbb67482011-01-08 20:30:50 +00001512 return new (Context) CXXCtorInitializer(Context, DirectMember,
Chandler Carruth894aed92010-12-06 09:23:57 +00001513 IdLoc, LParenLoc, Init,
1514 RParenLoc);
1515 } else {
Sean Huntcbb67482011-01-08 20:30:50 +00001516 return new (Context) CXXCtorInitializer(Context, IndirectMember,
Chandler Carruth894aed92010-12-06 09:23:57 +00001517 IdLoc, LParenLoc, Init,
1518 RParenLoc);
1519 }
Eli Friedman59c04372009-07-29 19:44:27 +00001520}
1521
John McCallf312b1e2010-08-26 23:41:50 +00001522MemInitResult
Sean Hunt97fcc492011-01-08 19:20:43 +00001523Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo,
1524 Expr **Args, unsigned NumArgs,
Sean Hunt41717662011-02-26 19:13:13 +00001525 SourceLocation NameLoc,
Sean Hunt97fcc492011-01-08 19:20:43 +00001526 SourceLocation LParenLoc,
1527 SourceLocation RParenLoc,
Sean Hunt41717662011-02-26 19:13:13 +00001528 CXXRecordDecl *ClassDecl) {
Sean Hunt97fcc492011-01-08 19:20:43 +00001529 SourceLocation Loc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
1530 if (!LangOpts.CPlusPlus0x)
1531 return Diag(Loc, diag::err_delegation_0x_only)
1532 << TInfo->getTypeLoc().getLocalSourceRange();
Sebastian Redlf9c32eb2011-03-12 13:53:51 +00001533
Sean Hunt41717662011-02-26 19:13:13 +00001534 // Initialize the object.
1535 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
1536 QualType(ClassDecl->getTypeForDecl(), 0));
1537 InitializationKind Kind =
1538 InitializationKind::CreateDirect(NameLoc, LParenLoc, RParenLoc);
1539
1540 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
1541
1542 ExprResult DelegationInit =
1543 InitSeq.Perform(*this, DelegationEntity, Kind,
1544 MultiExprArg(*this, Args, NumArgs), 0);
1545 if (DelegationInit.isInvalid())
1546 return true;
1547
1548 CXXConstructExpr *ConExpr = cast<CXXConstructExpr>(DelegationInit.get());
1549 CXXConstructorDecl *Constructor = ConExpr->getConstructor();
1550 assert(Constructor && "Delegating constructor with no target?");
1551
1552 CheckImplicitConversions(DelegationInit.get(), LParenLoc);
1553
1554 // C++0x [class.base.init]p7:
1555 // The initialization of each base and member constitutes a
1556 // full-expression.
1557 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
1558 if (DelegationInit.isInvalid())
1559 return true;
1560
1561 // If we are in a dependent context, template instantiation will
1562 // perform this type-checking again. Just save the arguments that we
1563 // received in a ParenListExpr.
1564 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1565 // of the information that we have about the base
1566 // initializer. However, deconstructing the ASTs is a dicey process,
1567 // and this approach is far more likely to get the corner cases right.
1568 if (CurContext->isDependentContext()) {
1569 ExprResult Init
1570 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args,
1571 NumArgs, RParenLoc));
1572 return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc,
1573 Constructor, Init.takeAs<Expr>(),
1574 RParenLoc);
1575 }
1576
1577 return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc, Constructor,
1578 DelegationInit.takeAs<Expr>(),
1579 RParenLoc);
Sean Hunt97fcc492011-01-08 19:20:43 +00001580}
1581
1582MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00001583Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregor802ab452009-12-02 22:36:29 +00001584 Expr **Args, unsigned NumArgs,
1585 SourceLocation LParenLoc, SourceLocation RParenLoc,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001586 CXXRecordDecl *ClassDecl,
1587 SourceLocation EllipsisLoc) {
Eli Friedman59c04372009-07-29 19:44:27 +00001588 bool HasDependentArg = false;
1589 for (unsigned i = 0; i < NumArgs; i++)
1590 HasDependentArg |= Args[i]->isTypeDependent();
1591
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001592 SourceLocation BaseLoc
1593 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1594
1595 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1596 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1597 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1598
1599 // C++ [class.base.init]p2:
1600 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00001601 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001602 // of that class, the mem-initializer is ill-formed. A
1603 // mem-initializer-list can initialize a base class using any
1604 // name that denotes that base class type.
1605 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1606
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001607 if (EllipsisLoc.isValid()) {
1608 // This is a pack expansion.
1609 if (!BaseType->containsUnexpandedParameterPack()) {
1610 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1611 << SourceRange(BaseLoc, RParenLoc);
1612
1613 EllipsisLoc = SourceLocation();
1614 }
1615 } else {
1616 // Check for any unexpanded parameter packs.
1617 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
1618 return true;
1619
1620 for (unsigned I = 0; I != NumArgs; ++I)
1621 if (DiagnoseUnexpandedParameterPack(Args[I]))
1622 return true;
1623 }
1624
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001625 // Check for direct and virtual base classes.
1626 const CXXBaseSpecifier *DirectBaseSpec = 0;
1627 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1628 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00001629 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
1630 BaseType))
Sean Hunt41717662011-02-26 19:13:13 +00001631 return BuildDelegatingInitializer(BaseTInfo, Args, NumArgs, BaseLoc,
1632 LParenLoc, RParenLoc, ClassDecl);
Sean Hunt97fcc492011-01-08 19:20:43 +00001633
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001634 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1635 VirtualBaseSpec);
1636
1637 // C++ [base.class.init]p2:
1638 // Unless the mem-initializer-id names a nonstatic data member of the
1639 // constructor's class or a direct or virtual base of that class, the
1640 // mem-initializer is ill-formed.
1641 if (!DirectBaseSpec && !VirtualBaseSpec) {
1642 // If the class has any dependent bases, then it's possible that
1643 // one of those types will resolve to the same type as
1644 // BaseType. Therefore, just treat this as a dependent base
1645 // class initialization. FIXME: Should we try to check the
1646 // initialization anyway? It seems odd.
1647 if (ClassDecl->hasAnyDependentBases())
1648 Dependent = true;
1649 else
1650 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1651 << BaseType << Context.getTypeDeclType(ClassDecl)
1652 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1653 }
1654 }
1655
1656 if (Dependent) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001657 // Can't check initialization for a base of dependent type or when
1658 // any of the arguments are type-dependent expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00001659 ExprResult BaseInit
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001660 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1661 RParenLoc));
Eli Friedman59c04372009-07-29 19:44:27 +00001662
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001663 // Erase any temporaries within this evaluation context; we're not
1664 // going to track them in the AST, since we'll be rebuilding the
1665 // ASTs during template instantiation.
1666 ExprTemporaries.erase(
1667 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1668 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001669
Sean Huntcbb67482011-01-08 20:30:50 +00001670 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001671 /*IsVirtual=*/false,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001672 LParenLoc,
1673 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001674 RParenLoc,
1675 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001676 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001677
1678 // C++ [base.class.init]p2:
1679 // If a mem-initializer-id is ambiguous because it designates both
1680 // a direct non-virtual base class and an inherited virtual base
1681 // class, the mem-initializer is ill-formed.
1682 if (DirectBaseSpec && VirtualBaseSpec)
1683 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001684 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001685
1686 CXXBaseSpecifier *BaseSpec
1687 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1688 if (!BaseSpec)
1689 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1690
1691 // Initialize the base.
1692 InitializedEntity BaseEntity =
Anders Carlsson711f34a2010-04-21 19:52:01 +00001693 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001694 InitializationKind Kind =
1695 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1696
1697 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1698
John McCall60d7b3a2010-08-24 06:29:42 +00001699 ExprResult BaseInit =
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001700 InitSeq.Perform(*this, BaseEntity, Kind,
John McCallca0408f2010-08-23 06:44:23 +00001701 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001702 if (BaseInit.isInvalid())
1703 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00001704
1705 CheckImplicitConversions(BaseInit.get(), LParenLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001706
1707 // C++0x [class.base.init]p7:
1708 // The initialization of each base and member constitutes a
1709 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00001710 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001711 if (BaseInit.isInvalid())
1712 return true;
1713
1714 // If we are in a dependent context, template instantiation will
1715 // perform this type-checking again. Just save the arguments that we
1716 // received in a ParenListExpr.
1717 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1718 // of the information that we have about the base
1719 // initializer. However, deconstructing the ASTs is a dicey process,
1720 // and this approach is far more likely to get the corner cases right.
1721 if (CurContext->isDependentContext()) {
John McCall60d7b3a2010-08-24 06:29:42 +00001722 ExprResult Init
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001723 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1724 RParenLoc));
Sean Huntcbb67482011-01-08 20:30:50 +00001725 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001726 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001727 LParenLoc,
1728 Init.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001729 RParenLoc,
1730 EllipsisLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001731 }
1732
Sean Huntcbb67482011-01-08 20:30:50 +00001733 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001734 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001735 LParenLoc,
1736 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001737 RParenLoc,
1738 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001739}
1740
Anders Carlssone5ef7402010-04-23 03:10:23 +00001741/// ImplicitInitializerKind - How an implicit base or member initializer should
1742/// initialize its base or member.
1743enum ImplicitInitializerKind {
1744 IIK_Default,
1745 IIK_Copy,
1746 IIK_Move
1747};
1748
Anders Carlssondefefd22010-04-23 02:00:02 +00001749static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001750BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001751 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00001752 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00001753 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00001754 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00001755 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00001756 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1757 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00001758
John McCall60d7b3a2010-08-24 06:29:42 +00001759 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00001760
1761 switch (ImplicitInitKind) {
1762 case IIK_Default: {
1763 InitializationKind InitKind
1764 = InitializationKind::CreateDefault(Constructor->getLocation());
1765 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1766 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001767 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00001768 break;
1769 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001770
Anders Carlssone5ef7402010-04-23 03:10:23 +00001771 case IIK_Copy: {
1772 ParmVarDecl *Param = Constructor->getParamDecl(0);
1773 QualType ParamType = Param->getType().getNonReferenceType();
1774
1775 Expr *CopyCtorArg =
Douglas Gregor40d96a62011-02-28 21:54:11 +00001776 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
John McCallf89e55a2010-11-18 06:31:45 +00001777 Constructor->getLocation(), ParamType,
1778 VK_LValue, 0);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001779
Anders Carlssonc7957502010-04-24 22:02:54 +00001780 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00001781 QualType ArgTy =
1782 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1783 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00001784
1785 CXXCastPath BasePath;
1786 BasePath.push_back(BaseSpec);
John Wiegley429bb272011-04-08 18:41:53 +00001787 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
1788 CK_UncheckedDerivedToBase,
1789 VK_LValue, &BasePath).take();
Anders Carlssonc7957502010-04-24 22:02:54 +00001790
Anders Carlssone5ef7402010-04-23 03:10:23 +00001791 InitializationKind InitKind
1792 = InitializationKind::CreateDirect(Constructor->getLocation(),
1793 SourceLocation(), SourceLocation());
1794 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1795 &CopyCtorArg, 1);
1796 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001797 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00001798 break;
1799 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001800
Anders Carlssone5ef7402010-04-23 03:10:23 +00001801 case IIK_Move:
1802 assert(false && "Unhandled initializer kind!");
1803 }
John McCall9ae2f072010-08-23 23:25:46 +00001804
Douglas Gregor53c374f2010-12-07 00:41:46 +00001805 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00001806 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001807 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001808
Anders Carlssondefefd22010-04-23 02:00:02 +00001809 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00001810 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00001811 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1812 SourceLocation()),
1813 BaseSpec->isVirtual(),
1814 SourceLocation(),
1815 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001816 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00001817 SourceLocation());
1818
Anders Carlssondefefd22010-04-23 02:00:02 +00001819 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001820}
1821
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001822static bool
1823BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001824 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001825 FieldDecl *Field,
Sean Huntcbb67482011-01-08 20:30:50 +00001826 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001827 if (Field->isInvalidDecl())
1828 return true;
1829
Chandler Carruthf186b542010-06-29 23:50:44 +00001830 SourceLocation Loc = Constructor->getLocation();
1831
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001832 if (ImplicitInitKind == IIK_Copy) {
1833 ParmVarDecl *Param = Constructor->getParamDecl(0);
1834 QualType ParamType = Param->getType().getNonReferenceType();
1835
1836 Expr *MemberExprBase =
Douglas Gregor40d96a62011-02-28 21:54:11 +00001837 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
John McCallf89e55a2010-11-18 06:31:45 +00001838 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001839
1840 // Build a reference to this field within the parameter.
1841 CXXScopeSpec SS;
1842 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1843 Sema::LookupMemberName);
1844 MemberLookup.addDecl(Field, AS_public);
1845 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00001846 ExprResult CopyCtorArg
John McCall9ae2f072010-08-23 23:25:46 +00001847 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001848 ParamType, Loc,
1849 /*IsArrow=*/false,
1850 SS,
1851 /*FirstQualifierInScope=*/0,
1852 MemberLookup,
1853 /*TemplateArgs=*/0);
1854 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001855 return true;
1856
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001857 // When the field we are copying is an array, create index variables for
1858 // each dimension of the array. We use these index variables to subscript
1859 // the source array, and other clients (e.g., CodeGen) will perform the
1860 // necessary iteration with these index variables.
1861 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1862 QualType BaseType = Field->getType();
1863 QualType SizeType = SemaRef.Context.getSizeType();
1864 while (const ConstantArrayType *Array
1865 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1866 // Create the iteration variable for this array index.
1867 IdentifierInfo *IterationVarName = 0;
1868 {
1869 llvm::SmallString<8> Str;
1870 llvm::raw_svector_ostream OS(Str);
1871 OS << "__i" << IndexVariables.size();
1872 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1873 }
1874 VarDecl *IterationVar
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001875 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001876 IterationVarName, SizeType,
1877 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00001878 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001879 IndexVariables.push_back(IterationVar);
1880
1881 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00001882 ExprResult IterationVarRef
John McCallf89e55a2010-11-18 06:31:45 +00001883 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001884 assert(!IterationVarRef.isInvalid() &&
1885 "Reference to invented variable cannot fail!");
1886
1887 // Subscript the array with this iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00001888 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001889 Loc,
John McCall9ae2f072010-08-23 23:25:46 +00001890 IterationVarRef.take(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001891 Loc);
1892 if (CopyCtorArg.isInvalid())
1893 return true;
1894
1895 BaseType = Array->getElementType();
1896 }
1897
1898 // Construct the entity that we will be initializing. For an array, this
1899 // will be first element in the array, which may require several levels
1900 // of array-subscript entities.
1901 llvm::SmallVector<InitializedEntity, 4> Entities;
1902 Entities.reserve(1 + IndexVariables.size());
1903 Entities.push_back(InitializedEntity::InitializeMember(Field));
1904 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1905 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1906 0,
1907 Entities.back()));
1908
1909 // Direct-initialize to use the copy constructor.
1910 InitializationKind InitKind =
1911 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1912
1913 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1914 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1915 &CopyCtorArgE, 1);
1916
John McCall60d7b3a2010-08-24 06:29:42 +00001917 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001918 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001919 MultiExprArg(&CopyCtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00001920 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001921 if (MemberInit.isInvalid())
1922 return true;
1923
1924 CXXMemberInit
Sean Huntcbb67482011-01-08 20:30:50 +00001925 = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001926 MemberInit.takeAs<Expr>(), Loc,
1927 IndexVariables.data(),
1928 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001929 return false;
1930 }
1931
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001932 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1933
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001934 QualType FieldBaseElementType =
1935 SemaRef.Context.getBaseElementType(Field->getType());
1936
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001937 if (FieldBaseElementType->isRecordType()) {
1938 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001939 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00001940 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001941
1942 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00001943 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00001944 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00001945
Douglas Gregor53c374f2010-12-07 00:41:46 +00001946 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001947 if (MemberInit.isInvalid())
1948 return true;
1949
1950 CXXMemberInit =
Sean Huntcbb67482011-01-08 20:30:50 +00001951 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Chandler Carruthf186b542010-06-29 23:50:44 +00001952 Field, Loc, Loc,
John McCall9ae2f072010-08-23 23:25:46 +00001953 MemberInit.get(),
Chandler Carruthf186b542010-06-29 23:50:44 +00001954 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001955 return false;
1956 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001957
1958 if (FieldBaseElementType->isReferenceType()) {
1959 SemaRef.Diag(Constructor->getLocation(),
1960 diag::err_uninitialized_member_in_ctor)
1961 << (int)Constructor->isImplicit()
1962 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1963 << 0 << Field->getDeclName();
1964 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1965 return true;
1966 }
1967
1968 if (FieldBaseElementType.isConstQualified()) {
1969 SemaRef.Diag(Constructor->getLocation(),
1970 diag::err_uninitialized_member_in_ctor)
1971 << (int)Constructor->isImplicit()
1972 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1973 << 1 << Field->getDeclName();
1974 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1975 return true;
1976 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001977
1978 // Nothing to initialize.
1979 CXXMemberInit = 0;
1980 return false;
1981}
John McCallf1860e52010-05-20 23:23:51 +00001982
1983namespace {
1984struct BaseAndFieldInfo {
1985 Sema &S;
1986 CXXConstructorDecl *Ctor;
1987 bool AnyErrorsInInits;
1988 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00001989 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
1990 llvm::SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00001991
1992 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1993 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1994 // FIXME: Handle implicit move constructors.
1995 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1996 IIK = IIK_Copy;
1997 else
1998 IIK = IIK_Default;
1999 }
2000};
2001}
2002
2003static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
2004 FieldDecl *Top, FieldDecl *Field) {
2005
Chandler Carruthe861c602010-06-30 02:59:29 +00002006 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00002007 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002008 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00002009 return false;
2010 }
2011
2012 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
2013 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
2014 assert(FieldClassType && "anonymous struct/union without record type");
John McCallf1860e52010-05-20 23:23:51 +00002015 CXXRecordDecl *FieldClassDecl
2016 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruthe861c602010-06-30 02:59:29 +00002017
2018 // Even though union members never have non-trivial default
2019 // constructions in C++03, we still build member initializers for aggregate
2020 // record types which can be union members, and C++0x allows non-trivial
2021 // default constructors for union members, so we ensure that only one
2022 // member is initialized for these.
2023 if (FieldClassDecl->isUnion()) {
2024 // First check for an explicit initializer for one field.
2025 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2026 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002027 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002028 Info.AllToInit.push_back(Init);
Chandler Carruthe861c602010-06-30 02:59:29 +00002029
2030 // Once we've initialized a field of an anonymous union, the union
2031 // field in the class is also initialized, so exit immediately.
2032 return false;
Argyrios Kyrtzidis881b36c2010-08-16 17:27:13 +00002033 } else if ((*FA)->isAnonymousStructOrUnion()) {
2034 if (CollectFieldInitializer(Info, Top, *FA))
2035 return true;
Chandler Carruthe861c602010-06-30 02:59:29 +00002036 }
2037 }
2038
2039 // Fallthrough and construct a default initializer for the union as
2040 // a whole, which can call its default constructor if such a thing exists
2041 // (C++0x perhaps). FIXME: It's not clear that this is the correct
2042 // behavior going forward with C++0x, when anonymous unions there are
2043 // finalized, we should revisit this.
2044 } else {
2045 // For structs, we simply descend through to initialize all members where
2046 // necessary.
2047 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2048 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
2049 if (CollectFieldInitializer(Info, Top, *FA))
2050 return true;
2051 }
2052 }
John McCallf1860e52010-05-20 23:23:51 +00002053 }
2054
2055 // Don't try to build an implicit initializer if there were semantic
2056 // errors in any of the initializers (and therefore we might be
2057 // missing some that the user actually wrote).
2058 if (Info.AnyErrorsInInits)
2059 return false;
2060
Sean Huntcbb67482011-01-08 20:30:50 +00002061 CXXCtorInitializer *Init = 0;
John McCallf1860e52010-05-20 23:23:51 +00002062 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
2063 return true;
John McCallf1860e52010-05-20 23:23:51 +00002064
Francois Pichet00eb3f92010-12-04 09:14:42 +00002065 if (Init)
2066 Info.AllToInit.push_back(Init);
2067
John McCallf1860e52010-05-20 23:23:51 +00002068 return false;
2069}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002070
Eli Friedman80c30da2009-11-09 19:20:36 +00002071bool
Sean Huntcbb67482011-01-08 20:30:50 +00002072Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2073 CXXCtorInitializer **Initializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002074 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002075 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00002076 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002077 // Just store the initializers as written, they will be checked during
2078 // instantiation.
2079 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002080 Constructor->setNumCtorInitializers(NumInitializers);
2081 CXXCtorInitializer **baseOrMemberInitializers =
2082 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002083 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00002084 NumInitializers * sizeof(CXXCtorInitializer*));
2085 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002086 }
2087
2088 return false;
2089 }
2090
John McCallf1860e52010-05-20 23:23:51 +00002091 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002092
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002093 // We need to build the initializer AST according to order of construction
2094 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002095 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002096 if (!ClassDecl)
2097 return true;
2098
Eli Friedman80c30da2009-11-09 19:20:36 +00002099 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002100
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002101 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002102 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002103
2104 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002105 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002106 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002107 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002108 }
2109
Anders Carlsson711f34a2010-04-21 19:52:01 +00002110 // Keep track of the direct virtual bases.
2111 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2112 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2113 E = ClassDecl->bases_end(); I != E; ++I) {
2114 if (I->isVirtual())
2115 DirectVBases.insert(I);
2116 }
2117
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002118 // Push virtual bases before others.
2119 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2120 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2121
Sean Huntcbb67482011-01-08 20:30:50 +00002122 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002123 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2124 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002125 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002126 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002127 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002128 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002129 VBase, IsInheritedVirtualBase,
2130 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002131 HadError = true;
2132 continue;
2133 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002134
John McCallf1860e52010-05-20 23:23:51 +00002135 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002136 }
2137 }
Mike Stump1eb44332009-09-09 15:08:12 +00002138
John McCallf1860e52010-05-20 23:23:51 +00002139 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002140 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2141 E = ClassDecl->bases_end(); Base != E; ++Base) {
2142 // Virtuals are in the virtual base list and already constructed.
2143 if (Base->isVirtual())
2144 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002145
Sean Huntcbb67482011-01-08 20:30:50 +00002146 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002147 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2148 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002149 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00002150 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002151 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002152 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00002153 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002154 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002155 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002156 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00002157
John McCallf1860e52010-05-20 23:23:51 +00002158 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002159 }
2160 }
Mike Stump1eb44332009-09-09 15:08:12 +00002161
John McCallf1860e52010-05-20 23:23:51 +00002162 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002163 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002164 E = ClassDecl->field_end(); Field != E; ++Field) {
2165 if ((*Field)->getType()->isIncompleteArrayType()) {
2166 assert(ClassDecl->hasFlexibleArrayMember() &&
2167 "Incomplete array type is not valid");
2168 continue;
2169 }
John McCallf1860e52010-05-20 23:23:51 +00002170 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002171 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002172 }
Mike Stump1eb44332009-09-09 15:08:12 +00002173
John McCallf1860e52010-05-20 23:23:51 +00002174 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002175 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002176 Constructor->setNumCtorInitializers(NumInitializers);
2177 CXXCtorInitializer **baseOrMemberInitializers =
2178 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00002179 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00002180 NumInitializers * sizeof(CXXCtorInitializer*));
2181 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00002182
John McCallef027fe2010-03-16 21:39:52 +00002183 // Constructors implicitly reference the base and member
2184 // destructors.
2185 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
2186 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002187 }
Eli Friedman80c30da2009-11-09 19:20:36 +00002188
2189 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002190}
2191
Eli Friedman6347f422009-07-21 19:28:10 +00002192static void *GetKeyForTopLevelField(FieldDecl *Field) {
2193 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00002194 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00002195 if (RT->getDecl()->isAnonymousStructOrUnion())
2196 return static_cast<void *>(RT->getDecl());
2197 }
2198 return static_cast<void *>(Field);
2199}
2200
Anders Carlssonea356fb2010-04-02 05:42:15 +00002201static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00002202 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00002203}
2204
Anders Carlssonea356fb2010-04-02 05:42:15 +00002205static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00002206 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002207 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00002208 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00002209
Eli Friedman6347f422009-07-21 19:28:10 +00002210 // For fields injected into the class via declaration of an anonymous union,
2211 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00002212 FieldDecl *Field = Member->getAnyMember();
2213
John McCall3c3ccdb2010-04-10 09:28:51 +00002214 // If the field is a member of an anonymous struct or union, our key
2215 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00002216 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00002217 if (RD->isAnonymousStructOrUnion()) {
2218 while (true) {
2219 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
2220 if (Parent->isAnonymousStructOrUnion())
2221 RD = Parent;
2222 else
2223 break;
2224 }
2225
Anders Carlssonee11b2d2010-03-30 16:19:37 +00002226 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00002227 }
Mike Stump1eb44332009-09-09 15:08:12 +00002228
Anders Carlsson8f1a2402010-03-30 15:39:27 +00002229 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00002230}
2231
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002232static void
2233DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00002234 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00002235 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00002236 unsigned NumInits) {
2237 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002238 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002239
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002240 // Don't check initializers order unless the warning is enabled at the
2241 // location of at least one initializer.
2242 bool ShouldCheckOrder = false;
2243 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00002244 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002245 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
2246 Init->getSourceLocation())
2247 != Diagnostic::Ignored) {
2248 ShouldCheckOrder = true;
2249 break;
2250 }
2251 }
2252 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002253 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002254
John McCalld6ca8da2010-04-10 07:37:23 +00002255 // Build the list of bases and members in the order that they'll
2256 // actually be initialized. The explicit initializers should be in
2257 // this same order but may be missing things.
2258 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00002259
Anders Carlsson071d6102010-04-02 03:38:04 +00002260 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2261
John McCalld6ca8da2010-04-10 07:37:23 +00002262 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002263 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002264 ClassDecl->vbases_begin(),
2265 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00002266 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00002267
John McCalld6ca8da2010-04-10 07:37:23 +00002268 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002269 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002270 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002271 if (Base->isVirtual())
2272 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002273 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002274 }
Mike Stump1eb44332009-09-09 15:08:12 +00002275
John McCalld6ca8da2010-04-10 07:37:23 +00002276 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002277 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2278 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002279 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002280
John McCalld6ca8da2010-04-10 07:37:23 +00002281 unsigned NumIdealInits = IdealInitKeys.size();
2282 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002283
Sean Huntcbb67482011-01-08 20:30:50 +00002284 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00002285 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00002286 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00002287 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00002288
2289 // Scan forward to try to find this initializer in the idealized
2290 // initializers list.
2291 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2292 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002293 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002294
2295 // If we didn't find this initializer, it must be because we
2296 // scanned past it on a previous iteration. That can only
2297 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002298 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002299 Sema::SemaDiagnosticBuilder D =
2300 SemaRef.Diag(PrevInit->getSourceLocation(),
2301 diag::warn_initializer_out_of_order);
2302
Francois Pichet00eb3f92010-12-04 09:14:42 +00002303 if (PrevInit->isAnyMemberInitializer())
2304 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00002305 else
2306 D << 1 << PrevInit->getBaseClassInfo()->getType();
2307
Francois Pichet00eb3f92010-12-04 09:14:42 +00002308 if (Init->isAnyMemberInitializer())
2309 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00002310 else
2311 D << 1 << Init->getBaseClassInfo()->getType();
2312
2313 // Move back to the initializer's location in the ideal list.
2314 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2315 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002316 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002317
2318 assert(IdealIndex != NumIdealInits &&
2319 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002320 }
John McCalld6ca8da2010-04-10 07:37:23 +00002321
2322 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002323 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002324}
2325
John McCall3c3ccdb2010-04-10 09:28:51 +00002326namespace {
2327bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00002328 CXXCtorInitializer *Init,
2329 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002330 if (!PrevInit) {
2331 PrevInit = Init;
2332 return false;
2333 }
2334
2335 if (FieldDecl *Field = Init->getMember())
2336 S.Diag(Init->getSourceLocation(),
2337 diag::err_multiple_mem_initialization)
2338 << Field->getDeclName()
2339 << Init->getSourceRange();
2340 else {
John McCallf4c73712011-01-19 06:33:43 +00002341 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00002342 assert(BaseClass && "neither field nor base");
2343 S.Diag(Init->getSourceLocation(),
2344 diag::err_multiple_base_initialization)
2345 << QualType(BaseClass, 0)
2346 << Init->getSourceRange();
2347 }
2348 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2349 << 0 << PrevInit->getSourceRange();
2350
2351 return true;
2352}
2353
Sean Huntcbb67482011-01-08 20:30:50 +00002354typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00002355typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2356
2357bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00002358 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00002359 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002360 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00002361 RecordDecl *Parent = Field->getParent();
2362 if (!Parent->isAnonymousStructOrUnion())
2363 return false;
2364
2365 NamedDecl *Child = Field;
2366 do {
2367 if (Parent->isUnion()) {
2368 UnionEntry &En = Unions[Parent];
2369 if (En.first && En.first != Child) {
2370 S.Diag(Init->getSourceLocation(),
2371 diag::err_multiple_mem_union_initialization)
2372 << Field->getDeclName()
2373 << Init->getSourceRange();
2374 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2375 << 0 << En.second->getSourceRange();
2376 return true;
2377 } else if (!En.first) {
2378 En.first = Child;
2379 En.second = Init;
2380 }
2381 }
2382
2383 Child = Parent;
2384 Parent = cast<RecordDecl>(Parent->getDeclContext());
2385 } while (Parent->isAnonymousStructOrUnion());
2386
2387 return false;
2388}
2389}
2390
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002391/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00002392void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002393 SourceLocation ColonLoc,
2394 MemInitTy **meminits, unsigned NumMemInits,
2395 bool AnyErrors) {
2396 if (!ConstructorDecl)
2397 return;
2398
2399 AdjustDeclIfTemplate(ConstructorDecl);
2400
2401 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002402 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002403
2404 if (!Constructor) {
2405 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2406 return;
2407 }
2408
Sean Huntcbb67482011-01-08 20:30:50 +00002409 CXXCtorInitializer **MemInits =
2410 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002411
2412 // Mapping for the duplicate initializers check.
2413 // For member initializers, this is keyed with a FieldDecl*.
2414 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00002415 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002416
2417 // Mapping for the inconsistent anonymous-union initializers check.
2418 RedundantUnionMap MemberUnions;
2419
Anders Carlssonea356fb2010-04-02 05:42:15 +00002420 bool HadError = false;
2421 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002422 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002423
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002424 // Set the source order index.
2425 Init->setSourceOrder(i);
2426
Francois Pichet00eb3f92010-12-04 09:14:42 +00002427 if (Init->isAnyMemberInitializer()) {
2428 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00002429 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2430 CheckRedundantUnionInit(*this, Init, MemberUnions))
2431 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00002432 } else if (Init->isBaseInitializer()) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002433 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2434 if (CheckRedundantInit(*this, Init, Members[Key]))
2435 HadError = true;
Sean Hunt41717662011-02-26 19:13:13 +00002436 } else {
2437 assert(Init->isDelegatingInitializer());
2438 // This must be the only initializer
2439 if (i != 0 || NumMemInits > 1) {
2440 Diag(MemInits[0]->getSourceLocation(),
2441 diag::err_delegating_initializer_alone)
2442 << MemInits[0]->getSourceRange();
2443 HadError = true;
2444 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002445 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002446 }
2447
Anders Carlssonea356fb2010-04-02 05:42:15 +00002448 if (HadError)
2449 return;
2450
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002451 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002452
Sean Huntcbb67482011-01-08 20:30:50 +00002453 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002454}
2455
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002456void
John McCallef027fe2010-03-16 21:39:52 +00002457Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2458 CXXRecordDecl *ClassDecl) {
2459 // Ignore dependent contexts.
2460 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002461 return;
John McCall58e6f342010-03-16 05:22:47 +00002462
2463 // FIXME: all the access-control diagnostics are positioned on the
2464 // field/base declaration. That's probably good; that said, the
2465 // user might reasonably want to know why the destructor is being
2466 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002467
Anders Carlsson9f853df2009-11-17 04:44:12 +00002468 // Non-static data members.
2469 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2470 E = ClassDecl->field_end(); I != E; ++I) {
2471 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002472 if (Field->isInvalidDecl())
2473 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002474 QualType FieldType = Context.getBaseElementType(Field->getType());
2475
2476 const RecordType* RT = FieldType->getAs<RecordType>();
2477 if (!RT)
2478 continue;
2479
2480 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002481 if (FieldClassDecl->isInvalidDecl())
2482 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002483 if (FieldClassDecl->hasTrivialDestructor())
2484 continue;
2485
Douglas Gregordb89f282010-07-01 22:47:18 +00002486 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002487 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00002488 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002489 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002490 << Field->getDeclName()
2491 << FieldType);
2492
John McCallef027fe2010-03-16 21:39:52 +00002493 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002494 }
2495
John McCall58e6f342010-03-16 05:22:47 +00002496 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2497
Anders Carlsson9f853df2009-11-17 04:44:12 +00002498 // Bases.
2499 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2500 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002501 // Bases are always records in a well-formed non-dependent class.
2502 const RecordType *RT = Base->getType()->getAs<RecordType>();
2503
2504 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002505 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002506 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002507
John McCall58e6f342010-03-16 05:22:47 +00002508 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002509 // If our base class is invalid, we probably can't get its dtor anyway.
2510 if (BaseClassDecl->isInvalidDecl())
2511 continue;
2512 // Ignore trivial destructors.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002513 if (BaseClassDecl->hasTrivialDestructor())
2514 continue;
John McCall58e6f342010-03-16 05:22:47 +00002515
Douglas Gregordb89f282010-07-01 22:47:18 +00002516 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002517 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00002518
2519 // FIXME: caret should be on the start of the class name
2520 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002521 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002522 << Base->getType()
2523 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002524
John McCallef027fe2010-03-16 21:39:52 +00002525 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002526 }
2527
2528 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002529 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2530 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002531
2532 // Bases are always records in a well-formed non-dependent class.
2533 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2534
2535 // Ignore direct virtual bases.
2536 if (DirectVirtualBases.count(RT))
2537 continue;
2538
John McCall58e6f342010-03-16 05:22:47 +00002539 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002540 // If our base class is invalid, we probably can't get its dtor anyway.
2541 if (BaseClassDecl->isInvalidDecl())
2542 continue;
2543 // Ignore trivial destructors.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002544 if (BaseClassDecl->hasTrivialDestructor())
2545 continue;
John McCall58e6f342010-03-16 05:22:47 +00002546
Douglas Gregordb89f282010-07-01 22:47:18 +00002547 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay3334b0b2011-03-28 01:39:13 +00002548 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall58e6f342010-03-16 05:22:47 +00002549 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002550 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002551 << VBase->getType());
2552
John McCallef027fe2010-03-16 21:39:52 +00002553 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002554 }
2555}
2556
John McCalld226f652010-08-21 09:40:31 +00002557void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002558 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002559 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002560
Mike Stump1eb44332009-09-09 15:08:12 +00002561 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002562 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00002563 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002564}
2565
Mike Stump1eb44332009-09-09 15:08:12 +00002566bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00002567 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002568 if (SelID == -1)
John McCall94c3b562010-08-18 09:41:07 +00002569 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002570 else
John McCall94c3b562010-08-18 09:41:07 +00002571 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump1eb44332009-09-09 15:08:12 +00002572}
2573
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002574bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00002575 const PartialDiagnostic &PD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002576 if (!getLangOptions().CPlusPlus)
2577 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Anders Carlsson11f21a02009-03-23 19:10:31 +00002579 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall94c3b562010-08-18 09:41:07 +00002580 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump1eb44332009-09-09 15:08:12 +00002581
Ted Kremenek6217b802009-07-29 21:53:49 +00002582 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002583 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002584 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002585 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002586
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002587 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall94c3b562010-08-18 09:41:07 +00002588 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002589 }
Mike Stump1eb44332009-09-09 15:08:12 +00002590
Ted Kremenek6217b802009-07-29 21:53:49 +00002591 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002592 if (!RT)
2593 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002594
John McCall86ff3082010-02-04 22:26:26 +00002595 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002596
John McCall94c3b562010-08-18 09:41:07 +00002597 // We can't answer whether something is abstract until it has a
2598 // definition. If it's currently being defined, we'll walk back
2599 // over all the declarations when we have a full definition.
2600 const CXXRecordDecl *Def = RD->getDefinition();
2601 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00002602 return false;
2603
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002604 if (!RD->isAbstract())
2605 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002606
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002607 Diag(Loc, PD) << RD->getDeclName();
John McCall94c3b562010-08-18 09:41:07 +00002608 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002609
John McCall94c3b562010-08-18 09:41:07 +00002610 return true;
2611}
2612
2613void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2614 // Check if we've already emitted the list of pure virtual functions
2615 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002616 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00002617 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002618
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002619 CXXFinalOverriderMap FinalOverriders;
2620 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002621
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002622 // Keep a set of seen pure methods so we won't diagnose the same method
2623 // more than once.
2624 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2625
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002626 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2627 MEnd = FinalOverriders.end();
2628 M != MEnd;
2629 ++M) {
2630 for (OverridingMethods::iterator SO = M->second.begin(),
2631 SOEnd = M->second.end();
2632 SO != SOEnd; ++SO) {
2633 // C++ [class.abstract]p4:
2634 // A class is abstract if it contains or inherits at least one
2635 // pure virtual function for which the final overrider is pure
2636 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002637
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002638 //
2639 if (SO->second.size() != 1)
2640 continue;
2641
2642 if (!SO->second.front().Method->isPure())
2643 continue;
2644
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002645 if (!SeenPureMethods.insert(SO->second.front().Method))
2646 continue;
2647
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002648 Diag(SO->second.front().Method->getLocation(),
2649 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00002650 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002651 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002652 }
2653
2654 if (!PureVirtualClassDiagSet)
2655 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2656 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002657}
2658
Anders Carlsson8211eff2009-03-24 01:19:16 +00002659namespace {
John McCall94c3b562010-08-18 09:41:07 +00002660struct AbstractUsageInfo {
2661 Sema &S;
2662 CXXRecordDecl *Record;
2663 CanQualType AbstractType;
2664 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00002665
John McCall94c3b562010-08-18 09:41:07 +00002666 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2667 : S(S), Record(Record),
2668 AbstractType(S.Context.getCanonicalType(
2669 S.Context.getTypeDeclType(Record))),
2670 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00002671
John McCall94c3b562010-08-18 09:41:07 +00002672 void DiagnoseAbstractType() {
2673 if (Invalid) return;
2674 S.DiagnoseAbstractType(Record);
2675 Invalid = true;
2676 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00002677
John McCall94c3b562010-08-18 09:41:07 +00002678 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2679};
2680
2681struct CheckAbstractUsage {
2682 AbstractUsageInfo &Info;
2683 const NamedDecl *Ctx;
2684
2685 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2686 : Info(Info), Ctx(Ctx) {}
2687
2688 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2689 switch (TL.getTypeLocClass()) {
2690#define ABSTRACT_TYPELOC(CLASS, PARENT)
2691#define TYPELOC(CLASS, PARENT) \
2692 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2693#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00002694 }
John McCall94c3b562010-08-18 09:41:07 +00002695 }
Mike Stump1eb44332009-09-09 15:08:12 +00002696
John McCall94c3b562010-08-18 09:41:07 +00002697 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2698 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2699 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor70191862011-02-22 23:21:06 +00002700 if (!TL.getArg(I))
2701 continue;
2702
John McCall94c3b562010-08-18 09:41:07 +00002703 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2704 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002705 }
John McCall94c3b562010-08-18 09:41:07 +00002706 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002707
John McCall94c3b562010-08-18 09:41:07 +00002708 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2709 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2710 }
Mike Stump1eb44332009-09-09 15:08:12 +00002711
John McCall94c3b562010-08-18 09:41:07 +00002712 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2713 // Visit the type parameters from a permissive context.
2714 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2715 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2716 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2717 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2718 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2719 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00002720 }
John McCall94c3b562010-08-18 09:41:07 +00002721 }
Mike Stump1eb44332009-09-09 15:08:12 +00002722
John McCall94c3b562010-08-18 09:41:07 +00002723 // Visit pointee types from a permissive context.
2724#define CheckPolymorphic(Type) \
2725 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2726 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2727 }
2728 CheckPolymorphic(PointerTypeLoc)
2729 CheckPolymorphic(ReferenceTypeLoc)
2730 CheckPolymorphic(MemberPointerTypeLoc)
2731 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00002732
John McCall94c3b562010-08-18 09:41:07 +00002733 /// Handle all the types we haven't given a more specific
2734 /// implementation for above.
2735 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2736 // Every other kind of type that we haven't called out already
2737 // that has an inner type is either (1) sugar or (2) contains that
2738 // inner type in some way as a subobject.
2739 if (TypeLoc Next = TL.getNextTypeLoc())
2740 return Visit(Next, Sel);
2741
2742 // If there's no inner type and we're in a permissive context,
2743 // don't diagnose.
2744 if (Sel == Sema::AbstractNone) return;
2745
2746 // Check whether the type matches the abstract type.
2747 QualType T = TL.getType();
2748 if (T->isArrayType()) {
2749 Sel = Sema::AbstractArrayType;
2750 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002751 }
John McCall94c3b562010-08-18 09:41:07 +00002752 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2753 if (CT != Info.AbstractType) return;
2754
2755 // It matched; do some magic.
2756 if (Sel == Sema::AbstractArrayType) {
2757 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2758 << T << TL.getSourceRange();
2759 } else {
2760 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2761 << Sel << T << TL.getSourceRange();
2762 }
2763 Info.DiagnoseAbstractType();
2764 }
2765};
2766
2767void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2768 Sema::AbstractDiagSelID Sel) {
2769 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2770}
2771
2772}
2773
2774/// Check for invalid uses of an abstract type in a method declaration.
2775static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2776 CXXMethodDecl *MD) {
2777 // No need to do the check on definitions, which require that
2778 // the return/param types be complete.
2779 if (MD->isThisDeclarationADefinition())
2780 return;
2781
2782 // For safety's sake, just ignore it if we don't have type source
2783 // information. This should never happen for non-implicit methods,
2784 // but...
2785 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2786 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2787}
2788
2789/// Check for invalid uses of an abstract type within a class definition.
2790static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2791 CXXRecordDecl *RD) {
2792 for (CXXRecordDecl::decl_iterator
2793 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2794 Decl *D = *I;
2795 if (D->isImplicit()) continue;
2796
2797 // Methods and method templates.
2798 if (isa<CXXMethodDecl>(D)) {
2799 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2800 } else if (isa<FunctionTemplateDecl>(D)) {
2801 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2802 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2803
2804 // Fields and static variables.
2805 } else if (isa<FieldDecl>(D)) {
2806 FieldDecl *FD = cast<FieldDecl>(D);
2807 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2808 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2809 } else if (isa<VarDecl>(D)) {
2810 VarDecl *VD = cast<VarDecl>(D);
2811 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2812 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2813
2814 // Nested classes and class templates.
2815 } else if (isa<CXXRecordDecl>(D)) {
2816 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2817 } else if (isa<ClassTemplateDecl>(D)) {
2818 CheckAbstractClassUsage(Info,
2819 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2820 }
2821 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002822}
2823
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002824/// \brief Perform semantic checks on a class definition that has been
2825/// completing, introducing implicitly-declared members, checking for
2826/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002827void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00002828 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002829 return;
2830
John McCall94c3b562010-08-18 09:41:07 +00002831 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2832 AbstractUsageInfo Info(*this, Record);
2833 CheckAbstractClassUsage(Info, Record);
2834 }
Douglas Gregor325e5932010-04-15 00:00:53 +00002835
2836 // If this is not an aggregate type and has no user-declared constructor,
2837 // complain about any non-static data members of reference or const scalar
2838 // type, since they will never get initializers.
2839 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2840 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2841 bool Complained = false;
2842 for (RecordDecl::field_iterator F = Record->field_begin(),
2843 FEnd = Record->field_end();
2844 F != FEnd; ++F) {
2845 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002846 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002847 if (!Complained) {
2848 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2849 << Record->getTagKind() << Record;
2850 Complained = true;
2851 }
2852
2853 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2854 << F->getType()->isReferenceType()
2855 << F->getDeclName();
2856 }
2857 }
2858 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002859
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00002860 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002861 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00002862
2863 if (Record->getIdentifier()) {
2864 // C++ [class.mem]p13:
2865 // If T is the name of a class, then each of the following shall have a
2866 // name different from T:
2867 // - every member of every anonymous union that is a member of class T.
2868 //
2869 // C++ [class.mem]p14:
2870 // In addition, if class T has a user-declared constructor (12.1), every
2871 // non-static data member of class T shall have a name different from T.
2872 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00002873 R.first != R.second; ++R.first) {
2874 NamedDecl *D = *R.first;
2875 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
2876 isa<IndirectFieldDecl>(D)) {
2877 Diag(D->getLocation(), diag::err_member_name_of_class)
2878 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00002879 break;
2880 }
Francois Pichet87c2e122010-11-21 06:08:52 +00002881 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00002882 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002883
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00002884 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00002885 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002886 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00002887 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002888 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
2889 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
2890 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002891
2892 // See if a method overloads virtual methods in a base
2893 /// class without overriding any.
2894 if (!Record->isDependentType()) {
2895 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
2896 MEnd = Record->method_end();
2897 M != MEnd; ++M) {
Argyrios Kyrtzidis0266aa32011-03-03 22:58:57 +00002898 if (!(*M)->isStatic())
2899 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002900 }
2901 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00002902
2903 // Declare inherited constructors. We do this eagerly here because:
2904 // - The standard requires an eager diagnostic for conflicting inherited
2905 // constructors from different classes.
2906 // - The lazy declaration of the other implicit constructors is so as to not
2907 // waste space and performance on classes that are not meant to be
2908 // instantiated (e.g. meta-functions). This doesn't apply to classes that
2909 // have inherited constructors.
Sebastian Redlcaa35e42011-03-12 13:44:32 +00002910 DeclareInheritedConstructors(Record);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002911}
2912
2913/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramerc54061a2011-03-04 13:12:48 +00002914namespace {
2915 struct FindHiddenVirtualMethodData {
2916 Sema *S;
2917 CXXMethodDecl *Method;
2918 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
2919 llvm::SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
2920 };
2921}
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002922
2923/// \brief Member lookup function that determines whether a given C++
2924/// method overloads virtual methods in a base class without overriding any,
2925/// to be used with CXXRecordDecl::lookupInBases().
2926static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
2927 CXXBasePath &Path,
2928 void *UserData) {
2929 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
2930
2931 FindHiddenVirtualMethodData &Data
2932 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
2933
2934 DeclarationName Name = Data.Method->getDeclName();
2935 assert(Name.getNameKind() == DeclarationName::Identifier);
2936
2937 bool foundSameNameMethod = false;
2938 llvm::SmallVector<CXXMethodDecl *, 8> overloadedMethods;
2939 for (Path.Decls = BaseRecord->lookup(Name);
2940 Path.Decls.first != Path.Decls.second;
2941 ++Path.Decls.first) {
2942 NamedDecl *D = *Path.Decls.first;
2943 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002944 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002945 foundSameNameMethod = true;
2946 // Interested only in hidden virtual methods.
2947 if (!MD->isVirtual())
2948 continue;
2949 // If the method we are checking overrides a method from its base
2950 // don't warn about the other overloaded methods.
2951 if (!Data.S->IsOverload(Data.Method, MD, false))
2952 return true;
2953 // Collect the overload only if its hidden.
2954 if (!Data.OverridenAndUsingBaseMethods.count(MD))
2955 overloadedMethods.push_back(MD);
2956 }
2957 }
2958
2959 if (foundSameNameMethod)
2960 Data.OverloadedMethods.append(overloadedMethods.begin(),
2961 overloadedMethods.end());
2962 return foundSameNameMethod;
2963}
2964
2965/// \brief See if a method overloads virtual methods in a base class without
2966/// overriding any.
2967void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
2968 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
2969 MD->getLocation()) == Diagnostic::Ignored)
2970 return;
2971 if (MD->getDeclName().getNameKind() != DeclarationName::Identifier)
2972 return;
2973
2974 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
2975 /*bool RecordPaths=*/false,
2976 /*bool DetectVirtual=*/false);
2977 FindHiddenVirtualMethodData Data;
2978 Data.Method = MD;
2979 Data.S = this;
2980
2981 // Keep the base methods that were overriden or introduced in the subclass
2982 // by 'using' in a set. A base method not in this set is hidden.
2983 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
2984 res.first != res.second; ++res.first) {
2985 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
2986 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
2987 E = MD->end_overridden_methods();
2988 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002989 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002990 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
2991 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002992 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002993 }
2994
2995 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
2996 !Data.OverloadedMethods.empty()) {
2997 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
2998 << MD << (Data.OverloadedMethods.size() > 1);
2999
3000 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
3001 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
3002 Diag(overloadedMD->getLocation(),
3003 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
3004 }
3005 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003006}
3007
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003008void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00003009 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003010 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00003011 SourceLocation RBrac,
3012 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00003013 if (!TagDecl)
3014 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003015
Douglas Gregor42af25f2009-05-11 19:58:34 +00003016 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00003017
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003018 ActOnFields(S, RLoc, TagDecl,
John McCalld226f652010-08-21 09:40:31 +00003019 // strict aliasing violation!
3020 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00003021 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00003022
Douglas Gregor23c94db2010-07-02 17:43:08 +00003023 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00003024 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00003025}
3026
Douglas Gregord92ec472010-07-01 05:10:53 +00003027namespace {
3028 /// \brief Helper class that collects exception specifications for
3029 /// implicitly-declared special member functions.
3030 class ImplicitExceptionSpecification {
3031 ASTContext &Context;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003032 // We order exception specifications thus:
3033 // noexcept is the most restrictive, but is only used in C++0x.
3034 // throw() comes next.
3035 // Then a throw(collected exceptions)
3036 // Finally no specification.
3037 // throw(...) is used instead if any called function uses it.
3038 ExceptionSpecificationType ComputedEST;
Douglas Gregord92ec472010-07-01 05:10:53 +00003039 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
3040 llvm::SmallVector<QualType, 4> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003041
3042 void ClearExceptions() {
3043 ExceptionsSeen.clear();
3044 Exceptions.clear();
3045 }
3046
Douglas Gregord92ec472010-07-01 05:10:53 +00003047 public:
3048 explicit ImplicitExceptionSpecification(ASTContext &Context)
Sebastian Redl60618fa2011-03-12 11:50:43 +00003049 : Context(Context), ComputedEST(EST_BasicNoexcept) {
3050 if (!Context.getLangOptions().CPlusPlus0x)
3051 ComputedEST = EST_DynamicNone;
Douglas Gregord92ec472010-07-01 05:10:53 +00003052 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00003053
3054 /// \brief Get the computed exception specification type.
3055 ExceptionSpecificationType getExceptionSpecType() const {
3056 assert(ComputedEST != EST_ComputedNoexcept &&
3057 "noexcept(expr) should not be a possible result");
3058 return ComputedEST;
Douglas Gregord92ec472010-07-01 05:10:53 +00003059 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00003060
Douglas Gregord92ec472010-07-01 05:10:53 +00003061 /// \brief The number of exceptions in the exception specification.
3062 unsigned size() const { return Exceptions.size(); }
Sebastian Redl60618fa2011-03-12 11:50:43 +00003063
Douglas Gregord92ec472010-07-01 05:10:53 +00003064 /// \brief The set of exceptions in the exception specification.
3065 const QualType *data() const { return Exceptions.data(); }
Sebastian Redl60618fa2011-03-12 11:50:43 +00003066
3067 /// \brief Integrate another called method into the collected data.
Douglas Gregord92ec472010-07-01 05:10:53 +00003068 void CalledDecl(CXXMethodDecl *Method) {
Sebastian Redl60618fa2011-03-12 11:50:43 +00003069 // If we have an MSAny spec already, don't bother.
3070 if (!Method || ComputedEST == EST_MSAny)
Douglas Gregord92ec472010-07-01 05:10:53 +00003071 return;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003072
Douglas Gregord92ec472010-07-01 05:10:53 +00003073 const FunctionProtoType *Proto
3074 = Method->getType()->getAs<FunctionProtoType>();
Sebastian Redl60618fa2011-03-12 11:50:43 +00003075
3076 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
3077
Douglas Gregord92ec472010-07-01 05:10:53 +00003078 // If this function can throw any exceptions, make a note of that.
Sebastian Redl60618fa2011-03-12 11:50:43 +00003079 if (EST == EST_MSAny || EST == EST_None) {
3080 ClearExceptions();
3081 ComputedEST = EST;
Douglas Gregord92ec472010-07-01 05:10:53 +00003082 return;
3083 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00003084
3085 // If this function has a basic noexcept, it doesn't affect the outcome.
3086 if (EST == EST_BasicNoexcept)
3087 return;
3088
3089 // If we have a throw-all spec at this point, ignore the function.
3090 if (ComputedEST == EST_None)
3091 return;
3092
3093 // If we're still at noexcept(true) and there's a nothrow() callee,
3094 // change to that specification.
3095 if (EST == EST_DynamicNone) {
3096 if (ComputedEST == EST_BasicNoexcept)
3097 ComputedEST = EST_DynamicNone;
3098 return;
3099 }
3100
3101 // Check out noexcept specs.
3102 if (EST == EST_ComputedNoexcept) {
Sebastian Redl8026f6d2011-03-13 17:09:40 +00003103 FunctionProtoType::NoexceptResult NR = Proto->getNoexceptSpec(Context);
Sebastian Redl60618fa2011-03-12 11:50:43 +00003104 assert(NR != FunctionProtoType::NR_NoNoexcept &&
3105 "Must have noexcept result for EST_ComputedNoexcept.");
3106 assert(NR != FunctionProtoType::NR_Dependent &&
3107 "Should not generate implicit declarations for dependent cases, "
3108 "and don't know how to handle them anyway.");
3109
3110 // noexcept(false) -> no spec on the new function
3111 if (NR == FunctionProtoType::NR_Throw) {
3112 ClearExceptions();
3113 ComputedEST = EST_None;
3114 }
3115 // noexcept(true) won't change anything either.
3116 return;
3117 }
3118
3119 assert(EST == EST_Dynamic && "EST case not considered earlier.");
3120 assert(ComputedEST != EST_None &&
3121 "Shouldn't collect exceptions when throw-all is guaranteed.");
3122 ComputedEST = EST_Dynamic;
Douglas Gregord92ec472010-07-01 05:10:53 +00003123 // Record the exceptions in this function's exception specification.
3124 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
3125 EEnd = Proto->exception_end();
Sebastian Redl60618fa2011-03-12 11:50:43 +00003126 E != EEnd; ++E)
Douglas Gregord92ec472010-07-01 05:10:53 +00003127 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
3128 Exceptions.push_back(*E);
3129 }
3130 };
3131}
3132
3133
Douglas Gregor396b7cd2008-11-03 17:51:48 +00003134/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
3135/// special functions, such as the default constructor, copy
3136/// constructor, or destructor, to the given C++ class (C++
3137/// [special]p1). This routine can only be executed just before the
3138/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00003139void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00003140 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00003141 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00003142
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00003143 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00003144 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00003145
Douglas Gregora376d102010-07-02 21:50:04 +00003146 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
3147 ++ASTContext::NumImplicitCopyAssignmentOperators;
3148
3149 // If we have a dynamic class, then the copy assignment operator may be
3150 // virtual, so we have to declare it immediately. This ensures that, e.g.,
3151 // it shows up in the right place in the vtable and that we diagnose
3152 // problems with the implicit exception specification.
3153 if (ClassDecl->isDynamicClass())
3154 DeclareImplicitCopyAssignment(ClassDecl);
3155 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00003156
Douglas Gregor4923aa22010-07-02 20:37:36 +00003157 if (!ClassDecl->hasUserDeclaredDestructor()) {
3158 ++ASTContext::NumImplicitDestructors;
3159
3160 // If we have a dynamic class, then the destructor may be virtual, so we
3161 // have to declare the destructor immediately. This ensures that, e.g., it
3162 // shows up in the right place in the vtable and that we diagnose problems
3163 // with the implicit exception specification.
3164 if (ClassDecl->isDynamicClass())
3165 DeclareImplicitDestructor(ClassDecl);
3166 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00003167}
3168
John McCalld226f652010-08-21 09:40:31 +00003169void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00003170 if (!D)
3171 return;
3172
3173 TemplateParameterList *Params = 0;
3174 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
3175 Params = Template->getTemplateParameters();
3176 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3177 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
3178 Params = PartialSpec->getTemplateParameters();
3179 else
Douglas Gregor6569d682009-05-27 23:11:45 +00003180 return;
3181
Douglas Gregor6569d682009-05-27 23:11:45 +00003182 for (TemplateParameterList::iterator Param = Params->begin(),
3183 ParamEnd = Params->end();
3184 Param != ParamEnd; ++Param) {
3185 NamedDecl *Named = cast<NamedDecl>(*Param);
3186 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00003187 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00003188 IdResolver.AddDecl(Named);
3189 }
3190 }
3191}
3192
John McCalld226f652010-08-21 09:40:31 +00003193void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00003194 if (!RecordD) return;
3195 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00003196 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00003197 PushDeclContext(S, Record);
3198}
3199
John McCalld226f652010-08-21 09:40:31 +00003200void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00003201 if (!RecordD) return;
3202 PopDeclContext();
3203}
3204
Douglas Gregor72b505b2008-12-16 21:30:33 +00003205/// ActOnStartDelayedCXXMethodDeclaration - We have completed
3206/// parsing a top-level (non-nested) C++ class, and we are now
3207/// parsing those parts of the given Method declaration that could
3208/// not be parsed earlier (C++ [class.mem]p2), such as default
3209/// arguments. This action should enter the scope of the given
3210/// Method declaration as if we had just parsed the qualified method
3211/// name. However, it should not bring the parameters into scope;
3212/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00003213void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003214}
3215
3216/// ActOnDelayedCXXMethodParameter - We've already started a delayed
3217/// C++ method declaration. We're (re-)introducing the given
3218/// function parameter into scope for use in parsing later parts of
3219/// the method declaration. For example, we could see an
3220/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00003221void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00003222 if (!ParamD)
3223 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003224
John McCalld226f652010-08-21 09:40:31 +00003225 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00003226
3227 // If this parameter has an unparsed default argument, clear it out
3228 // to make way for the parsed default argument.
3229 if (Param->hasUnparsedDefaultArg())
3230 Param->setDefaultArg(0);
3231
John McCalld226f652010-08-21 09:40:31 +00003232 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003233 if (Param->getDeclName())
3234 IdResolver.AddDecl(Param);
3235}
3236
3237/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
3238/// processing the delayed method declaration for Method. The method
3239/// declaration is now considered finished. There may be a separate
3240/// ActOnStartOfFunctionDef action later (not necessarily
3241/// immediately!) for this method, if it was also defined inside the
3242/// class body.
John McCalld226f652010-08-21 09:40:31 +00003243void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00003244 if (!MethodD)
3245 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003246
Douglas Gregorefd5bda2009-08-24 11:57:43 +00003247 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00003248
John McCalld226f652010-08-21 09:40:31 +00003249 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003250
3251 // Now that we have our default arguments, check the constructor
3252 // again. It could produce additional diagnostics or affect whether
3253 // the class has implicitly-declared destructors, among other
3254 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00003255 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
3256 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003257
3258 // Check the default arguments, which we may have added.
3259 if (!Method->isInvalidDecl())
3260 CheckCXXDefaultArguments(Method);
3261}
3262
Douglas Gregor42a552f2008-11-05 20:51:48 +00003263/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00003264/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00003265/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00003266/// emit diagnostics and set the invalid bit to true. In any case, the type
3267/// will be updated to reflect a well-formed type for the constructor and
3268/// returned.
3269QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00003270 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003271 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003272
3273 // C++ [class.ctor]p3:
3274 // A constructor shall not be virtual (10.3) or static (9.4). A
3275 // constructor can be invoked for a const, volatile or const
3276 // volatile object. A constructor shall not be declared const,
3277 // volatile, or const volatile (9.3.2).
3278 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00003279 if (!D.isInvalidType())
3280 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3281 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
3282 << SourceRange(D.getIdentifierLoc());
3283 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003284 }
John McCalld931b082010-08-26 03:08:43 +00003285 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00003286 if (!D.isInvalidType())
3287 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3288 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3289 << SourceRange(D.getIdentifierLoc());
3290 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00003291 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00003292 }
Mike Stump1eb44332009-09-09 15:08:12 +00003293
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003294 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00003295 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00003296 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003297 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3298 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003299 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003300 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3301 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003302 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003303 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3304 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00003305 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003306 }
Mike Stump1eb44332009-09-09 15:08:12 +00003307
Douglas Gregorc938c162011-01-26 05:01:58 +00003308 // C++0x [class.ctor]p4:
3309 // A constructor shall not be declared with a ref-qualifier.
3310 if (FTI.hasRefQualifier()) {
3311 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
3312 << FTI.RefQualifierIsLValueRef
3313 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3314 D.setInvalidType();
3315 }
3316
Douglas Gregor42a552f2008-11-05 20:51:48 +00003317 // Rebuild the function type "R" without any type qualifiers (in
3318 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00003319 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00003320 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00003321 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
3322 return R;
3323
3324 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3325 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00003326 EPI.RefQualifier = RQ_None;
3327
Chris Lattner65401802009-04-25 08:28:21 +00003328 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00003329 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00003330}
3331
Douglas Gregor72b505b2008-12-16 21:30:33 +00003332/// CheckConstructor - Checks a fully-formed constructor for
3333/// well-formedness, issuing any diagnostics required. Returns true if
3334/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00003335void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00003336 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00003337 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
3338 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00003339 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00003340
3341 // C++ [class.copy]p3:
3342 // A declaration of a constructor for a class X is ill-formed if
3343 // its first parameter is of type (optionally cv-qualified) X and
3344 // either there are no other parameters or else all other
3345 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00003346 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00003347 ((Constructor->getNumParams() == 1) ||
3348 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00003349 Constructor->getParamDecl(1)->hasDefaultArg())) &&
3350 Constructor->getTemplateSpecializationKind()
3351 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003352 QualType ParamType = Constructor->getParamDecl(0)->getType();
3353 QualType ClassTy = Context.getTagDeclType(ClassDecl);
3354 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00003355 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00003356 const char *ConstRef
3357 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
3358 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00003359 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00003360 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00003361
3362 // FIXME: Rather that making the constructor invalid, we should endeavor
3363 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00003364 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00003365 }
3366 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00003367}
3368
John McCall15442822010-08-04 01:04:25 +00003369/// CheckDestructor - Checks a fully-formed destructor definition for
3370/// well-formedness, issuing any diagnostics required. Returns true
3371/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003372bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00003373 CXXRecordDecl *RD = Destructor->getParent();
3374
3375 if (Destructor->isVirtual()) {
3376 SourceLocation Loc;
3377
3378 if (!Destructor->isImplicit())
3379 Loc = Destructor->getLocation();
3380 else
3381 Loc = RD->getLocation();
3382
3383 // If we have a virtual destructor, look up the deallocation function
3384 FunctionDecl *OperatorDelete = 0;
3385 DeclarationName Name =
3386 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003387 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00003388 return true;
John McCall5efd91a2010-07-03 18:33:00 +00003389
3390 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00003391
3392 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00003393 }
Anders Carlsson37909802009-11-30 21:24:50 +00003394
3395 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00003396}
3397
Mike Stump1eb44332009-09-09 15:08:12 +00003398static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003399FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3400 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3401 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00003402 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003403}
3404
Douglas Gregor42a552f2008-11-05 20:51:48 +00003405/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3406/// the well-formednes of the destructor declarator @p D with type @p
3407/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00003408/// emit diagnostics and set the declarator to invalid. Even if this happens,
3409/// will be updated to reflect a well-formed type for the destructor and
3410/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00003411QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00003412 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003413 // C++ [class.dtor]p1:
3414 // [...] A typedef-name that names a class is a class-name
3415 // (7.1.3); however, a typedef-name that names a class shall not
3416 // be used as the identifier in the declarator for a destructor
3417 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003418 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smith162e1c12011-04-15 14:24:37 +00003419 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner65401802009-04-25 08:28:21 +00003420 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smith162e1c12011-04-15 14:24:37 +00003421 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003422
3423 // C++ [class.dtor]p2:
3424 // A destructor is used to destroy objects of its class type. A
3425 // destructor takes no parameters, and no return type can be
3426 // specified for it (not even void). The address of a destructor
3427 // shall not be taken. A destructor shall not be static. A
3428 // destructor can be invoked for a const, volatile or const
3429 // volatile object. A destructor shall not be declared const,
3430 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00003431 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00003432 if (!D.isInvalidType())
3433 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3434 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00003435 << SourceRange(D.getIdentifierLoc())
3436 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3437
John McCalld931b082010-08-26 03:08:43 +00003438 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00003439 }
Chris Lattner65401802009-04-25 08:28:21 +00003440 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003441 // Destructors don't have return types, but the parser will
3442 // happily parse something like:
3443 //
3444 // class X {
3445 // float ~X();
3446 // };
3447 //
3448 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003449 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3450 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3451 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003452 }
Mike Stump1eb44332009-09-09 15:08:12 +00003453
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003454 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00003455 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00003456 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003457 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3458 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003459 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003460 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3461 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003462 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003463 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3464 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00003465 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003466 }
3467
Douglas Gregorc938c162011-01-26 05:01:58 +00003468 // C++0x [class.dtor]p2:
3469 // A destructor shall not be declared with a ref-qualifier.
3470 if (FTI.hasRefQualifier()) {
3471 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
3472 << FTI.RefQualifierIsLValueRef
3473 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3474 D.setInvalidType();
3475 }
3476
Douglas Gregor42a552f2008-11-05 20:51:48 +00003477 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003478 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003479 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3480
3481 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00003482 FTI.freeArgs();
3483 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003484 }
3485
Mike Stump1eb44332009-09-09 15:08:12 +00003486 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00003487 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003488 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00003489 D.setInvalidType();
3490 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00003491
3492 // Rebuild the function type "R" without any type qualifiers or
3493 // parameters (in case any of the errors above fired) and with
3494 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00003495 // types.
John McCalle23cf432010-12-14 08:05:40 +00003496 if (!D.isInvalidType())
3497 return R;
3498
Douglas Gregord92ec472010-07-01 05:10:53 +00003499 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00003500 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3501 EPI.Variadic = false;
3502 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00003503 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00003504 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00003505}
3506
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003507/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3508/// well-formednes of the conversion function declarator @p D with
3509/// type @p R. If there are any errors in the declarator, this routine
3510/// will emit diagnostics and return true. Otherwise, it will return
3511/// false. Either way, the type @p R will be updated to reflect a
3512/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003513void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00003514 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003515 // C++ [class.conv.fct]p1:
3516 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003517 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003518 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00003519 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003520 if (!D.isInvalidType())
3521 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3522 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3523 << SourceRange(D.getIdentifierLoc());
3524 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00003525 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003526 }
John McCalla3f81372010-04-13 00:04:31 +00003527
3528 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3529
Chris Lattner6e475012009-04-25 08:35:12 +00003530 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003531 // Conversion functions don't have return types, but the parser will
3532 // happily parse something like:
3533 //
3534 // class X {
3535 // float operator bool();
3536 // };
3537 //
3538 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003539 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3540 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3541 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003542 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003543 }
3544
John McCalla3f81372010-04-13 00:04:31 +00003545 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3546
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003547 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003548 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003549 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3550
3551 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003552 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003553 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003554 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003555 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003556 D.setInvalidType();
3557 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003558
John McCalla3f81372010-04-13 00:04:31 +00003559 // Diagnose "&operator bool()" and other such nonsense. This
3560 // is actually a gcc extension which we don't support.
3561 if (Proto->getResultType() != ConvType) {
3562 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3563 << Proto->getResultType();
3564 D.setInvalidType();
3565 ConvType = Proto->getResultType();
3566 }
3567
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003568 // C++ [class.conv.fct]p4:
3569 // The conversion-type-id shall not represent a function type nor
3570 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003571 if (ConvType->isArrayType()) {
3572 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3573 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003574 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003575 } else if (ConvType->isFunctionType()) {
3576 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3577 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003578 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003579 }
3580
3581 // Rebuild the function type "R" without any parameters (in case any
3582 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003583 // return type.
John McCalle23cf432010-12-14 08:05:40 +00003584 if (D.isInvalidType())
3585 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003586
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003587 // C++0x explicit conversion operators.
3588 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003589 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003590 diag::warn_explicit_conversion_functions)
3591 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003592}
3593
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003594/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3595/// the declaration of the given C++ conversion function. This routine
3596/// is responsible for recording the conversion function in the C++
3597/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00003598Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003599 assert(Conversion && "Expected to receive a conversion function declaration");
3600
Douglas Gregor9d350972008-12-12 08:25:50 +00003601 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003602
3603 // Make sure we aren't redeclaring the conversion function.
3604 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003605
3606 // C++ [class.conv.fct]p1:
3607 // [...] A conversion function is never used to convert a
3608 // (possibly cv-qualified) object to the (possibly cv-qualified)
3609 // same object type (or a reference to it), to a (possibly
3610 // cv-qualified) base class of that type (or a reference to it),
3611 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003612 // FIXME: Suppress this warning if the conversion function ends up being a
3613 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003614 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003615 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003616 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003617 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00003618 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3619 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00003620 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00003621 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003622 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3623 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003624 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003625 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003626 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003627 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003628 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003629 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003630 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003631 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003632 }
3633
Douglas Gregore80622f2010-09-29 04:25:11 +00003634 if (FunctionTemplateDecl *ConversionTemplate
3635 = Conversion->getDescribedFunctionTemplate())
3636 return ConversionTemplate;
3637
John McCalld226f652010-08-21 09:40:31 +00003638 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003639}
3640
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003641//===----------------------------------------------------------------------===//
3642// Namespace Handling
3643//===----------------------------------------------------------------------===//
3644
John McCallea318642010-08-26 09:15:37 +00003645
3646
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003647/// ActOnStartNamespaceDef - This is called at the start of a namespace
3648/// definition.
John McCalld226f652010-08-21 09:40:31 +00003649Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00003650 SourceLocation InlineLoc,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00003651 SourceLocation NamespaceLoc,
John McCallea318642010-08-26 09:15:37 +00003652 SourceLocation IdentLoc,
3653 IdentifierInfo *II,
3654 SourceLocation LBrace,
3655 AttributeList *AttrList) {
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00003656 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
3657 // For anonymous namespace, take the location of the left brace.
3658 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregor21e09b62010-08-19 20:55:47 +00003659 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00003660 StartLoc, Loc, II);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003661 Namespc->setInline(InlineLoc.isValid());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003662
3663 Scope *DeclRegionScope = NamespcScope->getParent();
3664
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003665 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3666
John McCall90f14502010-12-10 02:59:44 +00003667 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
3668 PushNamespaceVisibilityAttr(Attr);
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003669
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003670 if (II) {
3671 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00003672 // The identifier in an original-namespace-definition shall not
3673 // have been previously defined in the declarative region in
3674 // which the original-namespace-definition appears. The
3675 // identifier in an original-namespace-definition is the name of
3676 // the namespace. Subsequently in that declarative region, it is
3677 // treated as an original-namespace-name.
3678 //
3679 // Since namespace names are unique in their scope, and we don't
3680 // look through using directives, just
3681 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3682 NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
Mike Stump1eb44332009-09-09 15:08:12 +00003683
Douglas Gregor44b43212008-12-11 16:49:14 +00003684 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3685 // This is an extended namespace definition.
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003686 if (Namespc->isInline() != OrigNS->isInline()) {
3687 // inline-ness must match
3688 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3689 << Namespc->isInline();
3690 Diag(OrigNS->getLocation(), diag::note_previous_definition);
3691 Namespc->setInvalidDecl();
3692 // Recover by ignoring the new namespace's inline status.
3693 Namespc->setInline(OrigNS->isInline());
3694 }
3695
Douglas Gregor44b43212008-12-11 16:49:14 +00003696 // Attach this namespace decl to the chain of extended namespace
3697 // definitions.
3698 OrigNS->setNextNamespace(Namespc);
3699 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003700
Mike Stump1eb44332009-09-09 15:08:12 +00003701 // Remove the previous declaration from the scope.
John McCalld226f652010-08-21 09:40:31 +00003702 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003703 IdResolver.RemoveDecl(OrigNS);
John McCalld226f652010-08-21 09:40:31 +00003704 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003705 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003706 } else if (PrevDecl) {
3707 // This is an invalid name redefinition.
3708 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3709 << Namespc->getDeclName();
3710 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3711 Namespc->setInvalidDecl();
3712 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003713 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00003714 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003715 // This is the first "real" definition of the namespace "std", so update
3716 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003717 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003718 // We had already defined a dummy namespace "std". Link this new
3719 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003720 StdNS->setNextNamespace(Namespc);
3721 StdNS->setLocation(IdentLoc);
3722 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003723 }
3724
3725 // Make our StdNamespace cache point at the first real definition of the
3726 // "std" namespace.
3727 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003728 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003729
3730 PushOnScopeChains(Namespc, DeclRegionScope);
3731 } else {
John McCall9aeed322009-10-01 00:25:31 +00003732 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003733 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003734
3735 // Link the anonymous namespace into its parent.
3736 NamespaceDecl *PrevDecl;
Sebastian Redl7a126a42010-08-31 00:36:30 +00003737 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00003738 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3739 PrevDecl = TU->getAnonymousNamespace();
3740 TU->setAnonymousNamespace(Namespc);
3741 } else {
3742 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3743 PrevDecl = ND->getAnonymousNamespace();
3744 ND->setAnonymousNamespace(Namespc);
3745 }
3746
3747 // Link the anonymous namespace with its previous declaration.
3748 if (PrevDecl) {
3749 assert(PrevDecl->isAnonymousNamespace());
3750 assert(!PrevDecl->getNextNamespace());
3751 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3752 PrevDecl->setNextNamespace(Namespc);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003753
3754 if (Namespc->isInline() != PrevDecl->isInline()) {
3755 // inline-ness must match
3756 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3757 << Namespc->isInline();
3758 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3759 Namespc->setInvalidDecl();
3760 // Recover by ignoring the new namespace's inline status.
3761 Namespc->setInline(PrevDecl->isInline());
3762 }
John McCall5fdd7642009-12-16 02:06:49 +00003763 }
John McCall9aeed322009-10-01 00:25:31 +00003764
Douglas Gregora4181472010-03-24 00:46:35 +00003765 CurContext->addDecl(Namespc);
3766
John McCall9aeed322009-10-01 00:25:31 +00003767 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3768 // behaves as if it were replaced by
3769 // namespace unique { /* empty body */ }
3770 // using namespace unique;
3771 // namespace unique { namespace-body }
3772 // where all occurrences of 'unique' in a translation unit are
3773 // replaced by the same identifier and this identifier differs
3774 // from all other identifiers in the entire program.
3775
3776 // We just create the namespace with an empty name and then add an
3777 // implicit using declaration, just like the standard suggests.
3778 //
3779 // CodeGen enforces the "universally unique" aspect by giving all
3780 // declarations semantically contained within an anonymous
3781 // namespace internal linkage.
3782
John McCall5fdd7642009-12-16 02:06:49 +00003783 if (!PrevDecl) {
3784 UsingDirectiveDecl* UD
3785 = UsingDirectiveDecl::Create(Context, CurContext,
3786 /* 'using' */ LBrace,
3787 /* 'namespace' */ SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00003788 /* qualifier */ NestedNameSpecifierLoc(),
John McCall5fdd7642009-12-16 02:06:49 +00003789 /* identifier */ SourceLocation(),
3790 Namespc,
3791 /* Ancestor */ CurContext);
3792 UD->setImplicit();
3793 CurContext->addDecl(UD);
3794 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003795 }
3796
3797 // Although we could have an invalid decl (i.e. the namespace name is a
3798 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003799 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3800 // for the namespace has the declarations that showed up in that particular
3801 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003802 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00003803 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003804}
3805
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003806/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3807/// is a namespace alias, returns the namespace it points to.
3808static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3809 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3810 return AD->getNamespace();
3811 return dyn_cast_or_null<NamespaceDecl>(D);
3812}
3813
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003814/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3815/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00003816void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003817 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3818 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00003819 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003820 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003821 if (Namespc->hasAttr<VisibilityAttr>())
3822 PopPragmaVisibility();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003823}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003824
John McCall384aff82010-08-25 07:42:41 +00003825CXXRecordDecl *Sema::getStdBadAlloc() const {
3826 return cast_or_null<CXXRecordDecl>(
3827 StdBadAlloc.get(Context.getExternalSource()));
3828}
3829
3830NamespaceDecl *Sema::getStdNamespace() const {
3831 return cast_or_null<NamespaceDecl>(
3832 StdNamespace.get(Context.getExternalSource()));
3833}
3834
Douglas Gregor66992202010-06-29 17:53:46 +00003835/// \brief Retrieve the special "std" namespace, which may require us to
3836/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003837NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00003838 if (!StdNamespace) {
3839 // The "std" namespace has not yet been defined, so build one implicitly.
3840 StdNamespace = NamespaceDecl::Create(Context,
3841 Context.getTranslationUnitDecl(),
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00003842 SourceLocation(), SourceLocation(),
Douglas Gregor66992202010-06-29 17:53:46 +00003843 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003844 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00003845 }
3846
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003847 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00003848}
3849
Douglas Gregor9172aa62011-03-26 22:25:30 +00003850/// \brief Determine whether a using statement is in a context where it will be
3851/// apply in all contexts.
3852static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
3853 switch (CurContext->getDeclKind()) {
3854 case Decl::TranslationUnit:
3855 return true;
3856 case Decl::LinkageSpec:
3857 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
3858 default:
3859 return false;
3860 }
3861}
3862
John McCalld226f652010-08-21 09:40:31 +00003863Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003864 SourceLocation UsingLoc,
3865 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003866 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003867 SourceLocation IdentLoc,
3868 IdentifierInfo *NamespcName,
3869 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003870 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3871 assert(NamespcName && "Invalid NamespcName.");
3872 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00003873
3874 // This can only happen along a recovery path.
3875 while (S->getFlags() & Scope::TemplateParamScope)
3876 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003877 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003878
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003879 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00003880 NestedNameSpecifier *Qualifier = 0;
3881 if (SS.isSet())
3882 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3883
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003884 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003885 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3886 LookupParsedName(R, S, &SS);
3887 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00003888 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00003889
Douglas Gregor66992202010-06-29 17:53:46 +00003890 if (R.empty()) {
3891 // Allow "using namespace std;" or "using namespace ::std;" even if
3892 // "std" hasn't been defined yet, for GCC compatibility.
3893 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3894 NamespcName->isStr("std")) {
3895 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003896 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00003897 R.resolveKind();
3898 }
3899 // Otherwise, attempt typo correction.
3900 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3901 CTC_NoKeywords, 0)) {
3902 if (R.getAsSingle<NamespaceDecl>() ||
3903 R.getAsSingle<NamespaceAliasDecl>()) {
3904 if (DeclContext *DC = computeDeclContext(SS, false))
3905 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3906 << NamespcName << DC << Corrected << SS.getRange()
3907 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3908 else
3909 Diag(IdentLoc, diag::err_using_directive_suggest)
3910 << NamespcName << Corrected
3911 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3912 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3913 << Corrected;
3914
3915 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003916 } else {
3917 R.clear();
3918 R.setLookupName(NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00003919 }
3920 }
3921 }
3922
John McCallf36e02d2009-10-09 21:13:30 +00003923 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003924 NamedDecl *Named = R.getFoundDecl();
3925 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3926 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003927 // C++ [namespace.udir]p1:
3928 // A using-directive specifies that the names in the nominated
3929 // namespace can be used in the scope in which the
3930 // using-directive appears after the using-directive. During
3931 // unqualified name lookup (3.4.1), the names appear as if they
3932 // were declared in the nearest enclosing namespace which
3933 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003934 // namespace. [Note: in this context, "contains" means "contains
3935 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003936
3937 // Find enclosing context containing both using-directive and
3938 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003939 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003940 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3941 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3942 CommonAncestor = CommonAncestor->getParent();
3943
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003944 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregordb992412011-02-25 16:33:46 +00003945 SS.getWithLocInContext(Context),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003946 IdentLoc, Named, CommonAncestor);
Douglas Gregord6a49bb2011-03-18 16:10:52 +00003947
Douglas Gregor9172aa62011-03-26 22:25:30 +00003948 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Nico Weber21669482011-04-02 19:45:15 +00003949 !SourceMgr.isFromMainFile(SourceMgr.getInstantiationLoc(IdentLoc))) {
Douglas Gregord6a49bb2011-03-18 16:10:52 +00003950 Diag(IdentLoc, diag::warn_using_directive_in_header);
3951 }
3952
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003953 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003954 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003955 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003956 }
3957
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003958 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00003959 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003960}
3961
3962void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3963 // If scope has associated entity, then using directive is at namespace
3964 // or translation unit scope. We add UsingDirectiveDecls, into
3965 // it's lookup structure.
3966 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003967 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003968 else
3969 // Otherwise it is block-sope. using-directives will affect lookup
3970 // only to the end of scope.
John McCalld226f652010-08-21 09:40:31 +00003971 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003972}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003973
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003974
John McCalld226f652010-08-21 09:40:31 +00003975Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00003976 AccessSpecifier AS,
3977 bool HasUsingKeyword,
3978 SourceLocation UsingLoc,
3979 CXXScopeSpec &SS,
3980 UnqualifiedId &Name,
3981 AttributeList *AttrList,
3982 bool IsTypeName,
3983 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003984 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003985
Douglas Gregor12c118a2009-11-04 16:30:06 +00003986 switch (Name.getKind()) {
3987 case UnqualifiedId::IK_Identifier:
3988 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003989 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003990 case UnqualifiedId::IK_ConversionFunctionId:
3991 break;
3992
3993 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003994 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003995 // C++0x inherited constructors.
3996 if (getLangOptions().CPlusPlus0x) break;
3997
Douglas Gregor12c118a2009-11-04 16:30:06 +00003998 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3999 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00004000 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00004001
4002 case UnqualifiedId::IK_DestructorName:
4003 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
4004 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00004005 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00004006
4007 case UnqualifiedId::IK_TemplateId:
4008 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
4009 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00004010 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00004011 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004012
4013 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
4014 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00004015 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00004016 return 0;
John McCall604e7f12009-12-08 07:46:18 +00004017
John McCall60fa3cf2009-12-11 02:10:03 +00004018 // Warn about using declarations.
4019 // TODO: store that the declaration was written without 'using' and
4020 // talk about access decls instead of using decls in the
4021 // diagnostics.
4022 if (!HasUsingKeyword) {
4023 UsingLoc = Name.getSourceRange().getBegin();
4024
4025 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00004026 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00004027 }
4028
Douglas Gregor56c04582010-12-16 00:46:58 +00004029 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
4030 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
4031 return 0;
4032
John McCall9488ea12009-11-17 05:59:44 +00004033 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004034 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00004035 /* IsInstantiation */ false,
4036 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00004037 if (UD)
4038 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00004039
John McCalld226f652010-08-21 09:40:31 +00004040 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00004041}
4042
Douglas Gregor09acc982010-07-07 23:08:52 +00004043/// \brief Determine whether a using declaration considers the given
4044/// declarations as "equivalent", e.g., if they are redeclarations of
4045/// the same entity or are both typedefs of the same type.
4046static bool
4047IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
4048 bool &SuppressRedeclaration) {
4049 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
4050 SuppressRedeclaration = false;
4051 return true;
4052 }
4053
Richard Smith162e1c12011-04-15 14:24:37 +00004054 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
4055 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor09acc982010-07-07 23:08:52 +00004056 SuppressRedeclaration = true;
4057 return Context.hasSameType(TD1->getUnderlyingType(),
4058 TD2->getUnderlyingType());
4059 }
4060
4061 return false;
4062}
4063
4064
John McCall9f54ad42009-12-10 09:41:52 +00004065/// Determines whether to create a using shadow decl for a particular
4066/// decl, given the set of decls existing prior to this using lookup.
4067bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
4068 const LookupResult &Previous) {
4069 // Diagnose finding a decl which is not from a base class of the
4070 // current class. We do this now because there are cases where this
4071 // function will silently decide not to build a shadow decl, which
4072 // will pre-empt further diagnostics.
4073 //
4074 // We don't need to do this in C++0x because we do the check once on
4075 // the qualifier.
4076 //
4077 // FIXME: diagnose the following if we care enough:
4078 // struct A { int foo; };
4079 // struct B : A { using A::foo; };
4080 // template <class T> struct C : A {};
4081 // template <class T> struct D : C<T> { using B::foo; } // <---
4082 // This is invalid (during instantiation) in C++03 because B::foo
4083 // resolves to the using decl in B, which is not a base class of D<T>.
4084 // We can't diagnose it immediately because C<T> is an unknown
4085 // specialization. The UsingShadowDecl in D<T> then points directly
4086 // to A::foo, which will look well-formed when we instantiate.
4087 // The right solution is to not collapse the shadow-decl chain.
4088 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
4089 DeclContext *OrigDC = Orig->getDeclContext();
4090
4091 // Handle enums and anonymous structs.
4092 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
4093 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
4094 while (OrigRec->isAnonymousStructOrUnion())
4095 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
4096
4097 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
4098 if (OrigDC == CurContext) {
4099 Diag(Using->getLocation(),
4100 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregordc355712011-02-25 00:36:19 +00004101 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00004102 Diag(Orig->getLocation(), diag::note_using_decl_target);
4103 return true;
4104 }
4105
Douglas Gregordc355712011-02-25 00:36:19 +00004106 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall9f54ad42009-12-10 09:41:52 +00004107 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregordc355712011-02-25 00:36:19 +00004108 << Using->getQualifier()
John McCall9f54ad42009-12-10 09:41:52 +00004109 << cast<CXXRecordDecl>(CurContext)
Douglas Gregordc355712011-02-25 00:36:19 +00004110 << Using->getQualifierLoc().getSourceRange();
John McCall9f54ad42009-12-10 09:41:52 +00004111 Diag(Orig->getLocation(), diag::note_using_decl_target);
4112 return true;
4113 }
4114 }
4115
4116 if (Previous.empty()) return false;
4117
4118 NamedDecl *Target = Orig;
4119 if (isa<UsingShadowDecl>(Target))
4120 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4121
John McCalld7533ec2009-12-11 02:33:26 +00004122 // If the target happens to be one of the previous declarations, we
4123 // don't have a conflict.
4124 //
4125 // FIXME: but we might be increasing its access, in which case we
4126 // should redeclare it.
4127 NamedDecl *NonTag = 0, *Tag = 0;
4128 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
4129 I != E; ++I) {
4130 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00004131 bool Result;
4132 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
4133 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00004134
4135 (isa<TagDecl>(D) ? Tag : NonTag) = D;
4136 }
4137
John McCall9f54ad42009-12-10 09:41:52 +00004138 if (Target->isFunctionOrFunctionTemplate()) {
4139 FunctionDecl *FD;
4140 if (isa<FunctionTemplateDecl>(Target))
4141 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
4142 else
4143 FD = cast<FunctionDecl>(Target);
4144
4145 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00004146 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00004147 case Ovl_Overload:
4148 return false;
4149
4150 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00004151 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00004152 break;
4153
4154 // We found a decl with the exact signature.
4155 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00004156 // If we're in a record, we want to hide the target, so we
4157 // return true (without a diagnostic) to tell the caller not to
4158 // build a shadow decl.
4159 if (CurContext->isRecord())
4160 return true;
4161
4162 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00004163 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00004164 break;
4165 }
4166
4167 Diag(Target->getLocation(), diag::note_using_decl_target);
4168 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
4169 return true;
4170 }
4171
4172 // Target is not a function.
4173
John McCall9f54ad42009-12-10 09:41:52 +00004174 if (isa<TagDecl>(Target)) {
4175 // No conflict between a tag and a non-tag.
4176 if (!Tag) return false;
4177
John McCall41ce66f2009-12-10 19:51:03 +00004178 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00004179 Diag(Target->getLocation(), diag::note_using_decl_target);
4180 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
4181 return true;
4182 }
4183
4184 // No conflict between a tag and a non-tag.
4185 if (!NonTag) return false;
4186
John McCall41ce66f2009-12-10 19:51:03 +00004187 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00004188 Diag(Target->getLocation(), diag::note_using_decl_target);
4189 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
4190 return true;
4191}
4192
John McCall9488ea12009-11-17 05:59:44 +00004193/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00004194UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00004195 UsingDecl *UD,
4196 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00004197
4198 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00004199 NamedDecl *Target = Orig;
4200 if (isa<UsingShadowDecl>(Target)) {
4201 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4202 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00004203 }
4204
4205 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00004206 = UsingShadowDecl::Create(Context, CurContext,
4207 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00004208 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00004209
4210 Shadow->setAccess(UD->getAccess());
4211 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
4212 Shadow->setInvalidDecl();
4213
John McCall9488ea12009-11-17 05:59:44 +00004214 if (S)
John McCall604e7f12009-12-08 07:46:18 +00004215 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00004216 else
John McCall604e7f12009-12-08 07:46:18 +00004217 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00004218
John McCall604e7f12009-12-08 07:46:18 +00004219
John McCall9f54ad42009-12-10 09:41:52 +00004220 return Shadow;
4221}
John McCall604e7f12009-12-08 07:46:18 +00004222
John McCall9f54ad42009-12-10 09:41:52 +00004223/// Hides a using shadow declaration. This is required by the current
4224/// using-decl implementation when a resolvable using declaration in a
4225/// class is followed by a declaration which would hide or override
4226/// one or more of the using decl's targets; for example:
4227///
4228/// struct Base { void foo(int); };
4229/// struct Derived : Base {
4230/// using Base::foo;
4231/// void foo(int);
4232/// };
4233///
4234/// The governing language is C++03 [namespace.udecl]p12:
4235///
4236/// When a using-declaration brings names from a base class into a
4237/// derived class scope, member functions in the derived class
4238/// override and/or hide member functions with the same name and
4239/// parameter types in a base class (rather than conflicting).
4240///
4241/// There are two ways to implement this:
4242/// (1) optimistically create shadow decls when they're not hidden
4243/// by existing declarations, or
4244/// (2) don't create any shadow decls (or at least don't make them
4245/// visible) until we've fully parsed/instantiated the class.
4246/// The problem with (1) is that we might have to retroactively remove
4247/// a shadow decl, which requires several O(n) operations because the
4248/// decl structures are (very reasonably) not designed for removal.
4249/// (2) avoids this but is very fiddly and phase-dependent.
4250void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00004251 if (Shadow->getDeclName().getNameKind() ==
4252 DeclarationName::CXXConversionFunctionName)
4253 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
4254
John McCall9f54ad42009-12-10 09:41:52 +00004255 // Remove it from the DeclContext...
4256 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00004257
John McCall9f54ad42009-12-10 09:41:52 +00004258 // ...and the scope, if applicable...
4259 if (S) {
John McCalld226f652010-08-21 09:40:31 +00004260 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00004261 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00004262 }
4263
John McCall9f54ad42009-12-10 09:41:52 +00004264 // ...and the using decl.
4265 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
4266
4267 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00004268 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00004269}
4270
John McCall7ba107a2009-11-18 02:36:19 +00004271/// Builds a using declaration.
4272///
4273/// \param IsInstantiation - Whether this call arises from an
4274/// instantiation of an unresolved using declaration. We treat
4275/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00004276NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
4277 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004278 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004279 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00004280 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00004281 bool IsInstantiation,
4282 bool IsTypeName,
4283 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00004284 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004285 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00004286 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00004287
Anders Carlsson550b14b2009-08-28 05:49:21 +00004288 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00004289
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004290 if (SS.isEmpty()) {
4291 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00004292 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004293 }
Mike Stump1eb44332009-09-09 15:08:12 +00004294
John McCall9f54ad42009-12-10 09:41:52 +00004295 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004296 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00004297 ForRedeclaration);
4298 Previous.setHideTags(false);
4299 if (S) {
4300 LookupName(Previous, S);
4301
4302 // It is really dumb that we have to do this.
4303 LookupResult::Filter F = Previous.makeFilter();
4304 while (F.hasNext()) {
4305 NamedDecl *D = F.next();
4306 if (!isDeclInScope(D, CurContext, S))
4307 F.erase();
4308 }
4309 F.done();
4310 } else {
4311 assert(IsInstantiation && "no scope in non-instantiation");
4312 assert(CurContext->isRecord() && "scope not record in instantiation");
4313 LookupQualifiedName(Previous, CurContext);
4314 }
4315
John McCall9f54ad42009-12-10 09:41:52 +00004316 // Check for invalid redeclarations.
4317 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
4318 return 0;
4319
4320 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00004321 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
4322 return 0;
4323
John McCallaf8e6ed2009-11-12 03:15:40 +00004324 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00004325 NamedDecl *D;
Douglas Gregordc355712011-02-25 00:36:19 +00004326 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallaf8e6ed2009-11-12 03:15:40 +00004327 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00004328 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00004329 // FIXME: not all declaration name kinds are legal here
4330 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
4331 UsingLoc, TypenameLoc,
Douglas Gregordc355712011-02-25 00:36:19 +00004332 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004333 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00004334 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00004335 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
4336 QualifierLoc, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00004337 }
John McCalled976492009-12-04 22:46:56 +00004338 } else {
Douglas Gregordc355712011-02-25 00:36:19 +00004339 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
4340 NameInfo, IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00004341 }
John McCalled976492009-12-04 22:46:56 +00004342 D->setAccess(AS);
4343 CurContext->addDecl(D);
4344
4345 if (!LookupContext) return D;
4346 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00004347
John McCall77bb1aa2010-05-01 00:40:08 +00004348 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00004349 UD->setInvalidDecl();
4350 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004351 }
4352
Sebastian Redlf677ea32011-02-05 19:23:19 +00004353 // Constructor inheriting using decls get special treatment.
4354 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Sebastian Redlcaa35e42011-03-12 13:44:32 +00004355 if (CheckInheritedConstructorUsingDecl(UD))
4356 UD->setInvalidDecl();
Sebastian Redlf677ea32011-02-05 19:23:19 +00004357 return UD;
4358 }
4359
4360 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00004361
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004362 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00004363
John McCall604e7f12009-12-08 07:46:18 +00004364 // Unlike most lookups, we don't always want to hide tag
4365 // declarations: tag names are visible through the using declaration
4366 // even if hidden by ordinary names, *except* in a dependent context
4367 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00004368 if (!IsInstantiation)
4369 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00004370
John McCalla24dc2e2009-11-17 02:14:36 +00004371 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00004372
John McCallf36e02d2009-10-09 21:13:30 +00004373 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00004374 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004375 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00004376 UD->setInvalidDecl();
4377 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00004378 }
4379
John McCalled976492009-12-04 22:46:56 +00004380 if (R.isAmbiguous()) {
4381 UD->setInvalidDecl();
4382 return UD;
4383 }
Mike Stump1eb44332009-09-09 15:08:12 +00004384
John McCall7ba107a2009-11-18 02:36:19 +00004385 if (IsTypeName) {
4386 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00004387 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00004388 Diag(IdentLoc, diag::err_using_typename_non_type);
4389 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
4390 Diag((*I)->getUnderlyingDecl()->getLocation(),
4391 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00004392 UD->setInvalidDecl();
4393 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00004394 }
4395 } else {
4396 // If we asked for a non-typename and we got a type, error out,
4397 // but only if this is an instantiation of an unresolved using
4398 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00004399 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00004400 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
4401 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00004402 UD->setInvalidDecl();
4403 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00004404 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004405 }
4406
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004407 // C++0x N2914 [namespace.udecl]p6:
4408 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00004409 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004410 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
4411 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00004412 UD->setInvalidDecl();
4413 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004414 }
Mike Stump1eb44332009-09-09 15:08:12 +00004415
John McCall9f54ad42009-12-10 09:41:52 +00004416 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
4417 if (!CheckUsingShadowDecl(UD, *I, Previous))
4418 BuildUsingShadowDecl(S, UD, *I);
4419 }
John McCall9488ea12009-11-17 05:59:44 +00004420
4421 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00004422}
4423
Sebastian Redlf677ea32011-02-05 19:23:19 +00004424/// Additional checks for a using declaration referring to a constructor name.
4425bool Sema::CheckInheritedConstructorUsingDecl(UsingDecl *UD) {
4426 if (UD->isTypeName()) {
4427 // FIXME: Cannot specify typename when specifying constructor
4428 return true;
4429 }
4430
Douglas Gregordc355712011-02-25 00:36:19 +00004431 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redlf677ea32011-02-05 19:23:19 +00004432 assert(SourceType &&
4433 "Using decl naming constructor doesn't have type in scope spec.");
4434 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
4435
4436 // Check whether the named type is a direct base class.
4437 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
4438 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
4439 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
4440 BaseIt != BaseE; ++BaseIt) {
4441 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
4442 if (CanonicalSourceType == BaseType)
4443 break;
4444 }
4445
4446 if (BaseIt == BaseE) {
4447 // Did not find SourceType in the bases.
4448 Diag(UD->getUsingLocation(),
4449 diag::err_using_decl_constructor_not_in_direct_base)
4450 << UD->getNameInfo().getSourceRange()
4451 << QualType(SourceType, 0) << TargetClass;
4452 return true;
4453 }
4454
4455 BaseIt->setInheritConstructors();
4456
4457 return false;
4458}
4459
John McCall9f54ad42009-12-10 09:41:52 +00004460/// Checks that the given using declaration is not an invalid
4461/// redeclaration. Note that this is checking only for the using decl
4462/// itself, not for any ill-formedness among the UsingShadowDecls.
4463bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4464 bool isTypeName,
4465 const CXXScopeSpec &SS,
4466 SourceLocation NameLoc,
4467 const LookupResult &Prev) {
4468 // C++03 [namespace.udecl]p8:
4469 // C++0x [namespace.udecl]p10:
4470 // A using-declaration is a declaration and can therefore be used
4471 // repeatedly where (and only where) multiple declarations are
4472 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00004473 //
John McCall8a726212010-11-29 18:01:58 +00004474 // That's in non-member contexts.
4475 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00004476 return false;
4477
4478 NestedNameSpecifier *Qual
4479 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4480
4481 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4482 NamedDecl *D = *I;
4483
4484 bool DTypename;
4485 NestedNameSpecifier *DQual;
4486 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4487 DTypename = UD->isTypeName();
Douglas Gregordc355712011-02-25 00:36:19 +00004488 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00004489 } else if (UnresolvedUsingValueDecl *UD
4490 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4491 DTypename = false;
Douglas Gregordc355712011-02-25 00:36:19 +00004492 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00004493 } else if (UnresolvedUsingTypenameDecl *UD
4494 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4495 DTypename = true;
Douglas Gregordc355712011-02-25 00:36:19 +00004496 DQual = UD->getQualifier();
John McCall9f54ad42009-12-10 09:41:52 +00004497 } else continue;
4498
4499 // using decls differ if one says 'typename' and the other doesn't.
4500 // FIXME: non-dependent using decls?
4501 if (isTypeName != DTypename) continue;
4502
4503 // using decls differ if they name different scopes (but note that
4504 // template instantiation can cause this check to trigger when it
4505 // didn't before instantiation).
4506 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4507 Context.getCanonicalNestedNameSpecifier(DQual))
4508 continue;
4509
4510 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00004511 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00004512 return true;
4513 }
4514
4515 return false;
4516}
4517
John McCall604e7f12009-12-08 07:46:18 +00004518
John McCalled976492009-12-04 22:46:56 +00004519/// Checks that the given nested-name qualifier used in a using decl
4520/// in the current context is appropriately related to the current
4521/// scope. If an error is found, diagnoses it and returns true.
4522bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4523 const CXXScopeSpec &SS,
4524 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00004525 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00004526
John McCall604e7f12009-12-08 07:46:18 +00004527 if (!CurContext->isRecord()) {
4528 // C++03 [namespace.udecl]p3:
4529 // C++0x [namespace.udecl]p8:
4530 // A using-declaration for a class member shall be a member-declaration.
4531
4532 // If we weren't able to compute a valid scope, it must be a
4533 // dependent class scope.
4534 if (!NamedContext || NamedContext->isRecord()) {
4535 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4536 << SS.getRange();
4537 return true;
4538 }
4539
4540 // Otherwise, everything is known to be fine.
4541 return false;
4542 }
4543
4544 // The current scope is a record.
4545
4546 // If the named context is dependent, we can't decide much.
4547 if (!NamedContext) {
4548 // FIXME: in C++0x, we can diagnose if we can prove that the
4549 // nested-name-specifier does not refer to a base class, which is
4550 // still possible in some cases.
4551
4552 // Otherwise we have to conservatively report that things might be
4553 // okay.
4554 return false;
4555 }
4556
4557 if (!NamedContext->isRecord()) {
4558 // Ideally this would point at the last name in the specifier,
4559 // but we don't have that level of source info.
4560 Diag(SS.getRange().getBegin(),
4561 diag::err_using_decl_nested_name_specifier_is_not_class)
4562 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4563 return true;
4564 }
4565
Douglas Gregor6fb07292010-12-21 07:41:49 +00004566 if (!NamedContext->isDependentContext() &&
4567 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
4568 return true;
4569
John McCall604e7f12009-12-08 07:46:18 +00004570 if (getLangOptions().CPlusPlus0x) {
4571 // C++0x [namespace.udecl]p3:
4572 // In a using-declaration used as a member-declaration, the
4573 // nested-name-specifier shall name a base class of the class
4574 // being defined.
4575
4576 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4577 cast<CXXRecordDecl>(NamedContext))) {
4578 if (CurContext == NamedContext) {
4579 Diag(NameLoc,
4580 diag::err_using_decl_nested_name_specifier_is_current_class)
4581 << SS.getRange();
4582 return true;
4583 }
4584
4585 Diag(SS.getRange().getBegin(),
4586 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4587 << (NestedNameSpecifier*) SS.getScopeRep()
4588 << cast<CXXRecordDecl>(CurContext)
4589 << SS.getRange();
4590 return true;
4591 }
4592
4593 return false;
4594 }
4595
4596 // C++03 [namespace.udecl]p4:
4597 // A using-declaration used as a member-declaration shall refer
4598 // to a member of a base class of the class being defined [etc.].
4599
4600 // Salient point: SS doesn't have to name a base class as long as
4601 // lookup only finds members from base classes. Therefore we can
4602 // diagnose here only if we can prove that that can't happen,
4603 // i.e. if the class hierarchies provably don't intersect.
4604
4605 // TODO: it would be nice if "definitely valid" results were cached
4606 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4607 // need to be repeated.
4608
4609 struct UserData {
4610 llvm::DenseSet<const CXXRecordDecl*> Bases;
4611
4612 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4613 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4614 Data->Bases.insert(Base);
4615 return true;
4616 }
4617
4618 bool hasDependentBases(const CXXRecordDecl *Class) {
4619 return !Class->forallBases(collect, this);
4620 }
4621
4622 /// Returns true if the base is dependent or is one of the
4623 /// accumulated base classes.
4624 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4625 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4626 return !Data->Bases.count(Base);
4627 }
4628
4629 bool mightShareBases(const CXXRecordDecl *Class) {
4630 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4631 }
4632 };
4633
4634 UserData Data;
4635
4636 // Returns false if we find a dependent base.
4637 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4638 return false;
4639
4640 // Returns false if the class has a dependent base or if it or one
4641 // of its bases is present in the base set of the current context.
4642 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4643 return false;
4644
4645 Diag(SS.getRange().getBegin(),
4646 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4647 << (NestedNameSpecifier*) SS.getScopeRep()
4648 << cast<CXXRecordDecl>(CurContext)
4649 << SS.getRange();
4650
4651 return true;
John McCalled976492009-12-04 22:46:56 +00004652}
4653
Richard Smith162e1c12011-04-15 14:24:37 +00004654Decl *Sema::ActOnAliasDeclaration(Scope *S,
4655 AccessSpecifier AS,
4656 SourceLocation UsingLoc,
4657 UnqualifiedId &Name,
4658 TypeResult Type) {
4659 assert((S->getFlags() & Scope::DeclScope) &&
4660 "got alias-declaration outside of declaration scope");
4661
4662 if (Type.isInvalid())
4663 return 0;
4664
4665 bool Invalid = false;
4666 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
4667 TypeSourceInfo *TInfo = 0;
4668 QualType T = GetTypeFromParser(Type.get(), &TInfo);
4669
4670 if (DiagnoseClassNameShadow(CurContext, NameInfo))
4671 return 0;
4672
4673 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
4674 UPPC_DeclarationType))
4675 Invalid = true;
4676
4677 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
4678 LookupName(Previous, S);
4679
4680 // Warn about shadowing the name of a template parameter.
4681 if (Previous.isSingleResult() &&
4682 Previous.getFoundDecl()->isTemplateParameter()) {
4683 if (DiagnoseTemplateParameterShadow(Name.StartLocation,
4684 Previous.getFoundDecl()))
4685 Invalid = true;
4686 Previous.clear();
4687 }
4688
4689 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
4690 "name in alias declaration must be an identifier");
4691 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
4692 Name.StartLocation,
4693 Name.Identifier, TInfo);
4694
4695 NewTD->setAccess(AS);
4696
4697 if (Invalid)
4698 NewTD->setInvalidDecl();
4699
4700 bool Redeclaration = false;
4701 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
4702
4703 if (!Redeclaration)
4704 PushOnScopeChains(NewTD, S);
4705
4706 return NewTD;
4707}
4708
John McCalld226f652010-08-21 09:40:31 +00004709Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004710 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004711 SourceLocation AliasLoc,
4712 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004713 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004714 SourceLocation IdentLoc,
4715 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004716
Anders Carlsson81c85c42009-03-28 23:53:49 +00004717 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004718 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4719 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004720
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004721 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004722 NamedDecl *PrevDecl
4723 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4724 ForRedeclaration);
4725 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4726 PrevDecl = 0;
4727
4728 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004729 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004730 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004731 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004732 // FIXME: At some point, we'll want to create the (redundant)
4733 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004734 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004735 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00004736 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00004737 }
Mike Stump1eb44332009-09-09 15:08:12 +00004738
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004739 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4740 diag::err_redefinition_different_kind;
4741 Diag(AliasLoc, DiagID) << Alias;
4742 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00004743 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004744 }
4745
John McCalla24dc2e2009-11-17 02:14:36 +00004746 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00004747 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004748
John McCallf36e02d2009-10-09 21:13:30 +00004749 if (R.empty()) {
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004750 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4751 CTC_NoKeywords, 0)) {
4752 if (R.getAsSingle<NamespaceDecl>() ||
4753 R.getAsSingle<NamespaceAliasDecl>()) {
4754 if (DeclContext *DC = computeDeclContext(SS, false))
4755 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4756 << Ident << DC << Corrected << SS.getRange()
4757 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4758 else
4759 Diag(IdentLoc, diag::err_using_directive_suggest)
4760 << Ident << Corrected
4761 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4762
4763 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4764 << Corrected;
4765
4766 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00004767 } else {
4768 R.clear();
4769 R.setLookupName(Ident);
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004770 }
4771 }
4772
4773 if (R.empty()) {
4774 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00004775 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004776 }
Anders Carlsson5721c682009-03-28 06:42:02 +00004777 }
Mike Stump1eb44332009-09-09 15:08:12 +00004778
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004779 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004780 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00004781 Alias, SS.getWithLocInContext(Context),
John McCallf36e02d2009-10-09 21:13:30 +00004782 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004783
John McCall3dbd3d52010-02-16 06:53:13 +00004784 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00004785 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00004786}
4787
Douglas Gregor39957dc2010-05-01 15:04:51 +00004788namespace {
4789 /// \brief Scoped object used to handle the state changes required in Sema
4790 /// to implicitly define the body of a C++ member function;
4791 class ImplicitlyDefinedFunctionScope {
4792 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00004793 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00004794
4795 public:
4796 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00004797 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00004798 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00004799 S.PushFunctionScope();
4800 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4801 }
4802
4803 ~ImplicitlyDefinedFunctionScope() {
4804 S.PopExpressionEvaluationContext();
4805 S.PopFunctionOrBlockScope();
Douglas Gregor39957dc2010-05-01 15:04:51 +00004806 }
4807 };
4808}
4809
Sebastian Redl751025d2010-09-13 22:02:47 +00004810static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4811 CXXRecordDecl *D) {
4812 ASTContext &Context = Self.Context;
4813 QualType ClassType = Context.getTypeDeclType(D);
4814 DeclarationName ConstructorName
4815 = Context.DeclarationNames.getCXXConstructorName(
4816 Context.getCanonicalType(ClassType.getUnqualifiedType()));
4817
4818 DeclContext::lookup_const_iterator Con, ConEnd;
4819 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4820 Con != ConEnd; ++Con) {
4821 // FIXME: In C++0x, a constructor template can be a default constructor.
4822 if (isa<FunctionTemplateDecl>(*Con))
4823 continue;
4824
4825 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4826 if (Constructor->isDefaultConstructor())
4827 return Constructor;
4828 }
4829 return 0;
4830}
4831
Douglas Gregor23c94db2010-07-02 17:43:08 +00004832CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4833 CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004834 // C++ [class.ctor]p5:
4835 // A default constructor for a class X is a constructor of class X
4836 // that can be called without an argument. If there is no
4837 // user-declared constructor for class X, a default constructor is
4838 // implicitly declared. An implicitly-declared default constructor
4839 // is an inline public member of its class.
Douglas Gregor18274032010-07-03 00:47:00 +00004840 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4841 "Should not build implicit default constructor!");
4842
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004843 // C++ [except.spec]p14:
4844 // An implicitly declared special member function (Clause 12) shall have an
4845 // exception-specification. [...]
4846 ImplicitExceptionSpecification ExceptSpec(Context);
4847
Sebastian Redl60618fa2011-03-12 11:50:43 +00004848 // Direct base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004849 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4850 BEnd = ClassDecl->bases_end();
4851 B != BEnd; ++B) {
4852 if (B->isVirtual()) // Handled below.
4853 continue;
4854
Douglas Gregor18274032010-07-03 00:47:00 +00004855 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4856 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4857 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4858 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
Sebastian Redl751025d2010-09-13 22:02:47 +00004859 else if (CXXConstructorDecl *Constructor
4860 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004861 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004862 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004863 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00004864
4865 // Virtual base-class constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004866 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4867 BEnd = ClassDecl->vbases_end();
4868 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00004869 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4870 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4871 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4872 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4873 else if (CXXConstructorDecl *Constructor
Sebastian Redl751025d2010-09-13 22:02:47 +00004874 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004875 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004876 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004877 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00004878
4879 // Field constructors.
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004880 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4881 FEnd = ClassDecl->field_end();
4882 F != FEnd; ++F) {
4883 if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00004884 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4885 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4886 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4887 ExceptSpec.CalledDecl(
4888 DeclareImplicitDefaultConstructor(FieldClassDecl));
4889 else if (CXXConstructorDecl *Constructor
Sebastian Redl751025d2010-09-13 22:02:47 +00004890 = getDefaultConstructorUnsafe(*this, FieldClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004891 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004892 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004893 }
John McCalle23cf432010-12-14 08:05:40 +00004894
4895 FunctionProtoType::ExtProtoInfo EPI;
Sebastian Redl60618fa2011-03-12 11:50:43 +00004896 EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00004897 EPI.NumExceptions = ExceptSpec.size();
4898 EPI.Exceptions = ExceptSpec.data();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00004899
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004900 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00004901 CanQualType ClassType
4902 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004903 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor32df23e2010-07-01 22:02:46 +00004904 DeclarationName Name
4905 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004906 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregor32df23e2010-07-01 22:02:46 +00004907 CXXConstructorDecl *DefaultCon
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004908 = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Douglas Gregor32df23e2010-07-01 22:02:46 +00004909 Context.getFunctionType(Context.VoidTy,
John McCalle23cf432010-12-14 08:05:40 +00004910 0, 0, EPI),
Douglas Gregor32df23e2010-07-01 22:02:46 +00004911 /*TInfo=*/0,
4912 /*isExplicit=*/false,
4913 /*isInline=*/true,
4914 /*isImplicitlyDeclared=*/true);
4915 DefaultCon->setAccess(AS_public);
4916 DefaultCon->setImplicit();
4917 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00004918
4919 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00004920 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4921
Douglas Gregor23c94db2010-07-02 17:43:08 +00004922 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00004923 PushOnScopeChains(DefaultCon, S, false);
4924 ClassDecl->addDecl(DefaultCon);
4925
Douglas Gregor32df23e2010-07-01 22:02:46 +00004926 return DefaultCon;
4927}
4928
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004929void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4930 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004931 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004932 !Constructor->isUsed(false)) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004933 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004934
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004935 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004936 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004937
Douglas Gregor39957dc2010-05-01 15:04:51 +00004938 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00004939 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00004940 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004941 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004942 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004943 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004944 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00004945 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00004946 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00004947
4948 SourceLocation Loc = Constructor->getLocation();
4949 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4950
4951 Constructor->setUsed();
4952 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004953}
4954
Sebastian Redlf677ea32011-02-05 19:23:19 +00004955void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
4956 // We start with an initial pass over the base classes to collect those that
4957 // inherit constructors from. If there are none, we can forgo all further
4958 // processing.
4959 typedef llvm::SmallVector<const RecordType *, 4> BasesVector;
4960 BasesVector BasesToInheritFrom;
4961 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
4962 BaseE = ClassDecl->bases_end();
4963 BaseIt != BaseE; ++BaseIt) {
4964 if (BaseIt->getInheritConstructors()) {
4965 QualType Base = BaseIt->getType();
4966 if (Base->isDependentType()) {
4967 // If we inherit constructors from anything that is dependent, just
4968 // abort processing altogether. We'll get another chance for the
4969 // instantiations.
4970 return;
4971 }
4972 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
4973 }
4974 }
4975 if (BasesToInheritFrom.empty())
4976 return;
4977
4978 // Now collect the constructors that we already have in the current class.
4979 // Those take precedence over inherited constructors.
4980 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
4981 // unless there is a user-declared constructor with the same signature in
4982 // the class where the using-declaration appears.
4983 llvm::SmallSet<const Type *, 8> ExistingConstructors;
4984 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
4985 CtorE = ClassDecl->ctor_end();
4986 CtorIt != CtorE; ++CtorIt) {
4987 ExistingConstructors.insert(
4988 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
4989 }
4990
4991 Scope *S = getScopeForContext(ClassDecl);
4992 DeclarationName CreatedCtorName =
4993 Context.DeclarationNames.getCXXConstructorName(
4994 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
4995
4996 // Now comes the true work.
4997 // First, we keep a map from constructor types to the base that introduced
4998 // them. Needed for finding conflicting constructors. We also keep the
4999 // actually inserted declarations in there, for pretty diagnostics.
5000 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
5001 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
5002 ConstructorToSourceMap InheritedConstructors;
5003 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
5004 BaseE = BasesToInheritFrom.end();
5005 BaseIt != BaseE; ++BaseIt) {
5006 const RecordType *Base = *BaseIt;
5007 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
5008 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
5009 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
5010 CtorE = BaseDecl->ctor_end();
5011 CtorIt != CtorE; ++CtorIt) {
5012 // Find the using declaration for inheriting this base's constructors.
5013 DeclarationName Name =
5014 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
5015 UsingDecl *UD = dyn_cast_or_null<UsingDecl>(
5016 LookupSingleName(S, Name,SourceLocation(), LookupUsingDeclName));
5017 SourceLocation UsingLoc = UD ? UD->getLocation() :
5018 ClassDecl->getLocation();
5019
5020 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
5021 // from the class X named in the using-declaration consists of actual
5022 // constructors and notional constructors that result from the
5023 // transformation of defaulted parameters as follows:
5024 // - all non-template default constructors of X, and
5025 // - for each non-template constructor of X that has at least one
5026 // parameter with a default argument, the set of constructors that
5027 // results from omitting any ellipsis parameter specification and
5028 // successively omitting parameters with a default argument from the
5029 // end of the parameter-type-list.
5030 CXXConstructorDecl *BaseCtor = *CtorIt;
5031 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
5032 const FunctionProtoType *BaseCtorType =
5033 BaseCtor->getType()->getAs<FunctionProtoType>();
5034
5035 for (unsigned params = BaseCtor->getMinRequiredArguments(),
5036 maxParams = BaseCtor->getNumParams();
5037 params <= maxParams; ++params) {
5038 // Skip default constructors. They're never inherited.
5039 if (params == 0)
5040 continue;
5041 // Skip copy and move constructors for the same reason.
5042 if (CanBeCopyOrMove && params == 1)
5043 continue;
5044
5045 // Build up a function type for this particular constructor.
5046 // FIXME: The working paper does not consider that the exception spec
5047 // for the inheriting constructor might be larger than that of the
5048 // source. This code doesn't yet, either.
5049 const Type *NewCtorType;
5050 if (params == maxParams)
5051 NewCtorType = BaseCtorType;
5052 else {
5053 llvm::SmallVector<QualType, 16> Args;
5054 for (unsigned i = 0; i < params; ++i) {
5055 Args.push_back(BaseCtorType->getArgType(i));
5056 }
5057 FunctionProtoType::ExtProtoInfo ExtInfo =
5058 BaseCtorType->getExtProtoInfo();
5059 ExtInfo.Variadic = false;
5060 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
5061 Args.data(), params, ExtInfo)
5062 .getTypePtr();
5063 }
5064 const Type *CanonicalNewCtorType =
5065 Context.getCanonicalType(NewCtorType);
5066
5067 // Now that we have the type, first check if the class already has a
5068 // constructor with this signature.
5069 if (ExistingConstructors.count(CanonicalNewCtorType))
5070 continue;
5071
5072 // Then we check if we have already declared an inherited constructor
5073 // with this signature.
5074 std::pair<ConstructorToSourceMap::iterator, bool> result =
5075 InheritedConstructors.insert(std::make_pair(
5076 CanonicalNewCtorType,
5077 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
5078 if (!result.second) {
5079 // Already in the map. If it came from a different class, that's an
5080 // error. Not if it's from the same.
5081 CanQualType PreviousBase = result.first->second.first;
5082 if (CanonicalBase != PreviousBase) {
5083 const CXXConstructorDecl *PrevCtor = result.first->second.second;
5084 const CXXConstructorDecl *PrevBaseCtor =
5085 PrevCtor->getInheritedConstructor();
5086 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
5087
5088 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
5089 Diag(BaseCtor->getLocation(),
5090 diag::note_using_decl_constructor_conflict_current_ctor);
5091 Diag(PrevBaseCtor->getLocation(),
5092 diag::note_using_decl_constructor_conflict_previous_ctor);
5093 Diag(PrevCtor->getLocation(),
5094 diag::note_using_decl_constructor_conflict_previous_using);
5095 }
5096 continue;
5097 }
5098
5099 // OK, we're there, now add the constructor.
5100 // C++0x [class.inhctor]p8: [...] that would be performed by a
5101 // user-writtern inline constructor [...]
5102 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
5103 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005104 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
5105 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Sebastian Redlf677ea32011-02-05 19:23:19 +00005106 /*ImplicitlyDeclared=*/true);
5107 NewCtor->setAccess(BaseCtor->getAccess());
5108
5109 // Build up the parameter decls and add them.
5110 llvm::SmallVector<ParmVarDecl *, 16> ParamDecls;
5111 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005112 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
5113 UsingLoc, UsingLoc,
Sebastian Redlf677ea32011-02-05 19:23:19 +00005114 /*IdentifierInfo=*/0,
5115 BaseCtorType->getArgType(i),
5116 /*TInfo=*/0, SC_None,
5117 SC_None, /*DefaultArg=*/0));
5118 }
5119 NewCtor->setParams(ParamDecls.data(), ParamDecls.size());
5120 NewCtor->setInheritedConstructor(BaseCtor);
5121
5122 PushOnScopeChains(NewCtor, S, false);
5123 ClassDecl->addDecl(NewCtor);
5124 result.first->second.second = NewCtor;
5125 }
5126 }
5127 }
5128}
5129
Douglas Gregor23c94db2010-07-02 17:43:08 +00005130CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005131 // C++ [class.dtor]p2:
5132 // If a class has no user-declared destructor, a destructor is
5133 // declared implicitly. An implicitly-declared destructor is an
5134 // inline public member of its class.
5135
5136 // C++ [except.spec]p14:
5137 // An implicitly declared special member function (Clause 12) shall have
5138 // an exception-specification.
5139 ImplicitExceptionSpecification ExceptSpec(Context);
5140
5141 // Direct base-class destructors.
5142 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
5143 BEnd = ClassDecl->bases_end();
5144 B != BEnd; ++B) {
5145 if (B->isVirtual()) // Handled below.
5146 continue;
5147
5148 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5149 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00005150 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005151 }
5152
5153 // Virtual base-class destructors.
5154 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
5155 BEnd = ClassDecl->vbases_end();
5156 B != BEnd; ++B) {
5157 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
5158 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00005159 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005160 }
5161
5162 // Field destructors.
5163 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
5164 FEnd = ClassDecl->field_end();
5165 F != FEnd; ++F) {
5166 if (const RecordType *RecordTy
5167 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
5168 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00005169 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005170 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00005171
Douglas Gregor4923aa22010-07-02 20:37:36 +00005172 // Create the actual destructor declaration.
John McCalle23cf432010-12-14 08:05:40 +00005173 FunctionProtoType::ExtProtoInfo EPI;
Sebastian Redl60618fa2011-03-12 11:50:43 +00005174 EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00005175 EPI.NumExceptions = ExceptSpec.size();
5176 EPI.Exceptions = ExceptSpec.data();
5177 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Sebastian Redl60618fa2011-03-12 11:50:43 +00005178
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005179 CanQualType ClassType
5180 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005181 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005182 DeclarationName Name
5183 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005184 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005185 CXXDestructorDecl *Destructor
Sebastian Redl60618fa2011-03-12 11:50:43 +00005186 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
5187 /*isInline=*/true,
5188 /*isImplicitlyDeclared=*/true);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005189 Destructor->setAccess(AS_public);
5190 Destructor->setImplicit();
5191 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00005192
5193 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00005194 ++ASTContext::NumImplicitDestructorsDeclared;
5195
5196 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00005197 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00005198 PushOnScopeChains(Destructor, S, false);
5199 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005200
5201 // This could be uniqued if it ever proves significant.
5202 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
5203
5204 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor4923aa22010-07-02 20:37:36 +00005205
Douglas Gregorfabd43a2010-07-01 19:09:28 +00005206 return Destructor;
5207}
5208
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005209void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00005210 CXXDestructorDecl *Destructor) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00005211 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005212 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00005213 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005214 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005215
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005216 if (Destructor->isInvalidDecl())
5217 return;
5218
Douglas Gregor39957dc2010-05-01 15:04:51 +00005219 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005220
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00005221 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00005222 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
5223 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00005224
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005225 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00005226 Diag(CurrentLocation, diag::note_member_synthesized_at)
5227 << CXXDestructor << Context.getTagDeclType(ClassDecl);
5228
5229 Destructor->setInvalidDecl();
5230 return;
5231 }
5232
Douglas Gregor4ada9d32010-09-20 16:48:21 +00005233 SourceLocation Loc = Destructor->getLocation();
5234 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
5235
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005236 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005237 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005238}
5239
Douglas Gregor06a9f362010-05-01 20:49:11 +00005240/// \brief Builds a statement that copies the given entity from \p From to
5241/// \c To.
5242///
5243/// This routine is used to copy the members of a class with an
5244/// implicitly-declared copy assignment operator. When the entities being
5245/// copied are arrays, this routine builds for loops to copy them.
5246///
5247/// \param S The Sema object used for type-checking.
5248///
5249/// \param Loc The location where the implicit copy is being generated.
5250///
5251/// \param T The type of the expressions being copied. Both expressions must
5252/// have this type.
5253///
5254/// \param To The expression we are copying to.
5255///
5256/// \param From The expression we are copying from.
5257///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005258/// \param CopyingBaseSubobject Whether we're copying a base subobject.
5259/// Otherwise, it's a non-static member subobject.
5260///
Douglas Gregor06a9f362010-05-01 20:49:11 +00005261/// \param Depth Internal parameter recording the depth of the recursion.
5262///
5263/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00005264static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00005265BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00005266 Expr *To, Expr *From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005267 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005268 // C++0x [class.copy]p30:
5269 // Each subobject is assigned in the manner appropriate to its type:
5270 //
5271 // - if the subobject is of class type, the copy assignment operator
5272 // for the class is used (as if by explicit qualification; that is,
5273 // ignoring any possible virtual overriding functions in more derived
5274 // classes);
5275 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
5276 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
5277
5278 // Look for operator=.
5279 DeclarationName Name
5280 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5281 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
5282 S.LookupQualifiedName(OpLookup, ClassDecl, false);
5283
5284 // Filter out any result that isn't a copy-assignment operator.
5285 LookupResult::Filter F = OpLookup.makeFilter();
5286 while (F.hasNext()) {
5287 NamedDecl *D = F.next();
5288 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
5289 if (Method->isCopyAssignmentOperator())
5290 continue;
5291
5292 F.erase();
John McCallb0207482010-03-16 06:11:48 +00005293 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005294 F.done();
5295
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005296 // Suppress the protected check (C++ [class.protected]) for each of the
5297 // assignment operators we found. This strange dance is required when
5298 // we're assigning via a base classes's copy-assignment operator. To
5299 // ensure that we're getting the right base class subobject (without
5300 // ambiguities), we need to cast "this" to that subobject type; to
5301 // ensure that we don't go through the virtual call mechanism, we need
5302 // to qualify the operator= name with the base class (see below). However,
5303 // this means that if the base class has a protected copy assignment
5304 // operator, the protected member access check will fail. So, we
5305 // rewrite "protected" access to "public" access in this case, since we
5306 // know by construction that we're calling from a derived class.
5307 if (CopyingBaseSubobject) {
5308 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
5309 L != LEnd; ++L) {
5310 if (L.getAccess() == AS_protected)
5311 L.setAccess(AS_public);
5312 }
5313 }
5314
Douglas Gregor06a9f362010-05-01 20:49:11 +00005315 // Create the nested-name-specifier that will be used to qualify the
5316 // reference to operator=; this is required to suppress the virtual
5317 // call mechanism.
5318 CXXScopeSpec SS;
Douglas Gregorc34348a2011-02-24 17:54:50 +00005319 SS.MakeTrivial(S.Context,
5320 NestedNameSpecifier::Create(S.Context, 0, false,
5321 T.getTypePtr()),
5322 Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005323
5324 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00005325 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00005326 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregor06a9f362010-05-01 20:49:11 +00005327 /*FirstQualifierInScope=*/0, OpLookup,
5328 /*TemplateArgs=*/0,
5329 /*SuppressQualifierCheck=*/true);
5330 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005331 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005332
5333 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00005334
John McCall60d7b3a2010-08-24 06:29:42 +00005335 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00005336 OpEqualRef.takeAs<Expr>(),
5337 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005338 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005339 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005340
5341 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005342 }
John McCallb0207482010-03-16 06:11:48 +00005343
Douglas Gregor06a9f362010-05-01 20:49:11 +00005344 // - if the subobject is of scalar type, the built-in assignment
5345 // operator is used.
5346 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
5347 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00005348 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005349 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005350 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005351
5352 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005353 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005354
5355 // - if the subobject is an array, each element is assigned, in the
5356 // manner appropriate to the element type;
5357
5358 // Construct a loop over the array bounds, e.g.,
5359 //
5360 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
5361 //
5362 // that will copy each of the array elements.
5363 QualType SizeType = S.Context.getSizeType();
5364
5365 // Create the iteration variable.
5366 IdentifierInfo *IterationVarName = 0;
5367 {
5368 llvm::SmallString<8> Str;
5369 llvm::raw_svector_ostream OS(Str);
5370 OS << "__i" << Depth;
5371 IterationVarName = &S.Context.Idents.get(OS.str());
5372 }
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005373 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregor06a9f362010-05-01 20:49:11 +00005374 IterationVarName, SizeType,
5375 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00005376 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005377
5378 // Initialize the iteration variable to zero.
5379 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00005380 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00005381
5382 // Create a reference to the iteration variable; we'll use this several
5383 // times throughout.
5384 Expr *IterationVarRef
John McCallf89e55a2010-11-18 06:31:45 +00005385 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005386 assert(IterationVarRef && "Reference to invented variable cannot fail!");
5387
5388 // Create the DeclStmt that holds the iteration variable.
5389 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
5390
5391 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00005392 llvm::APInt Upper
5393 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00005394 Expr *Comparison
John McCall3fa5cae2010-10-26 07:05:15 +00005395 = new (S.Context) BinaryOperator(IterationVarRef,
John McCallf89e55a2010-11-18 06:31:45 +00005396 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
5397 BO_NE, S.Context.BoolTy,
5398 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005399
5400 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00005401 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00005402 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
5403 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005404
5405 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00005406 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
5407 IterationVarRef, Loc));
5408 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
5409 IterationVarRef, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00005410
5411 // Build the copy for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00005412 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
5413 To, From, CopyingBaseSubobject,
5414 Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00005415 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005416 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005417
5418 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00005419 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00005420 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00005421 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00005422 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005423}
5424
Douglas Gregora376d102010-07-02 21:50:04 +00005425/// \brief Determine whether the given class has a copy assignment operator
5426/// that accepts a const-qualified argument.
5427static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
5428 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
5429
5430 if (!Class->hasDeclaredCopyAssignment())
5431 S.DeclareImplicitCopyAssignment(Class);
5432
5433 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
5434 DeclarationName OpName
5435 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5436
5437 DeclContext::lookup_const_iterator Op, OpEnd;
5438 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
5439 // C++ [class.copy]p9:
5440 // A user-declared copy assignment operator is a non-static non-template
5441 // member function of class X with exactly one parameter of type X, X&,
5442 // const X&, volatile X& or const volatile X&.
5443 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
5444 if (!Method)
5445 continue;
5446
5447 if (Method->isStatic())
5448 continue;
5449 if (Method->getPrimaryTemplate())
5450 continue;
5451 const FunctionProtoType *FnType =
5452 Method->getType()->getAs<FunctionProtoType>();
5453 assert(FnType && "Overloaded operator has no prototype.");
5454 // Don't assert on this; an invalid decl might have been left in the AST.
5455 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
5456 continue;
5457 bool AcceptsConst = true;
5458 QualType ArgType = FnType->getArgType(0);
5459 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
5460 ArgType = Ref->getPointeeType();
5461 // Is it a non-const lvalue reference?
5462 if (!ArgType.isConstQualified())
5463 AcceptsConst = false;
5464 }
5465 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
5466 continue;
5467
5468 // We have a single argument of type cv X or cv X&, i.e. we've found the
5469 // copy assignment operator. Return whether it accepts const arguments.
5470 return AcceptsConst;
5471 }
5472 assert(Class->isInvalidDecl() &&
5473 "No copy assignment operator declared in valid code.");
5474 return false;
5475}
5476
Douglas Gregor23c94db2010-07-02 17:43:08 +00005477CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregord3c35902010-07-01 16:36:15 +00005478 // Note: The following rules are largely analoguous to the copy
5479 // constructor rules. Note that virtual bases are not taken into account
5480 // for determining the argument type of the operator. Note also that
5481 // operators taking an object instead of a reference are allowed.
Douglas Gregor18274032010-07-03 00:47:00 +00005482
5483
Douglas Gregord3c35902010-07-01 16:36:15 +00005484 // C++ [class.copy]p10:
5485 // If the class definition does not explicitly declare a copy
5486 // assignment operator, one is declared implicitly.
5487 // The implicitly-defined copy assignment operator for a class X
5488 // will have the form
5489 //
5490 // X& X::operator=(const X&)
5491 //
5492 // if
5493 bool HasConstCopyAssignment = true;
5494
5495 // -- each direct base class B of X has a copy assignment operator
5496 // whose parameter is of type const B&, const volatile B& or B,
5497 // and
5498 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5499 BaseEnd = ClassDecl->bases_end();
5500 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
5501 assert(!Base->getType()->isDependentType() &&
5502 "Cannot generate implicit members for class with dependent bases.");
5503 const CXXRecordDecl *BaseClassDecl
5504 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005505 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00005506 }
5507
5508 // -- for all the nonstatic data members of X that are of a class
5509 // type M (or array thereof), each such class type has a copy
5510 // assignment operator whose parameter is of type const M&,
5511 // const volatile M& or M.
5512 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5513 FieldEnd = ClassDecl->field_end();
5514 HasConstCopyAssignment && Field != FieldEnd;
5515 ++Field) {
5516 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5517 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5518 const CXXRecordDecl *FieldClassDecl
5519 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005520 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00005521 }
5522 }
5523
5524 // Otherwise, the implicitly declared copy assignment operator will
5525 // have the form
5526 //
5527 // X& X::operator=(X&)
5528 QualType ArgType = Context.getTypeDeclType(ClassDecl);
5529 QualType RetType = Context.getLValueReferenceType(ArgType);
5530 if (HasConstCopyAssignment)
5531 ArgType = ArgType.withConst();
5532 ArgType = Context.getLValueReferenceType(ArgType);
5533
Douglas Gregorb87786f2010-07-01 17:48:08 +00005534 // C++ [except.spec]p14:
5535 // An implicitly declared special member function (Clause 12) shall have an
5536 // exception-specification. [...]
5537 ImplicitExceptionSpecification ExceptSpec(Context);
5538 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5539 BaseEnd = ClassDecl->bases_end();
5540 Base != BaseEnd; ++Base) {
Douglas Gregora376d102010-07-02 21:50:04 +00005541 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00005542 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005543
5544 if (!BaseClassDecl->hasDeclaredCopyAssignment())
5545 DeclareImplicitCopyAssignment(BaseClassDecl);
5546
Douglas Gregorb87786f2010-07-01 17:48:08 +00005547 if (CXXMethodDecl *CopyAssign
5548 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5549 ExceptSpec.CalledDecl(CopyAssign);
5550 }
5551 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5552 FieldEnd = ClassDecl->field_end();
5553 Field != FieldEnd;
5554 ++Field) {
5555 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5556 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora376d102010-07-02 21:50:04 +00005557 CXXRecordDecl *FieldClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00005558 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005559
5560 if (!FieldClassDecl->hasDeclaredCopyAssignment())
5561 DeclareImplicitCopyAssignment(FieldClassDecl);
5562
Douglas Gregorb87786f2010-07-01 17:48:08 +00005563 if (CXXMethodDecl *CopyAssign
5564 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5565 ExceptSpec.CalledDecl(CopyAssign);
5566 }
5567 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00005568
Douglas Gregord3c35902010-07-01 16:36:15 +00005569 // An implicitly-declared copy assignment operator is an inline public
5570 // member of its class.
John McCalle23cf432010-12-14 08:05:40 +00005571 FunctionProtoType::ExtProtoInfo EPI;
Sebastian Redl60618fa2011-03-12 11:50:43 +00005572 EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00005573 EPI.NumExceptions = ExceptSpec.size();
5574 EPI.Exceptions = ExceptSpec.data();
Douglas Gregord3c35902010-07-01 16:36:15 +00005575 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005576 SourceLocation ClassLoc = ClassDecl->getLocation();
5577 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregord3c35902010-07-01 16:36:15 +00005578 CXXMethodDecl *CopyAssignment
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005579 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
John McCalle23cf432010-12-14 08:05:40 +00005580 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregord3c35902010-07-01 16:36:15 +00005581 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00005582 /*StorageClassAsWritten=*/SC_None,
Douglas Gregorf5251602011-03-08 17:10:18 +00005583 /*isInline=*/true,
5584 SourceLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00005585 CopyAssignment->setAccess(AS_public);
5586 CopyAssignment->setImplicit();
5587 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregord3c35902010-07-01 16:36:15 +00005588
5589 // Add the parameter to the operator.
5590 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005591 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregord3c35902010-07-01 16:36:15 +00005592 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00005593 SC_None,
5594 SC_None, 0);
Douglas Gregord3c35902010-07-01 16:36:15 +00005595 CopyAssignment->setParams(&FromParam, 1);
5596
Douglas Gregora376d102010-07-02 21:50:04 +00005597 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00005598 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
5599
Douglas Gregor23c94db2010-07-02 17:43:08 +00005600 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00005601 PushOnScopeChains(CopyAssignment, S, false);
5602 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00005603
5604 AddOverriddenMethods(ClassDecl, CopyAssignment);
5605 return CopyAssignment;
5606}
5607
Douglas Gregor06a9f362010-05-01 20:49:11 +00005608void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
5609 CXXMethodDecl *CopyAssignOperator) {
5610 assert((CopyAssignOperator->isImplicit() &&
5611 CopyAssignOperator->isOverloadedOperator() &&
5612 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005613 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00005614 "DefineImplicitCopyAssignment called for wrong function");
5615
5616 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
5617
5618 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
5619 CopyAssignOperator->setInvalidDecl();
5620 return;
5621 }
5622
5623 CopyAssignOperator->setUsed();
5624
5625 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00005626 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005627
5628 // C++0x [class.copy]p30:
5629 // The implicitly-defined or explicitly-defaulted copy assignment operator
5630 // for a non-union class X performs memberwise copy assignment of its
5631 // subobjects. The direct base classes of X are assigned first, in the
5632 // order of their declaration in the base-specifier-list, and then the
5633 // immediate non-static data members of X are assigned, in the order in
5634 // which they were declared in the class definition.
5635
5636 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00005637 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005638
5639 // The parameter for the "other" object, which we are copying from.
5640 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
5641 Qualifiers OtherQuals = Other->getType().getQualifiers();
5642 QualType OtherRefType = Other->getType();
5643 if (const LValueReferenceType *OtherRef
5644 = OtherRefType->getAs<LValueReferenceType>()) {
5645 OtherRefType = OtherRef->getPointeeType();
5646 OtherQuals = OtherRefType.getQualifiers();
5647 }
5648
5649 // Our location for everything implicitly-generated.
5650 SourceLocation Loc = CopyAssignOperator->getLocation();
5651
5652 // Construct a reference to the "other" object. We'll be using this
5653 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00005654 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005655 assert(OtherRef && "Reference to parameter cannot fail!");
5656
5657 // Construct the "this" pointer. We'll be using this throughout the generated
5658 // ASTs.
5659 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
5660 assert(This && "Reference to this cannot fail!");
5661
5662 // Assign base classes.
5663 bool Invalid = false;
5664 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5665 E = ClassDecl->bases_end(); Base != E; ++Base) {
5666 // Form the assignment:
5667 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
5668 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00005669 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005670 Invalid = true;
5671 continue;
5672 }
5673
John McCallf871d0c2010-08-07 06:22:56 +00005674 CXXCastPath BasePath;
5675 BasePath.push_back(Base);
5676
Douglas Gregor06a9f362010-05-01 20:49:11 +00005677 // Construct the "from" expression, which is an implicit cast to the
5678 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00005679 Expr *From = OtherRef;
John Wiegley429bb272011-04-08 18:41:53 +00005680 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
5681 CK_UncheckedDerivedToBase,
5682 VK_LValue, &BasePath).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005683
5684 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00005685 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005686
5687 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley429bb272011-04-08 18:41:53 +00005688 To = ImpCastExprToType(To.take(),
5689 Context.getCVRQualifiedType(BaseType,
5690 CopyAssignOperator->getTypeQualifiers()),
5691 CK_UncheckedDerivedToBase,
5692 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005693
5694 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00005695 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00005696 To.get(), From,
5697 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005698 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005699 Diag(CurrentLocation, diag::note_member_synthesized_at)
5700 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5701 CopyAssignOperator->setInvalidDecl();
5702 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005703 }
5704
5705 // Success! Record the copy.
5706 Statements.push_back(Copy.takeAs<Expr>());
5707 }
5708
5709 // \brief Reference to the __builtin_memcpy function.
5710 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00005711 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005712 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005713
5714 // Assign non-static members.
5715 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5716 FieldEnd = ClassDecl->field_end();
5717 Field != FieldEnd; ++Field) {
5718 // Check for members of reference type; we can't copy those.
5719 if (Field->getType()->isReferenceType()) {
5720 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5721 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5722 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005723 Diag(CurrentLocation, diag::note_member_synthesized_at)
5724 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005725 Invalid = true;
5726 continue;
5727 }
5728
5729 // Check for members of const-qualified, non-class type.
5730 QualType BaseType = Context.getBaseElementType(Field->getType());
5731 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5732 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5733 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
5734 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005735 Diag(CurrentLocation, diag::note_member_synthesized_at)
5736 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005737 Invalid = true;
5738 continue;
5739 }
5740
5741 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00005742 if (FieldType->isIncompleteArrayType()) {
5743 assert(ClassDecl->hasFlexibleArrayMember() &&
5744 "Incomplete array type is not valid");
5745 continue;
5746 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005747
5748 // Build references to the field in the object we're copying from and to.
5749 CXXScopeSpec SS; // Intentionally empty
5750 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5751 LookupMemberName);
5752 MemberLookup.addDecl(*Field);
5753 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00005754 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00005755 Loc, /*IsArrow=*/false,
5756 SS, 0, MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00005757 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00005758 Loc, /*IsArrow=*/true,
5759 SS, 0, MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005760 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5761 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5762
5763 // If the field should be copied with __builtin_memcpy rather than via
5764 // explicit assignments, do so. This optimization only applies for arrays
5765 // of scalars and arrays of class type with trivial copy-assignment
5766 // operators.
5767 if (FieldType->isArrayType() &&
5768 (!BaseType->isRecordType() ||
5769 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5770 ->hasTrivialCopyAssignment())) {
5771 // Compute the size of the memory buffer to be copied.
5772 QualType SizeType = Context.getSizeType();
5773 llvm::APInt Size(Context.getTypeSize(SizeType),
5774 Context.getTypeSizeInChars(BaseType).getQuantity());
5775 for (const ConstantArrayType *Array
5776 = Context.getAsConstantArrayType(FieldType);
5777 Array;
5778 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00005779 llvm::APInt ArraySize
5780 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00005781 Size *= ArraySize;
5782 }
5783
5784 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00005785 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5786 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005787
5788 bool NeedsCollectableMemCpy =
5789 (BaseType->isRecordType() &&
5790 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5791
5792 if (NeedsCollectableMemCpy) {
5793 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00005794 // Create a reference to the __builtin_objc_memmove_collectable function.
5795 LookupResult R(*this,
5796 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005797 Loc, LookupOrdinaryName);
5798 LookupName(R, TUScope, true);
5799
5800 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5801 if (!CollectableMemCpy) {
5802 // Something went horribly wrong earlier, and we will have
5803 // complained about it.
5804 Invalid = true;
5805 continue;
5806 }
5807
5808 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5809 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00005810 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005811 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5812 }
5813 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005814 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005815 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005816 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5817 LookupOrdinaryName);
5818 LookupName(R, TUScope, true);
5819
5820 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5821 if (!BuiltinMemCpy) {
5822 // Something went horribly wrong earlier, and we will have complained
5823 // about it.
5824 Invalid = true;
5825 continue;
5826 }
5827
5828 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5829 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00005830 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005831 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5832 }
5833
John McCallca0408f2010-08-23 06:44:23 +00005834 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005835 CallArgs.push_back(To.takeAs<Expr>());
5836 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00005837 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00005838 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005839 if (NeedsCollectableMemCpy)
5840 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00005841 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005842 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00005843 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005844 else
5845 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00005846 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005847 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00005848 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005849
Douglas Gregor06a9f362010-05-01 20:49:11 +00005850 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5851 Statements.push_back(Call.takeAs<Expr>());
5852 continue;
5853 }
5854
5855 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00005856 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCall9ae2f072010-08-23 23:25:46 +00005857 To.get(), From.get(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005858 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005859 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005860 Diag(CurrentLocation, diag::note_member_synthesized_at)
5861 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5862 CopyAssignOperator->setInvalidDecl();
5863 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005864 }
5865
5866 // Success! Record the copy.
5867 Statements.push_back(Copy.takeAs<Stmt>());
5868 }
5869
5870 if (!Invalid) {
5871 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00005872 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005873
John McCall60d7b3a2010-08-24 06:29:42 +00005874 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00005875 if (Return.isInvalid())
5876 Invalid = true;
5877 else {
5878 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005879
5880 if (Trap.hasErrorOccurred()) {
5881 Diag(CurrentLocation, diag::note_member_synthesized_at)
5882 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5883 Invalid = true;
5884 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005885 }
5886 }
5887
5888 if (Invalid) {
5889 CopyAssignOperator->setInvalidDecl();
5890 return;
5891 }
5892
John McCall60d7b3a2010-08-24 06:29:42 +00005893 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregor06a9f362010-05-01 20:49:11 +00005894 /*isStmtExpr=*/false);
5895 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5896 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005897}
5898
Douglas Gregor23c94db2010-07-02 17:43:08 +00005899CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5900 CXXRecordDecl *ClassDecl) {
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005901 // C++ [class.copy]p4:
5902 // If the class definition does not explicitly declare a copy
5903 // constructor, one is declared implicitly.
5904
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005905 // C++ [class.copy]p5:
5906 // The implicitly-declared copy constructor for a class X will
5907 // have the form
5908 //
5909 // X::X(const X&)
5910 //
5911 // if
5912 bool HasConstCopyConstructor = true;
5913
5914 // -- each direct or virtual base class B of X has a copy
5915 // constructor whose first parameter is of type const B& or
5916 // const volatile B&, and
5917 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5918 BaseEnd = ClassDecl->bases_end();
5919 HasConstCopyConstructor && Base != BaseEnd;
5920 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005921 // Virtual bases are handled below.
5922 if (Base->isVirtual())
5923 continue;
5924
Douglas Gregor22584312010-07-02 23:41:54 +00005925 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005926 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005927 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5928 DeclareImplicitCopyConstructor(BaseClassDecl);
5929
Douglas Gregor598a8542010-07-01 18:27:03 +00005930 HasConstCopyConstructor
5931 = BaseClassDecl->hasConstCopyConstructor(Context);
5932 }
5933
5934 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5935 BaseEnd = ClassDecl->vbases_end();
5936 HasConstCopyConstructor && Base != BaseEnd;
5937 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005938 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005939 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005940 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5941 DeclareImplicitCopyConstructor(BaseClassDecl);
5942
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005943 HasConstCopyConstructor
5944 = BaseClassDecl->hasConstCopyConstructor(Context);
5945 }
5946
5947 // -- for all the nonstatic data members of X that are of a
5948 // class type M (or array thereof), each such class type
5949 // has a copy constructor whose first parameter is of type
5950 // const M& or const volatile M&.
5951 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5952 FieldEnd = ClassDecl->field_end();
5953 HasConstCopyConstructor && Field != FieldEnd;
5954 ++Field) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005955 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005956 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005957 CXXRecordDecl *FieldClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005958 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005959 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5960 DeclareImplicitCopyConstructor(FieldClassDecl);
5961
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005962 HasConstCopyConstructor
Douglas Gregor598a8542010-07-01 18:27:03 +00005963 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005964 }
5965 }
5966
5967 // Otherwise, the implicitly declared copy constructor will have
5968 // the form
5969 //
5970 // X::X(X&)
5971 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5972 QualType ArgType = ClassType;
5973 if (HasConstCopyConstructor)
5974 ArgType = ArgType.withConst();
5975 ArgType = Context.getLValueReferenceType(ArgType);
5976
Douglas Gregor0d405db2010-07-01 20:59:04 +00005977 // C++ [except.spec]p14:
5978 // An implicitly declared special member function (Clause 12) shall have an
5979 // exception-specification. [...]
5980 ImplicitExceptionSpecification ExceptSpec(Context);
5981 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5982 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5983 BaseEnd = ClassDecl->bases_end();
5984 Base != BaseEnd;
5985 ++Base) {
5986 // Virtual bases are handled below.
5987 if (Base->isVirtual())
5988 continue;
5989
Douglas Gregor22584312010-07-02 23:41:54 +00005990 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005991 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005992 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5993 DeclareImplicitCopyConstructor(BaseClassDecl);
5994
Douglas Gregor0d405db2010-07-01 20:59:04 +00005995 if (CXXConstructorDecl *CopyConstructor
5996 = BaseClassDecl->getCopyConstructor(Context, Quals))
5997 ExceptSpec.CalledDecl(CopyConstructor);
5998 }
5999 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
6000 BaseEnd = ClassDecl->vbases_end();
6001 Base != BaseEnd;
6002 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00006003 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00006004 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00006005 if (!BaseClassDecl->hasDeclaredCopyConstructor())
6006 DeclareImplicitCopyConstructor(BaseClassDecl);
6007
Douglas Gregor0d405db2010-07-01 20:59:04 +00006008 if (CXXConstructorDecl *CopyConstructor
6009 = BaseClassDecl->getCopyConstructor(Context, Quals))
6010 ExceptSpec.CalledDecl(CopyConstructor);
6011 }
6012 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6013 FieldEnd = ClassDecl->field_end();
6014 Field != FieldEnd;
6015 ++Field) {
6016 QualType FieldType = Context.getBaseElementType((*Field)->getType());
6017 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00006018 CXXRecordDecl *FieldClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00006019 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00006020 if (!FieldClassDecl->hasDeclaredCopyConstructor())
6021 DeclareImplicitCopyConstructor(FieldClassDecl);
6022
Douglas Gregor0d405db2010-07-01 20:59:04 +00006023 if (CXXConstructorDecl *CopyConstructor
6024 = FieldClassDecl->getCopyConstructor(Context, Quals))
6025 ExceptSpec.CalledDecl(CopyConstructor);
6026 }
6027 }
Sebastian Redl60618fa2011-03-12 11:50:43 +00006028
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006029 // An implicitly-declared copy constructor is an inline public
6030 // member of its class.
John McCalle23cf432010-12-14 08:05:40 +00006031 FunctionProtoType::ExtProtoInfo EPI;
Sebastian Redl60618fa2011-03-12 11:50:43 +00006032 EPI.ExceptionSpecType = ExceptSpec.getExceptionSpecType();
John McCalle23cf432010-12-14 08:05:40 +00006033 EPI.NumExceptions = ExceptSpec.size();
6034 EPI.Exceptions = ExceptSpec.data();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006035 DeclarationName Name
6036 = Context.DeclarationNames.getCXXConstructorName(
6037 Context.getCanonicalType(ClassType));
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006038 SourceLocation ClassLoc = ClassDecl->getLocation();
6039 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006040 CXXConstructorDecl *CopyConstructor
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006041 = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006042 Context.getFunctionType(Context.VoidTy,
John McCalle23cf432010-12-14 08:05:40 +00006043 &ArgType, 1, EPI),
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006044 /*TInfo=*/0,
6045 /*isExplicit=*/false,
6046 /*isInline=*/true,
6047 /*isImplicitlyDeclared=*/true);
6048 CopyConstructor->setAccess(AS_public);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006049 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
6050
Douglas Gregor22584312010-07-02 23:41:54 +00006051 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00006052 ++ASTContext::NumImplicitCopyConstructorsDeclared;
6053
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006054 // Add the parameter to the constructor.
6055 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006056 ClassLoc, ClassLoc,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006057 /*IdentifierInfo=*/0,
6058 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00006059 SC_None,
6060 SC_None, 0);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006061 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor23c94db2010-07-02 17:43:08 +00006062 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00006063 PushOnScopeChains(CopyConstructor, S, false);
6064 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00006065
6066 return CopyConstructor;
6067}
6068
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006069void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
6070 CXXConstructorDecl *CopyConstructor,
6071 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00006072 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00006073 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00006074 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006075 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00006076
Anders Carlsson63010a72010-04-23 16:24:12 +00006077 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006078 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006079
Douglas Gregor39957dc2010-05-01 15:04:51 +00006080 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00006081 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006082
Sean Huntcbb67482011-01-08 20:30:50 +00006083 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00006084 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00006085 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00006086 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00006087 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00006088 } else {
6089 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
6090 CopyConstructor->getLocation(),
6091 MultiStmtArg(*this, 0, 0),
6092 /*isStmtExpr=*/false)
6093 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00006094 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00006095
6096 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006097}
6098
John McCall60d7b3a2010-08-24 06:29:42 +00006099ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00006100Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00006101 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00006102 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006103 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00006104 unsigned ConstructKind,
6105 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00006106 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00006107
Douglas Gregor2f599792010-04-02 18:24:57 +00006108 // C++0x [class.copy]p34:
6109 // When certain criteria are met, an implementation is allowed to
6110 // omit the copy/move construction of a class object, even if the
6111 // copy/move constructor and/or destructor for the object have
6112 // side effects. [...]
6113 // - when a temporary class object that has not been bound to a
6114 // reference (12.2) would be copied/moved to a class object
6115 // with the same cv-unqualified type, the copy/move operation
6116 // can be omitted by constructing the temporary object
6117 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00006118 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregor70a21de2011-01-27 23:24:55 +00006119 Constructor->isCopyOrMoveConstructor() && ExprArgs.size() >= 1) {
Douglas Gregor2f599792010-04-02 18:24:57 +00006120 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00006121 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00006122 }
Mike Stump1eb44332009-09-09 15:08:12 +00006123
6124 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006125 Elidable, move(ExprArgs), RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00006126 ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00006127}
6128
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00006129/// BuildCXXConstructExpr - Creates a complete call to a constructor,
6130/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00006131ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00006132Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
6133 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00006134 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00006135 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00006136 unsigned ConstructKind,
6137 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00006138 unsigned NumExprs = ExprArgs.size();
6139 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00006140
Nick Lewycky909a70d2011-03-25 01:44:32 +00006141 for (specific_attr_iterator<NonNullAttr>
6142 i = Constructor->specific_attr_begin<NonNullAttr>(),
6143 e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
6144 const NonNullAttr *NonNull = *i;
6145 CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
6146 }
6147
Douglas Gregor7edfb692009-11-23 12:27:39 +00006148 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00006149 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00006150 Constructor, Elidable, Exprs, NumExprs,
John McCall7a1fad32010-08-24 07:32:53 +00006151 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00006152 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
6153 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00006154}
6155
Mike Stump1eb44332009-09-09 15:08:12 +00006156bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00006157 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00006158 MultiExprArg Exprs) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00006159 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00006160 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00006161 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Chandler Carruth428edaf2010-10-25 08:47:36 +00006162 move(Exprs), false, CXXConstructExpr::CK_Complete,
6163 SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00006164 if (TempResult.isInvalid())
6165 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00006166
Anders Carlssonda3f4e22009-08-25 05:12:04 +00006167 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00006168 CheckImplicitConversions(Temp, VD->getLocation());
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006169 MarkDeclarationReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00006170 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00006171 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00006172
Anders Carlssonfe2de492009-08-25 05:18:00 +00006173 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00006174}
6175
John McCall68c6c9a2010-02-02 09:10:11 +00006176void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00006177 if (VD->isInvalidDecl()) return;
6178
John McCall68c6c9a2010-02-02 09:10:11 +00006179 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00006180 if (ClassDecl->isInvalidDecl()) return;
6181 if (ClassDecl->hasTrivialDestructor()) return;
6182 if (ClassDecl->isDependentContext()) return;
John McCall626e96e2010-08-01 20:20:59 +00006183
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00006184 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
6185 MarkDeclarationReferenced(VD->getLocation(), Destructor);
6186 CheckDestructorAccess(VD->getLocation(), Destructor,
6187 PDiag(diag::err_access_dtor_var)
6188 << VD->getDeclName()
6189 << VD->getType());
Anders Carlsson2b32dad2011-03-24 01:01:41 +00006190
Chandler Carruth1d71cbf2011-03-27 21:26:48 +00006191 if (!VD->hasGlobalStorage()) return;
6192
6193 // Emit warning for non-trivial dtor in global scope (a real global,
6194 // class-static, function-static).
6195 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
6196
6197 // TODO: this should be re-enabled for static locals by !CXAAtExit
6198 if (!VD->isStaticLocal())
6199 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006200}
6201
Mike Stump1eb44332009-09-09 15:08:12 +00006202/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006203/// ActOnDeclarator, when a C++ direct initializer is present.
6204/// e.g: "int x(1);"
John McCalld226f652010-08-21 09:40:31 +00006205void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006206 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00006207 MultiExprArg Exprs,
Richard Smith34b41d92011-02-20 03:19:35 +00006208 SourceLocation RParenLoc,
6209 bool TypeMayContainAuto) {
Daniel Dunbar51846262009-12-24 19:19:26 +00006210 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006211
6212 // If there is no declaration, there was an error parsing it. Just ignore
6213 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00006214 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006215 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006216
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006217 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
6218 if (!VDecl) {
6219 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
6220 RealDecl->setInvalidDecl();
6221 return;
6222 }
6223
Richard Smith34b41d92011-02-20 03:19:35 +00006224 // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
6225 if (TypeMayContainAuto && VDecl->getType()->getContainedAutoType()) {
Richard Smith34b41d92011-02-20 03:19:35 +00006226 // FIXME: n3225 doesn't actually seem to indicate this is ill-formed
6227 if (Exprs.size() > 1) {
6228 Diag(Exprs.get()[1]->getSourceRange().getBegin(),
6229 diag::err_auto_var_init_multiple_expressions)
6230 << VDecl->getDeclName() << VDecl->getType()
6231 << VDecl->getSourceRange();
6232 RealDecl->setInvalidDecl();
6233 return;
6234 }
6235
6236 Expr *Init = Exprs.get()[0];
Richard Smitha085da82011-03-17 16:11:59 +00006237 TypeSourceInfo *DeducedType = 0;
6238 if (!DeduceAutoType(VDecl->getTypeSourceInfo(), Init, DeducedType))
Richard Smith34b41d92011-02-20 03:19:35 +00006239 Diag(VDecl->getLocation(), diag::err_auto_var_deduction_failure)
6240 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
6241 << Init->getSourceRange();
Richard Smitha085da82011-03-17 16:11:59 +00006242 if (!DeducedType) {
Richard Smith34b41d92011-02-20 03:19:35 +00006243 RealDecl->setInvalidDecl();
6244 return;
6245 }
Richard Smitha085da82011-03-17 16:11:59 +00006246 VDecl->setTypeSourceInfo(DeducedType);
6247 VDecl->setType(DeducedType->getType());
Richard Smith34b41d92011-02-20 03:19:35 +00006248
6249 // If this is a redeclaration, check that the type we just deduced matches
6250 // the previously declared type.
6251 if (VarDecl *Old = VDecl->getPreviousDeclaration())
6252 MergeVarDeclTypes(VDecl, Old);
6253 }
6254
Douglas Gregor83ddad32009-08-26 21:14:46 +00006255 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00006256 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006257 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
6258 //
6259 // Clients that want to distinguish between the two forms, can check for
6260 // direct initializer using VarDecl::hasCXXDirectInitializer().
6261 // A major benefit is that clients that don't particularly care about which
6262 // exactly form was it (like the CodeGen) can handle both cases without
6263 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006264
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006265 // C++ 8.5p11:
6266 // The form of initialization (using parentheses or '=') is generally
6267 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006268 // class type.
6269
Douglas Gregor4dffad62010-02-11 22:55:30 +00006270 if (!VDecl->getType()->isDependentType() &&
6271 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00006272 diag::err_typecheck_decl_incomplete_type)) {
6273 VDecl->setInvalidDecl();
6274 return;
6275 }
6276
Douglas Gregor90f93822009-12-22 22:17:25 +00006277 // The variable can not have an abstract class type.
6278 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
6279 diag::err_abstract_type_in_decl,
6280 AbstractVariableType))
6281 VDecl->setInvalidDecl();
6282
Sebastian Redl31310a22010-02-01 20:16:42 +00006283 const VarDecl *Def;
6284 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00006285 Diag(VDecl->getLocation(), diag::err_redefinition)
6286 << VDecl->getDeclName();
6287 Diag(Def->getLocation(), diag::note_previous_definition);
6288 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006289 return;
6290 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00006291
Douglas Gregor3a91abf2010-08-24 05:27:49 +00006292 // C++ [class.static.data]p4
6293 // If a static data member is of const integral or const
6294 // enumeration type, its declaration in the class definition can
6295 // specify a constant-initializer which shall be an integral
6296 // constant expression (5.19). In that case, the member can appear
6297 // in integral constant expressions. The member shall still be
6298 // defined in a namespace scope if it is used in the program and the
6299 // namespace scope definition shall not contain an initializer.
6300 //
6301 // We already performed a redefinition check above, but for static
6302 // data members we also need to check whether there was an in-class
6303 // declaration with an initializer.
6304 const VarDecl* PrevInit = 0;
6305 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
6306 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
6307 Diag(PrevInit->getLocation(), diag::note_previous_definition);
6308 return;
6309 }
6310
Douglas Gregora31040f2010-12-16 01:31:22 +00006311 bool IsDependent = false;
6312 for (unsigned I = 0, N = Exprs.size(); I != N; ++I) {
6313 if (DiagnoseUnexpandedParameterPack(Exprs.get()[I], UPPC_Expression)) {
6314 VDecl->setInvalidDecl();
6315 return;
6316 }
6317
6318 if (Exprs.get()[I]->isTypeDependent())
6319 IsDependent = true;
6320 }
6321
Douglas Gregor4dffad62010-02-11 22:55:30 +00006322 // If either the declaration has a dependent type or if any of the
6323 // expressions is type-dependent, we represent the initialization
6324 // via a ParenListExpr for later use during template instantiation.
Douglas Gregora31040f2010-12-16 01:31:22 +00006325 if (VDecl->getType()->isDependentType() || IsDependent) {
Douglas Gregor4dffad62010-02-11 22:55:30 +00006326 // Let clients know that initialization was done with a direct initializer.
6327 VDecl->setCXXDirectInitializer(true);
6328
6329 // Store the initialization expressions as a ParenListExpr.
6330 unsigned NumExprs = Exprs.size();
6331 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
6332 (Expr **)Exprs.release(),
6333 NumExprs, RParenLoc));
6334 return;
6335 }
Douglas Gregor90f93822009-12-22 22:17:25 +00006336
6337 // Capture the variable that is being initialized and the style of
6338 // initialization.
6339 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
6340
6341 // FIXME: Poor source location information.
6342 InitializationKind Kind
6343 = InitializationKind::CreateDirect(VDecl->getLocation(),
6344 LParenLoc, RParenLoc);
6345
6346 InitializationSequence InitSeq(*this, Entity, Kind,
John McCall9ae2f072010-08-23 23:25:46 +00006347 Exprs.get(), Exprs.size());
John McCall60d7b3a2010-08-24 06:29:42 +00006348 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregor90f93822009-12-22 22:17:25 +00006349 if (Result.isInvalid()) {
6350 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006351 return;
6352 }
John McCallb4eb64d2010-10-08 02:01:28 +00006353
6354 CheckImplicitConversions(Result.get(), LParenLoc);
Douglas Gregor90f93822009-12-22 22:17:25 +00006355
Douglas Gregor53c374f2010-12-07 00:41:46 +00006356 Result = MaybeCreateExprWithCleanups(Result);
Douglas Gregor838db382010-02-11 01:19:42 +00006357 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006358 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00006359
John McCall2998d6b2011-01-19 11:48:09 +00006360 CheckCompleteVariableDeclaration(VDecl);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006361}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00006362
Douglas Gregor39da0b82009-09-09 23:08:42 +00006363/// \brief Given a constructor and the set of arguments provided for the
6364/// constructor, convert the arguments and add any required default arguments
6365/// to form a proper call to this constructor.
6366///
6367/// \returns true if an error occurred, false otherwise.
6368bool
6369Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
6370 MultiExprArg ArgsPtr,
6371 SourceLocation Loc,
John McCallca0408f2010-08-23 06:44:23 +00006372 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00006373 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
6374 unsigned NumArgs = ArgsPtr.size();
6375 Expr **Args = (Expr **)ArgsPtr.get();
6376
6377 const FunctionProtoType *Proto
6378 = Constructor->getType()->getAs<FunctionProtoType>();
6379 assert(Proto && "Constructor without a prototype?");
6380 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00006381
6382 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006383 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00006384 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006385 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00006386 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006387
6388 VariadicCallType CallType =
6389 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
6390 llvm::SmallVector<Expr *, 8> AllArgs;
6391 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
6392 Proto, 0, Args, NumArgs, AllArgs,
6393 CallType);
6394 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
6395 ConvertedArgs.push_back(AllArgs[i]);
6396 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00006397}
6398
Anders Carlsson20d45d22009-12-12 00:32:00 +00006399static inline bool
6400CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
6401 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00006402 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00006403 if (isa<NamespaceDecl>(DC)) {
6404 return SemaRef.Diag(FnDecl->getLocation(),
6405 diag::err_operator_new_delete_declared_in_namespace)
6406 << FnDecl->getDeclName();
6407 }
6408
6409 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00006410 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00006411 return SemaRef.Diag(FnDecl->getLocation(),
6412 diag::err_operator_new_delete_declared_static)
6413 << FnDecl->getDeclName();
6414 }
6415
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00006416 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00006417}
6418
Anders Carlsson156c78e2009-12-13 17:53:43 +00006419static inline bool
6420CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
6421 CanQualType ExpectedResultType,
6422 CanQualType ExpectedFirstParamType,
6423 unsigned DependentParamTypeDiag,
6424 unsigned InvalidParamTypeDiag) {
6425 QualType ResultType =
6426 FnDecl->getType()->getAs<FunctionType>()->getResultType();
6427
6428 // Check that the result type is not dependent.
6429 if (ResultType->isDependentType())
6430 return SemaRef.Diag(FnDecl->getLocation(),
6431 diag::err_operator_new_delete_dependent_result_type)
6432 << FnDecl->getDeclName() << ExpectedResultType;
6433
6434 // Check that the result type is what we expect.
6435 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
6436 return SemaRef.Diag(FnDecl->getLocation(),
6437 diag::err_operator_new_delete_invalid_result_type)
6438 << FnDecl->getDeclName() << ExpectedResultType;
6439
6440 // A function template must have at least 2 parameters.
6441 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
6442 return SemaRef.Diag(FnDecl->getLocation(),
6443 diag::err_operator_new_delete_template_too_few_parameters)
6444 << FnDecl->getDeclName();
6445
6446 // The function decl must have at least 1 parameter.
6447 if (FnDecl->getNumParams() == 0)
6448 return SemaRef.Diag(FnDecl->getLocation(),
6449 diag::err_operator_new_delete_too_few_parameters)
6450 << FnDecl->getDeclName();
6451
6452 // Check the the first parameter type is not dependent.
6453 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
6454 if (FirstParamType->isDependentType())
6455 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
6456 << FnDecl->getDeclName() << ExpectedFirstParamType;
6457
6458 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00006459 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00006460 ExpectedFirstParamType)
6461 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
6462 << FnDecl->getDeclName() << ExpectedFirstParamType;
6463
6464 return false;
6465}
6466
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006467static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00006468CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00006469 // C++ [basic.stc.dynamic.allocation]p1:
6470 // A program is ill-formed if an allocation function is declared in a
6471 // namespace scope other than global scope or declared static in global
6472 // scope.
6473 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6474 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00006475
6476 CanQualType SizeTy =
6477 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
6478
6479 // C++ [basic.stc.dynamic.allocation]p1:
6480 // The return type shall be void*. The first parameter shall have type
6481 // std::size_t.
6482 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
6483 SizeTy,
6484 diag::err_operator_new_dependent_param_type,
6485 diag::err_operator_new_param_type))
6486 return true;
6487
6488 // C++ [basic.stc.dynamic.allocation]p1:
6489 // The first parameter shall not have an associated default argument.
6490 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00006491 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00006492 diag::err_operator_new_default_arg)
6493 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
6494
6495 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00006496}
6497
6498static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006499CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6500 // C++ [basic.stc.dynamic.deallocation]p1:
6501 // A program is ill-formed if deallocation functions are declared in a
6502 // namespace scope other than global scope or declared static in global
6503 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00006504 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6505 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006506
6507 // C++ [basic.stc.dynamic.deallocation]p2:
6508 // Each deallocation function shall return void and its first parameter
6509 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00006510 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
6511 SemaRef.Context.VoidPtrTy,
6512 diag::err_operator_delete_dependent_param_type,
6513 diag::err_operator_delete_param_type))
6514 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006515
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006516 return false;
6517}
6518
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006519/// CheckOverloadedOperatorDeclaration - Check whether the declaration
6520/// of this overloaded operator is well-formed. If so, returns false;
6521/// otherwise, emits appropriate diagnostics and returns true.
6522bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006523 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006524 "Expected an overloaded operator declaration");
6525
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006526 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
6527
Mike Stump1eb44332009-09-09 15:08:12 +00006528 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006529 // The allocation and deallocation functions, operator new,
6530 // operator new[], operator delete and operator delete[], are
6531 // described completely in 3.7.3. The attributes and restrictions
6532 // found in the rest of this subclause do not apply to them unless
6533 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00006534 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006535 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00006536
Anders Carlssona3ccda52009-12-12 00:26:23 +00006537 if (Op == OO_New || Op == OO_Array_New)
6538 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006539
6540 // C++ [over.oper]p6:
6541 // An operator function shall either be a non-static member
6542 // function or be a non-member function and have at least one
6543 // parameter whose type is a class, a reference to a class, an
6544 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006545 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
6546 if (MethodDecl->isStatic())
6547 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006548 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006549 } else {
6550 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006551 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
6552 ParamEnd = FnDecl->param_end();
6553 Param != ParamEnd; ++Param) {
6554 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00006555 if (ParamType->isDependentType() || ParamType->isRecordType() ||
6556 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006557 ClassOrEnumParam = true;
6558 break;
6559 }
6560 }
6561
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006562 if (!ClassOrEnumParam)
6563 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006564 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006565 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006566 }
6567
6568 // C++ [over.oper]p8:
6569 // An operator function cannot have default arguments (8.3.6),
6570 // except where explicitly stated below.
6571 //
Mike Stump1eb44332009-09-09 15:08:12 +00006572 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006573 // (C++ [over.call]p1).
6574 if (Op != OO_Call) {
6575 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
6576 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00006577 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00006578 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00006579 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00006580 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006581 }
6582 }
6583
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006584 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
6585 { false, false, false }
6586#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
6587 , { Unary, Binary, MemberOnly }
6588#include "clang/Basic/OperatorKinds.def"
6589 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006590
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006591 bool CanBeUnaryOperator = OperatorUses[Op][0];
6592 bool CanBeBinaryOperator = OperatorUses[Op][1];
6593 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006594
6595 // C++ [over.oper]p8:
6596 // [...] Operator functions cannot have more or fewer parameters
6597 // than the number required for the corresponding operator, as
6598 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00006599 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006600 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006601 if (Op != OO_Call &&
6602 ((NumParams == 1 && !CanBeUnaryOperator) ||
6603 (NumParams == 2 && !CanBeBinaryOperator) ||
6604 (NumParams < 1) || (NumParams > 2))) {
6605 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00006606 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006607 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00006608 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006609 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00006610 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006611 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00006612 assert(CanBeBinaryOperator &&
6613 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00006614 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006615 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006616
Chris Lattner416e46f2008-11-21 07:57:12 +00006617 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006618 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006619 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00006620
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006621 // Overloaded operators other than operator() cannot be variadic.
6622 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00006623 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006624 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006625 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006626 }
6627
6628 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006629 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
6630 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006631 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006632 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006633 }
6634
6635 // C++ [over.inc]p1:
6636 // The user-defined function called operator++ implements the
6637 // prefix and postfix ++ operator. If this function is a member
6638 // function with no parameters, or a non-member function with one
6639 // parameter of class or enumeration type, it defines the prefix
6640 // increment operator ++ for objects of that type. If the function
6641 // is a member function with one parameter (which shall be of type
6642 // int) or a non-member function with two parameters (the second
6643 // of which shall be of type int), it defines the postfix
6644 // increment operator ++ for objects of that type.
6645 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
6646 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
6647 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00006648 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006649 ParamIsInt = BT->getKind() == BuiltinType::Int;
6650
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00006651 if (!ParamIsInt)
6652 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00006653 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00006654 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006655 }
6656
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006657 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006658}
Chris Lattner5a003a42008-12-17 07:09:26 +00006659
Sean Hunta6c058d2010-01-13 09:01:02 +00006660/// CheckLiteralOperatorDeclaration - Check whether the declaration
6661/// of this literal operator function is well-formed. If so, returns
6662/// false; otherwise, emits appropriate diagnostics and returns true.
6663bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
6664 DeclContext *DC = FnDecl->getDeclContext();
6665 Decl::Kind Kind = DC->getDeclKind();
6666 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
6667 Kind != Decl::LinkageSpec) {
6668 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
6669 << FnDecl->getDeclName();
6670 return true;
6671 }
6672
6673 bool Valid = false;
6674
Sean Hunt216c2782010-04-07 23:11:06 +00006675 // template <char...> type operator "" name() is the only valid template
6676 // signature, and the only valid signature with no parameters.
6677 if (FnDecl->param_size() == 0) {
6678 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
6679 // Must have only one template parameter
6680 TemplateParameterList *Params = TpDecl->getTemplateParameters();
6681 if (Params->size() == 1) {
6682 NonTypeTemplateParmDecl *PmDecl =
6683 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00006684
Sean Hunt216c2782010-04-07 23:11:06 +00006685 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00006686 if (PmDecl && PmDecl->isTemplateParameterPack() &&
6687 Context.hasSameType(PmDecl->getType(), Context.CharTy))
6688 Valid = true;
6689 }
6690 }
6691 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00006692 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00006693 FunctionDecl::param_iterator Param = FnDecl->param_begin();
6694
Sean Hunta6c058d2010-01-13 09:01:02 +00006695 QualType T = (*Param)->getType();
6696
Sean Hunt30019c02010-04-07 22:57:35 +00006697 // unsigned long long int, long double, and any character type are allowed
6698 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00006699 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
6700 Context.hasSameType(T, Context.LongDoubleTy) ||
6701 Context.hasSameType(T, Context.CharTy) ||
6702 Context.hasSameType(T, Context.WCharTy) ||
6703 Context.hasSameType(T, Context.Char16Ty) ||
6704 Context.hasSameType(T, Context.Char32Ty)) {
6705 if (++Param == FnDecl->param_end())
6706 Valid = true;
6707 goto FinishedParams;
6708 }
6709
Sean Hunt30019c02010-04-07 22:57:35 +00006710 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00006711 const PointerType *PT = T->getAs<PointerType>();
6712 if (!PT)
6713 goto FinishedParams;
6714 T = PT->getPointeeType();
6715 if (!T.isConstQualified())
6716 goto FinishedParams;
6717 T = T.getUnqualifiedType();
6718
6719 // Move on to the second parameter;
6720 ++Param;
6721
6722 // If there is no second parameter, the first must be a const char *
6723 if (Param == FnDecl->param_end()) {
6724 if (Context.hasSameType(T, Context.CharTy))
6725 Valid = true;
6726 goto FinishedParams;
6727 }
6728
6729 // const char *, const wchar_t*, const char16_t*, and const char32_t*
6730 // are allowed as the first parameter to a two-parameter function
6731 if (!(Context.hasSameType(T, Context.CharTy) ||
6732 Context.hasSameType(T, Context.WCharTy) ||
6733 Context.hasSameType(T, Context.Char16Ty) ||
6734 Context.hasSameType(T, Context.Char32Ty)))
6735 goto FinishedParams;
6736
6737 // The second and final parameter must be an std::size_t
6738 T = (*Param)->getType().getUnqualifiedType();
6739 if (Context.hasSameType(T, Context.getSizeType()) &&
6740 ++Param == FnDecl->param_end())
6741 Valid = true;
6742 }
6743
6744 // FIXME: This diagnostic is absolutely terrible.
6745FinishedParams:
6746 if (!Valid) {
6747 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6748 << FnDecl->getDeclName();
6749 return true;
6750 }
6751
6752 return false;
6753}
6754
Douglas Gregor074149e2009-01-05 19:45:36 +00006755/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6756/// linkage specification, including the language and (if present)
6757/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6758/// the location of the language string literal, which is provided
6759/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6760/// the '{' brace. Otherwise, this linkage specification does not
6761/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00006762Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
6763 SourceLocation LangLoc,
6764 llvm::StringRef Lang,
6765 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00006766 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00006767 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00006768 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00006769 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00006770 Language = LinkageSpecDecl::lang_cxx;
6771 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00006772 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00006773 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00006774 }
Mike Stump1eb44332009-09-09 15:08:12 +00006775
Chris Lattnercc98eac2008-12-17 07:13:27 +00006776 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00006777
Douglas Gregor074149e2009-01-05 19:45:36 +00006778 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00006779 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006780 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00006781 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00006782 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00006783}
6784
Abramo Bagnara35f9a192010-07-30 16:47:02 +00006785/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00006786/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6787/// valid, it's the position of the closing '}' brace in a linkage
6788/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00006789Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00006790 Decl *LinkageSpec,
6791 SourceLocation RBraceLoc) {
6792 if (LinkageSpec) {
6793 if (RBraceLoc.isValid()) {
6794 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
6795 LSDecl->setRBraceLoc(RBraceLoc);
6796 }
Douglas Gregor074149e2009-01-05 19:45:36 +00006797 PopDeclContext();
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +00006798 }
Douglas Gregor074149e2009-01-05 19:45:36 +00006799 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00006800}
6801
Douglas Gregord308e622009-05-18 20:51:54 +00006802/// \brief Perform semantic analysis for the variable declaration that
6803/// occurs within a C++ catch clause, returning the newly-created
6804/// variable.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006805VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00006806 TypeSourceInfo *TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006807 SourceLocation StartLoc,
6808 SourceLocation Loc,
6809 IdentifierInfo *Name) {
Douglas Gregord308e622009-05-18 20:51:54 +00006810 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00006811 QualType ExDeclType = TInfo->getType();
6812
Sebastian Redl4b07b292008-12-22 19:15:10 +00006813 // Arrays and functions decay.
6814 if (ExDeclType->isArrayType())
6815 ExDeclType = Context.getArrayDecayedType(ExDeclType);
6816 else if (ExDeclType->isFunctionType())
6817 ExDeclType = Context.getPointerType(ExDeclType);
6818
6819 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6820 // The exception-declaration shall not denote a pointer or reference to an
6821 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006822 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00006823 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00006824 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006825 Invalid = true;
6826 }
Douglas Gregord308e622009-05-18 20:51:54 +00006827
Douglas Gregora2762912010-03-08 01:47:36 +00006828 // GCC allows catching pointers and references to incomplete types
6829 // as an extension; so do we, but we warn by default.
6830
Sebastian Redl4b07b292008-12-22 19:15:10 +00006831 QualType BaseType = ExDeclType;
6832 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00006833 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00006834 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00006835 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006836 BaseType = Ptr->getPointeeType();
6837 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00006838 DK = diag::ext_catch_incomplete_ptr;
6839 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00006840 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006841 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006842 BaseType = Ref->getPointeeType();
6843 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00006844 DK = diag::ext_catch_incomplete_ref;
6845 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006846 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006847 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00006848 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6849 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00006850 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006851
Mike Stump1eb44332009-09-09 15:08:12 +00006852 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00006853 RequireNonAbstractType(Loc, ExDeclType,
6854 diag::err_abstract_type_in_decl,
6855 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00006856 Invalid = true;
6857
John McCall5a180392010-07-24 00:37:23 +00006858 // Only the non-fragile NeXT runtime currently supports C++ catches
6859 // of ObjC types, and no runtime supports catching ObjC types by value.
6860 if (!Invalid && getLangOptions().ObjC1) {
6861 QualType T = ExDeclType;
6862 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6863 T = RT->getPointeeType();
6864
6865 if (T->isObjCObjectType()) {
6866 Diag(Loc, diag::err_objc_object_catch);
6867 Invalid = true;
6868 } else if (T->isObjCObjectPointerType()) {
David Chisnall80558d22011-03-20 21:35:39 +00006869 if (!getLangOptions().ObjCNonFragileABI) {
John McCall5a180392010-07-24 00:37:23 +00006870 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6871 Invalid = true;
6872 }
6873 }
6874 }
6875
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006876 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
6877 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00006878 ExDecl->setExceptionVariable(true);
6879
Douglas Gregor6d182892010-03-05 23:38:39 +00006880 if (!Invalid) {
John McCalle996ffd2011-02-16 08:02:54 +00006881 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00006882 // C++ [except.handle]p16:
6883 // The object declared in an exception-declaration or, if the
6884 // exception-declaration does not specify a name, a temporary (12.2) is
6885 // copy-initialized (8.5) from the exception object. [...]
6886 // The object is destroyed when the handler exits, after the destruction
6887 // of any automatic objects initialized within the handler.
6888 //
6889 // We just pretend to initialize the object with itself, then make sure
6890 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00006891 QualType initType = ExDeclType;
6892
6893 InitializedEntity entity =
6894 InitializedEntity::InitializeVariable(ExDecl);
6895 InitializationKind initKind =
6896 InitializationKind::CreateCopy(Loc, SourceLocation());
6897
6898 Expr *opaqueValue =
6899 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
6900 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
6901 ExprResult result = sequence.Perform(*this, entity, initKind,
6902 MultiExprArg(&opaqueValue, 1));
6903 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00006904 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00006905 else {
6906 // If the constructor used was non-trivial, set this as the
6907 // "initializer".
6908 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
6909 if (!construct->getConstructor()->isTrivial()) {
6910 Expr *init = MaybeCreateExprWithCleanups(construct);
6911 ExDecl->setInit(init);
6912 }
6913
6914 // And make sure it's destructable.
6915 FinalizeVarWithDestructor(ExDecl, recordType);
6916 }
Douglas Gregor6d182892010-03-05 23:38:39 +00006917 }
6918 }
6919
Douglas Gregord308e622009-05-18 20:51:54 +00006920 if (Invalid)
6921 ExDecl->setInvalidDecl();
6922
6923 return ExDecl;
6924}
6925
6926/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6927/// handler.
John McCalld226f652010-08-21 09:40:31 +00006928Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00006929 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00006930 bool Invalid = D.isInvalidType();
6931
6932 // Check for unexpanded parameter packs.
6933 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
6934 UPPC_ExceptionType)) {
6935 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6936 D.getIdentifierLoc());
6937 Invalid = true;
6938 }
6939
Sebastian Redl4b07b292008-12-22 19:15:10 +00006940 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00006941 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00006942 LookupOrdinaryName,
6943 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006944 // The scope should be freshly made just for us. There is just no way
6945 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00006946 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00006947 if (PrevDecl->isTemplateParameter()) {
6948 // Maybe we will complain about the shadowed template parameter.
6949 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006950 }
6951 }
6952
Chris Lattnereaaebc72009-04-25 08:06:05 +00006953 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006954 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6955 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00006956 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006957 }
6958
Douglas Gregor83cb9422010-09-09 17:09:21 +00006959 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00006960 D.getSourceRange().getBegin(),
6961 D.getIdentifierLoc(),
6962 D.getIdentifier());
Chris Lattnereaaebc72009-04-25 08:06:05 +00006963 if (Invalid)
6964 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00006965
Sebastian Redl4b07b292008-12-22 19:15:10 +00006966 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006967 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00006968 PushOnScopeChains(ExDecl, S);
6969 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006970 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006971
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00006972 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00006973 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006974}
Anders Carlssonfb311762009-03-14 00:25:26 +00006975
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00006976Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00006977 Expr *AssertExpr,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00006978 Expr *AssertMessageExpr_,
6979 SourceLocation RParenLoc) {
John McCall9ae2f072010-08-23 23:25:46 +00006980 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlssonfb311762009-03-14 00:25:26 +00006981
Anders Carlssonc3082412009-03-14 00:33:21 +00006982 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6983 llvm::APSInt Value(32);
6984 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00006985 Diag(StaticAssertLoc,
6986 diag::err_static_assert_expression_is_not_constant) <<
Anders Carlssonc3082412009-03-14 00:33:21 +00006987 AssertExpr->getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00006988 return 0;
Anders Carlssonc3082412009-03-14 00:33:21 +00006989 }
Anders Carlssonfb311762009-03-14 00:25:26 +00006990
Anders Carlssonc3082412009-03-14 00:33:21 +00006991 if (Value == 0) {
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00006992 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00006993 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00006994 }
6995 }
Mike Stump1eb44332009-09-09 15:08:12 +00006996
Douglas Gregor399ad972010-12-15 23:55:21 +00006997 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
6998 return 0;
6999
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00007000 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
7001 AssertExpr, AssertMessage, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00007002
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00007003 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00007004 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00007005}
Sebastian Redl50de12f2009-03-24 22:27:57 +00007006
Douglas Gregor1d869352010-04-07 16:53:43 +00007007/// \brief Perform semantic analysis of the given friend type declaration.
7008///
7009/// \returns A friend declaration that.
7010FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
7011 TypeSourceInfo *TSInfo) {
7012 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
7013
7014 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00007015 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00007016
Douglas Gregor06245bf2010-04-07 17:57:12 +00007017 if (!getLangOptions().CPlusPlus0x) {
7018 // C++03 [class.friend]p2:
7019 // An elaborated-type-specifier shall be used in a friend declaration
7020 // for a class.*
7021 //
7022 // * The class-key of the elaborated-type-specifier is required.
7023 if (!ActiveTemplateInstantiations.empty()) {
7024 // Do not complain about the form of friend template types during
7025 // template instantiation; we will already have complained when the
7026 // template was declared.
7027 } else if (!T->isElaboratedTypeSpecifier()) {
7028 // If we evaluated the type to a record type, suggest putting
7029 // a tag in front.
7030 if (const RecordType *RT = T->getAs<RecordType>()) {
7031 RecordDecl *RD = RT->getDecl();
7032
7033 std::string InsertionText = std::string(" ") + RD->getKindName();
7034
7035 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
7036 << (unsigned) RD->getTagKind()
7037 << T
7038 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
7039 InsertionText);
7040 } else {
7041 Diag(FriendLoc, diag::ext_nonclass_type_friend)
7042 << T
7043 << SourceRange(FriendLoc, TypeRange.getEnd());
7044 }
7045 } else if (T->getAs<EnumType>()) {
7046 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00007047 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00007048 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00007049 }
7050 }
7051
Douglas Gregor06245bf2010-04-07 17:57:12 +00007052 // C++0x [class.friend]p3:
7053 // If the type specifier in a friend declaration designates a (possibly
7054 // cv-qualified) class type, that class is declared as a friend; otherwise,
7055 // the friend declaration is ignored.
7056
7057 // FIXME: C++0x has some syntactic restrictions on friend type declarations
7058 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00007059
7060 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
7061}
7062
John McCall9a34edb2010-10-19 01:40:49 +00007063/// Handle a friend tag declaration where the scope specifier was
7064/// templated.
7065Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
7066 unsigned TagSpec, SourceLocation TagLoc,
7067 CXXScopeSpec &SS,
7068 IdentifierInfo *Name, SourceLocation NameLoc,
7069 AttributeList *Attr,
7070 MultiTemplateParamsArg TempParamLists) {
7071 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7072
7073 bool isExplicitSpecialization = false;
John McCall9a34edb2010-10-19 01:40:49 +00007074 bool Invalid = false;
7075
7076 if (TemplateParameterList *TemplateParams
7077 = MatchTemplateParametersToScopeSpecifier(TagLoc, SS,
7078 TempParamLists.get(),
7079 TempParamLists.size(),
7080 /*friend*/ true,
7081 isExplicitSpecialization,
7082 Invalid)) {
John McCall9a34edb2010-10-19 01:40:49 +00007083 if (TemplateParams->size() > 0) {
7084 // This is a declaration of a class template.
7085 if (Invalid)
7086 return 0;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00007087
John McCall9a34edb2010-10-19 01:40:49 +00007088 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
7089 SS, Name, NameLoc, Attr,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00007090 TemplateParams, AS_public,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00007091 TempParamLists.size() - 1,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +00007092 (TemplateParameterList**) TempParamLists.release()).take();
John McCall9a34edb2010-10-19 01:40:49 +00007093 } else {
7094 // The "template<>" header is extraneous.
7095 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
7096 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
7097 isExplicitSpecialization = true;
7098 }
7099 }
7100
7101 if (Invalid) return 0;
7102
7103 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
7104
7105 bool isAllExplicitSpecializations = true;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00007106 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCall9a34edb2010-10-19 01:40:49 +00007107 if (TempParamLists.get()[I]->size()) {
7108 isAllExplicitSpecializations = false;
7109 break;
7110 }
7111 }
7112
7113 // FIXME: don't ignore attributes.
7114
7115 // If it's explicit specializations all the way down, just forget
7116 // about the template header and build an appropriate non-templated
7117 // friend. TODO: for source fidelity, remember the headers.
7118 if (isAllExplicitSpecializations) {
Douglas Gregor2494dd02011-03-01 01:34:45 +00007119 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall9a34edb2010-10-19 01:40:49 +00007120 ElaboratedTypeKeyword Keyword
7121 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor2494dd02011-03-01 01:34:45 +00007122 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregore29425b2011-02-28 22:42:13 +00007123 *Name, NameLoc);
John McCall9a34edb2010-10-19 01:40:49 +00007124 if (T.isNull())
7125 return 0;
7126
7127 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7128 if (isa<DependentNameType>(T)) {
7129 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7130 TL.setKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00007131 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00007132 TL.setNameLoc(NameLoc);
7133 } else {
7134 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
7135 TL.setKeywordLoc(TagLoc);
Douglas Gregor9e876872011-03-01 18:12:44 +00007136 TL.setQualifierLoc(QualifierLoc);
John McCall9a34edb2010-10-19 01:40:49 +00007137 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
7138 }
7139
7140 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7141 TSI, FriendLoc);
7142 Friend->setAccess(AS_public);
7143 CurContext->addDecl(Friend);
7144 return Friend;
7145 }
7146
7147 // Handle the case of a templated-scope friend class. e.g.
7148 // template <class T> class A<T>::B;
7149 // FIXME: we don't support these right now.
7150 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
7151 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
7152 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7153 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
7154 TL.setKeywordLoc(TagLoc);
Douglas Gregor2494dd02011-03-01 01:34:45 +00007155 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCall9a34edb2010-10-19 01:40:49 +00007156 TL.setNameLoc(NameLoc);
7157
7158 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
7159 TSI, FriendLoc);
7160 Friend->setAccess(AS_public);
7161 Friend->setUnsupportedFriend(true);
7162 CurContext->addDecl(Friend);
7163 return Friend;
7164}
7165
7166
John McCalldd4a3b02009-09-16 22:47:08 +00007167/// Handle a friend type declaration. This works in tandem with
7168/// ActOnTag.
7169///
7170/// Notes on friend class templates:
7171///
7172/// We generally treat friend class declarations as if they were
7173/// declaring a class. So, for example, the elaborated type specifier
7174/// in a friend declaration is required to obey the restrictions of a
7175/// class-head (i.e. no typedefs in the scope chain), template
7176/// parameters are required to match up with simple template-ids, &c.
7177/// However, unlike when declaring a template specialization, it's
7178/// okay to refer to a template specialization without an empty
7179/// template parameter declaration, e.g.
7180/// friend class A<T>::B<unsigned>;
7181/// We permit this as a special case; if there are any template
7182/// parameters present at all, require proper matching, i.e.
7183/// template <> template <class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +00007184Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +00007185 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00007186 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00007187
7188 assert(DS.isFriendSpecified());
7189 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7190
John McCalldd4a3b02009-09-16 22:47:08 +00007191 // Try to convert the decl specifier to a type. This works for
7192 // friend templates because ActOnTag never produces a ClassTemplateDecl
7193 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00007194 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00007195 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
7196 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00007197 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +00007198 return 0;
John McCall67d1a672009-08-06 02:15:43 +00007199
Douglas Gregor6ccab972010-12-16 01:14:37 +00007200 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
7201 return 0;
7202
John McCalldd4a3b02009-09-16 22:47:08 +00007203 // This is definitely an error in C++98. It's probably meant to
7204 // be forbidden in C++0x, too, but the specification is just
7205 // poorly written.
7206 //
7207 // The problem is with declarations like the following:
7208 // template <T> friend A<T>::foo;
7209 // where deciding whether a class C is a friend or not now hinges
7210 // on whether there exists an instantiation of A that causes
7211 // 'foo' to equal C. There are restrictions on class-heads
7212 // (which we declare (by fiat) elaborated friend declarations to
7213 // be) that makes this tractable.
7214 //
7215 // FIXME: handle "template <> friend class A<T>;", which
7216 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00007217 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00007218 Diag(Loc, diag::err_tagless_friend_type_template)
7219 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00007220 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +00007221 }
Douglas Gregor1d869352010-04-07 16:53:43 +00007222
John McCall02cace72009-08-28 07:59:38 +00007223 // C++98 [class.friend]p1: A friend of a class is a function
7224 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00007225 // This is fixed in DR77, which just barely didn't make the C++03
7226 // deadline. It's also a very silly restriction that seriously
7227 // affects inner classes and which nobody else seems to implement;
7228 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00007229 //
7230 // But note that we could warn about it: it's always useless to
7231 // friend one of your own members (it's not, however, worthless to
7232 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00007233
John McCalldd4a3b02009-09-16 22:47:08 +00007234 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00007235 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00007236 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00007237 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +00007238 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00007239 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00007240 DS.getFriendSpecLoc());
7241 else
Douglas Gregor1d869352010-04-07 16:53:43 +00007242 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
7243
7244 if (!D)
John McCalld226f652010-08-21 09:40:31 +00007245 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +00007246
John McCalldd4a3b02009-09-16 22:47:08 +00007247 D->setAccess(AS_public);
7248 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00007249
John McCalld226f652010-08-21 09:40:31 +00007250 return D;
John McCall02cace72009-08-28 07:59:38 +00007251}
7252
John McCall337ec3d2010-10-12 23:13:28 +00007253Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
7254 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00007255 const DeclSpec &DS = D.getDeclSpec();
7256
7257 assert(DS.isFriendSpecified());
7258 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7259
7260 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00007261 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
7262 QualType T = TInfo->getType();
John McCall67d1a672009-08-06 02:15:43 +00007263
7264 // C++ [class.friend]p1
7265 // A friend of a class is a function or class....
7266 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00007267 // It *doesn't* see through dependent types, which is correct
7268 // according to [temp.arg.type]p3:
7269 // If a declaration acquires a function type through a
7270 // type dependent on a template-parameter and this causes
7271 // a declaration that does not use the syntactic form of a
7272 // function declarator to have a function type, the program
7273 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00007274 if (!T->isFunctionType()) {
7275 Diag(Loc, diag::err_unexpected_friend);
7276
7277 // It might be worthwhile to try to recover by creating an
7278 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +00007279 return 0;
John McCall67d1a672009-08-06 02:15:43 +00007280 }
7281
7282 // C++ [namespace.memdef]p3
7283 // - If a friend declaration in a non-local class first declares a
7284 // class or function, the friend class or function is a member
7285 // of the innermost enclosing namespace.
7286 // - The name of the friend is not found by simple name lookup
7287 // until a matching declaration is provided in that namespace
7288 // scope (either before or after the class declaration granting
7289 // friendship).
7290 // - If a friend function is called, its name may be found by the
7291 // name lookup that considers functions from namespaces and
7292 // classes associated with the types of the function arguments.
7293 // - When looking for a prior declaration of a class or a function
7294 // declared as a friend, scopes outside the innermost enclosing
7295 // namespace scope are not considered.
7296
John McCall337ec3d2010-10-12 23:13:28 +00007297 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00007298 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7299 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +00007300 assert(Name);
7301
Douglas Gregor6ccab972010-12-16 01:14:37 +00007302 // Check for unexpanded parameter packs.
7303 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
7304 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
7305 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
7306 return 0;
7307
John McCall67d1a672009-08-06 02:15:43 +00007308 // The context we found the declaration in, or in which we should
7309 // create the declaration.
7310 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +00007311 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +00007312 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00007313 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00007314
John McCall337ec3d2010-10-12 23:13:28 +00007315 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +00007316
John McCall337ec3d2010-10-12 23:13:28 +00007317 // There are four cases here.
7318 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +00007319 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +00007320 // there as appropriate.
7321 // Recover from invalid scope qualifiers as if they just weren't there.
7322 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +00007323 // C++0x [namespace.memdef]p3:
7324 // If the name in a friend declaration is neither qualified nor
7325 // a template-id and the declaration is a function or an
7326 // elaborated-type-specifier, the lookup to determine whether
7327 // the entity has been previously declared shall not consider
7328 // any scopes outside the innermost enclosing namespace.
7329 // C++0x [class.friend]p11:
7330 // If a friend declaration appears in a local class and the name
7331 // specified is an unqualified name, a prior declaration is
7332 // looked up without considering scopes that are outside the
7333 // innermost enclosing non-class scope. For a friend function
7334 // declaration, if there is no prior declaration, the program is
7335 // ill-formed.
7336 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +00007337 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +00007338
John McCall29ae6e52010-10-13 05:45:15 +00007339 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +00007340 DC = CurContext;
7341 while (true) {
7342 // Skip class contexts. If someone can cite chapter and verse
7343 // for this behavior, that would be nice --- it's what GCC and
7344 // EDG do, and it seems like a reasonable intent, but the spec
7345 // really only says that checks for unqualified existing
7346 // declarations should stop at the nearest enclosing namespace,
7347 // not that they should only consider the nearest enclosing
7348 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00007349 while (DC->isRecord())
7350 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00007351
John McCall68263142009-11-18 22:49:29 +00007352 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00007353
7354 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +00007355 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00007356 break;
John McCall29ae6e52010-10-13 05:45:15 +00007357
John McCall8a407372010-10-14 22:22:28 +00007358 if (isTemplateId) {
7359 if (isa<TranslationUnitDecl>(DC)) break;
7360 } else {
7361 if (DC->isFileContext()) break;
7362 }
John McCall67d1a672009-08-06 02:15:43 +00007363 DC = DC->getParent();
7364 }
7365
7366 // C++ [class.friend]p1: A friend of a class is a function or
7367 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00007368 // C++0x changes this for both friend types and functions.
7369 // Most C++ 98 compilers do seem to give an error here, so
7370 // we do, too.
John McCall68263142009-11-18 22:49:29 +00007371 if (!Previous.empty() && DC->Equals(CurContext)
7372 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00007373 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +00007374
John McCall380aaa42010-10-13 06:22:15 +00007375 DCScope = getScopeForDeclContext(S, DC);
John McCall29ae6e52010-10-13 05:45:15 +00007376
John McCall337ec3d2010-10-12 23:13:28 +00007377 // - There's a non-dependent scope specifier, in which case we
7378 // compute it and do a previous lookup there for a function
7379 // or function template.
7380 } else if (!SS.getScopeRep()->isDependent()) {
7381 DC = computeDeclContext(SS);
7382 if (!DC) return 0;
7383
7384 if (RequireCompleteDeclContext(SS, DC)) return 0;
7385
7386 LookupQualifiedName(Previous, DC);
7387
7388 // Ignore things found implicitly in the wrong scope.
7389 // TODO: better diagnostics for this case. Suggesting the right
7390 // qualified scope would be nice...
7391 LookupResult::Filter F = Previous.makeFilter();
7392 while (F.hasNext()) {
7393 NamedDecl *D = F.next();
7394 if (!DC->InEnclosingNamespaceSetOf(
7395 D->getDeclContext()->getRedeclContext()))
7396 F.erase();
7397 }
7398 F.done();
7399
7400 if (Previous.empty()) {
7401 D.setInvalidType();
7402 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
7403 return 0;
7404 }
7405
7406 // C++ [class.friend]p1: A friend of a class is a function or
7407 // class that is not a member of the class . . .
7408 if (DC->Equals(CurContext))
7409 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7410
7411 // - There's a scope specifier that does not match any template
7412 // parameter lists, in which case we use some arbitrary context,
7413 // create a method or method template, and wait for instantiation.
7414 // - There's a scope specifier that does match some template
7415 // parameter lists, which we don't handle right now.
7416 } else {
7417 DC = CurContext;
7418 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +00007419 }
7420
John McCall29ae6e52010-10-13 05:45:15 +00007421 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +00007422 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00007423 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
7424 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
7425 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00007426 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00007427 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
7428 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +00007429 return 0;
John McCall67d1a672009-08-06 02:15:43 +00007430 }
John McCall67d1a672009-08-06 02:15:43 +00007431 }
7432
Douglas Gregor182ddf02009-09-28 00:08:27 +00007433 bool Redeclaration = false;
John McCall380aaa42010-10-13 06:22:15 +00007434 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00007435 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00007436 IsDefinition,
7437 Redeclaration);
John McCalld226f652010-08-21 09:40:31 +00007438 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +00007439
Douglas Gregor182ddf02009-09-28 00:08:27 +00007440 assert(ND->getDeclContext() == DC);
7441 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00007442
John McCallab88d972009-08-31 22:39:49 +00007443 // Add the function declaration to the appropriate lookup tables,
7444 // adjusting the redeclarations list as necessary. We don't
7445 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00007446 //
John McCallab88d972009-08-31 22:39:49 +00007447 // Also update the scope-based lookup if the target context's
7448 // lookup context is in lexical scope.
7449 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00007450 DC = DC->getRedeclContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00007451 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00007452 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00007453 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00007454 }
John McCall02cace72009-08-28 07:59:38 +00007455
7456 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00007457 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00007458 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00007459 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00007460 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00007461
John McCall337ec3d2010-10-12 23:13:28 +00007462 if (ND->isInvalidDecl())
7463 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +00007464 else {
7465 FunctionDecl *FD;
7466 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
7467 FD = FTD->getTemplatedDecl();
7468 else
7469 FD = cast<FunctionDecl>(ND);
7470
7471 // Mark templated-scope function declarations as unsupported.
7472 if (FD->getNumTemplateParameterLists())
7473 FrD->setUnsupportedFriend(true);
7474 }
John McCall337ec3d2010-10-12 23:13:28 +00007475
John McCalld226f652010-08-21 09:40:31 +00007476 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +00007477}
7478
John McCalld226f652010-08-21 09:40:31 +00007479void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
7480 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00007481
Sebastian Redl50de12f2009-03-24 22:27:57 +00007482 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
7483 if (!Fn) {
7484 Diag(DelLoc, diag::err_deleted_non_function);
7485 return;
7486 }
7487 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
7488 Diag(DelLoc, diag::err_deleted_decl_not_first);
7489 Diag(Prev->getLocation(), diag::note_previous_declaration);
7490 // If the declaration wasn't the first, we delete the function anyway for
7491 // recovery.
7492 }
7493 Fn->setDeleted();
7494}
Sebastian Redl13e88542009-04-27 21:33:24 +00007495
7496static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +00007497 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +00007498 Stmt *SubStmt = *CI;
7499 if (!SubStmt)
7500 continue;
7501 if (isa<ReturnStmt>(SubStmt))
7502 Self.Diag(SubStmt->getSourceRange().getBegin(),
7503 diag::err_return_in_constructor_handler);
7504 if (!isa<Expr>(SubStmt))
7505 SearchForReturnInStmt(Self, SubStmt);
7506 }
7507}
7508
7509void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
7510 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
7511 CXXCatchStmt *Handler = TryBlock->getHandler(I);
7512 SearchForReturnInStmt(*this, Handler);
7513 }
7514}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007515
Mike Stump1eb44332009-09-09 15:08:12 +00007516bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007517 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00007518 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
7519 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007520
Chandler Carruth73857792010-02-15 11:53:20 +00007521 if (Context.hasSameType(NewTy, OldTy) ||
7522 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007523 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00007524
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007525 // Check if the return types are covariant
7526 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00007527
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007528 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007529 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
7530 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007531 NewClassTy = NewPT->getPointeeType();
7532 OldClassTy = OldPT->getPointeeType();
7533 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007534 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
7535 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
7536 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
7537 NewClassTy = NewRT->getPointeeType();
7538 OldClassTy = OldRT->getPointeeType();
7539 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007540 }
7541 }
Mike Stump1eb44332009-09-09 15:08:12 +00007542
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007543 // The return types aren't either both pointers or references to a class type.
7544 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00007545 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007546 diag::err_different_return_type_for_overriding_virtual_function)
7547 << New->getDeclName() << NewTy << OldTy;
7548 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00007549
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007550 return true;
7551 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007552
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007553 // C++ [class.virtual]p6:
7554 // If the return type of D::f differs from the return type of B::f, the
7555 // class type in the return type of D::f shall be complete at the point of
7556 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00007557 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
7558 if (!RT->isBeingDefined() &&
7559 RequireCompleteType(New->getLocation(), NewClassTy,
7560 PDiag(diag::err_covariant_return_incomplete)
7561 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007562 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00007563 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007564
Douglas Gregora4923eb2009-11-16 21:35:15 +00007565 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007566 // Check if the new class derives from the old class.
7567 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
7568 Diag(New->getLocation(),
7569 diag::err_covariant_return_not_derived)
7570 << New->getDeclName() << NewTy << OldTy;
7571 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7572 return true;
7573 }
Mike Stump1eb44332009-09-09 15:08:12 +00007574
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007575 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00007576 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00007577 diag::err_covariant_return_inaccessible_base,
7578 diag::err_covariant_return_ambiguous_derived_to_base_conv,
7579 // FIXME: Should this point to the return type?
7580 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +00007581 // FIXME: this note won't trigger for delayed access control
7582 // diagnostics, and it's impossible to get an undelayed error
7583 // here from access control during the original parse because
7584 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007585 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7586 return true;
7587 }
7588 }
Mike Stump1eb44332009-09-09 15:08:12 +00007589
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007590 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007591 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007592 Diag(New->getLocation(),
7593 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007594 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007595 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7596 return true;
7597 };
Mike Stump1eb44332009-09-09 15:08:12 +00007598
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007599
7600 // The new class type must have the same or less qualifiers as the old type.
7601 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
7602 Diag(New->getLocation(),
7603 diag::err_covariant_return_type_class_type_more_qualified)
7604 << New->getDeclName() << NewTy << OldTy;
7605 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7606 return true;
7607 };
Mike Stump1eb44332009-09-09 15:08:12 +00007608
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007609 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007610}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007611
Douglas Gregor4ba31362009-12-01 17:24:26 +00007612/// \brief Mark the given method pure.
7613///
7614/// \param Method the method to be marked pure.
7615///
7616/// \param InitRange the source range that covers the "0" initializer.
7617bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00007618 SourceLocation EndLoc = InitRange.getEnd();
7619 if (EndLoc.isValid())
7620 Method->setRangeEnd(EndLoc);
7621
Douglas Gregor4ba31362009-12-01 17:24:26 +00007622 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
7623 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +00007624 return false;
Abramo Bagnara796aa442011-03-12 11:17:06 +00007625 }
Douglas Gregor4ba31362009-12-01 17:24:26 +00007626
7627 if (!Method->isInvalidDecl())
7628 Diag(Method->getLocation(), diag::err_non_virtual_pure)
7629 << Method->getDeclName() << InitRange;
7630 return true;
7631}
7632
John McCall731ad842009-12-19 09:28:58 +00007633/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
7634/// an initializer for the out-of-line declaration 'Dcl'. The scope
7635/// is a fresh scope pushed for just this purpose.
7636///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007637/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
7638/// static data member of class X, names should be looked up in the scope of
7639/// class X.
John McCalld226f652010-08-21 09:40:31 +00007640void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007641 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00007642 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007643
John McCall731ad842009-12-19 09:28:58 +00007644 // We should only get called for declarations with scope specifiers, like:
7645 // int foo::bar;
7646 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00007647 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007648}
7649
7650/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +00007651/// initializer for the out-of-line declaration 'D'.
7652void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007653 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00007654 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007655
John McCall731ad842009-12-19 09:28:58 +00007656 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00007657 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007658}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007659
7660/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
7661/// C++ if/switch/while/for statement.
7662/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +00007663DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007664 // C++ 6.4p2:
7665 // The declarator shall not specify a function or an array.
7666 // The type-specifier-seq shall not contain typedef and shall not declare a
7667 // new class or enumeration.
7668 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
7669 "Parser allowed 'typedef' as storage class of condition decl.");
7670
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007671 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00007672 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
7673 QualType Ty = TInfo->getType();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007674
7675 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
7676 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
7677 // would be created and CXXConditionDeclExpr wants a VarDecl.
7678 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
7679 << D.getSourceRange();
7680 return DeclResult();
7681 } else if (OwnedTag && OwnedTag->isDefinition()) {
7682 // The type-specifier-seq shall not declare a new class or enumeration.
7683 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
7684 }
7685
John McCalld226f652010-08-21 09:40:31 +00007686 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007687 if (!Dcl)
7688 return DeclResult();
7689
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007690 return Dcl;
7691}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007692
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007693void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
7694 bool DefinitionRequired) {
7695 // Ignore any vtable uses in unevaluated operands or for classes that do
7696 // not have a vtable.
7697 if (!Class->isDynamicClass() || Class->isDependentContext() ||
7698 CurContext->isDependentContext() ||
7699 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00007700 return;
7701
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007702 // Try to insert this class into the map.
7703 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7704 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
7705 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
7706 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00007707 // If we already had an entry, check to see if we are promoting this vtable
7708 // to required a definition. If so, we need to reappend to the VTableUses
7709 // list, since we may have already processed the first entry.
7710 if (DefinitionRequired && !Pos.first->second) {
7711 Pos.first->second = true;
7712 } else {
7713 // Otherwise, we can early exit.
7714 return;
7715 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007716 }
7717
7718 // Local classes need to have their virtual members marked
7719 // immediately. For all other classes, we mark their virtual members
7720 // at the end of the translation unit.
7721 if (Class->isLocalClass())
7722 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00007723 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007724 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00007725}
7726
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007727bool Sema::DefineUsedVTables() {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007728 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00007729 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +00007730
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007731 // Note: The VTableUses vector could grow as a result of marking
7732 // the members of a class as "used", so we check the size each
7733 // time through the loop and prefer indices (with are stable) to
7734 // iterators (which are not).
7735 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00007736 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007737 if (!Class)
7738 continue;
7739
7740 SourceLocation Loc = VTableUses[I].second;
7741
7742 // If this class has a key function, but that key function is
7743 // defined in another translation unit, we don't need to emit the
7744 // vtable even though we're using it.
7745 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00007746 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007747 switch (KeyFunction->getTemplateSpecializationKind()) {
7748 case TSK_Undeclared:
7749 case TSK_ExplicitSpecialization:
7750 case TSK_ExplicitInstantiationDeclaration:
7751 // The key function is in another translation unit.
7752 continue;
7753
7754 case TSK_ExplicitInstantiationDefinition:
7755 case TSK_ImplicitInstantiation:
7756 // We will be instantiating the key function.
7757 break;
7758 }
7759 } else if (!KeyFunction) {
7760 // If we have a class with no key function that is the subject
7761 // of an explicit instantiation declaration, suppress the
7762 // vtable; it will live with the explicit instantiation
7763 // definition.
7764 bool IsExplicitInstantiationDeclaration
7765 = Class->getTemplateSpecializationKind()
7766 == TSK_ExplicitInstantiationDeclaration;
7767 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
7768 REnd = Class->redecls_end();
7769 R != REnd; ++R) {
7770 TemplateSpecializationKind TSK
7771 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
7772 if (TSK == TSK_ExplicitInstantiationDeclaration)
7773 IsExplicitInstantiationDeclaration = true;
7774 else if (TSK == TSK_ExplicitInstantiationDefinition) {
7775 IsExplicitInstantiationDeclaration = false;
7776 break;
7777 }
7778 }
7779
7780 if (IsExplicitInstantiationDeclaration)
7781 continue;
7782 }
7783
7784 // Mark all of the virtual members of this class as referenced, so
7785 // that we can build a vtable. Then, tell the AST consumer that a
7786 // vtable for this class is required.
7787 MarkVirtualMembersReferenced(Loc, Class);
7788 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7789 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
7790
7791 // Optionally warn if we're emitting a weak vtable.
7792 if (Class->getLinkage() == ExternalLinkage &&
7793 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00007794 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007795 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
7796 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007797 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007798 VTableUses.clear();
7799
Anders Carlssond6a637f2009-12-07 08:24:59 +00007800 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007801}
Anders Carlssond6a637f2009-12-07 08:24:59 +00007802
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007803void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
7804 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00007805 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
7806 e = RD->method_end(); i != e; ++i) {
7807 CXXMethodDecl *MD = *i;
7808
7809 // C++ [basic.def.odr]p2:
7810 // [...] A virtual member function is used if it is not pure. [...]
7811 if (MD->isVirtual() && !MD->isPure())
7812 MarkDeclarationReferenced(Loc, MD);
7813 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007814
7815 // Only classes that have virtual bases need a VTT.
7816 if (RD->getNumVBases() == 0)
7817 return;
7818
7819 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
7820 e = RD->bases_end(); i != e; ++i) {
7821 const CXXRecordDecl *Base =
7822 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007823 if (Base->getNumVBases() == 0)
7824 continue;
7825 MarkVirtualMembersReferenced(Loc, Base);
7826 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00007827}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007828
7829/// SetIvarInitializers - This routine builds initialization ASTs for the
7830/// Objective-C implementation whose ivars need be initialized.
7831void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
7832 if (!getLangOptions().CPlusPlus)
7833 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00007834 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007835 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
7836 CollectIvarsToConstructOrDestruct(OID, ivars);
7837 if (ivars.empty())
7838 return;
Sean Huntcbb67482011-01-08 20:30:50 +00007839 llvm::SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007840 for (unsigned i = 0; i < ivars.size(); i++) {
7841 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007842 if (Field->isInvalidDecl())
7843 continue;
7844
Sean Huntcbb67482011-01-08 20:30:50 +00007845 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007846 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
7847 InitializationKind InitKind =
7848 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
7849
7850 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007851 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00007852 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +00007853 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007854 // Note, MemberInit could actually come back empty if no initialization
7855 // is required (e.g., because it would call a trivial default constructor)
7856 if (!MemberInit.get() || MemberInit.isInvalid())
7857 continue;
John McCallb4eb64d2010-10-08 02:01:28 +00007858
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007859 Member =
Sean Huntcbb67482011-01-08 20:30:50 +00007860 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
7861 SourceLocation(),
7862 MemberInit.takeAs<Expr>(),
7863 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007864 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007865
7866 // Be sure that the destructor is accessible and is marked as referenced.
7867 if (const RecordType *RecordTy
7868 = Context.getBaseElementType(Field->getType())
7869 ->getAs<RecordType>()) {
7870 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +00007871 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007872 MarkDeclarationReferenced(Field->getLocation(), Destructor);
7873 CheckDestructorAccess(Field->getLocation(), Destructor,
7874 PDiag(diag::err_access_dtor_ivar)
7875 << Context.getBaseElementType(Field->getType()));
7876 }
7877 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007878 }
7879 ObjCImplementation->setIvarInitializers(Context,
7880 AllToInit.data(), AllToInit.size());
7881 }
7882}