blob: e8abab847654f19f561c2e1656a12ab160967ff8 [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"
Douglas Gregor06a9f362010-05-01 20:49:11 +000024#include "clang/AST/RecordLayout.h"
25#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
John McCall19510852010-08-20 18:27:03 +000028#include "clang/Sema/DeclSpec.h"
29#include "clang/Sema/ParsedTemplate.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000030#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000031#include "clang/Lex/Preprocessor.h"
John McCall50df6ae2010-08-25 07:03:20 +000032#include "llvm/ADT/DenseSet.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000033#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000034#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000035#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000036
37using namespace clang;
38
Chris Lattner8123a952008-04-10 02:22:51 +000039//===----------------------------------------------------------------------===//
40// CheckDefaultArgumentVisitor
41//===----------------------------------------------------------------------===//
42
Chris Lattner9e979552008-04-12 23:52:44 +000043namespace {
44 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
45 /// the default argument of a parameter to determine whether it
46 /// contains any ill-formed subexpressions. For example, this will
47 /// diagnose the use of local variables or parameters within the
48 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000049 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000050 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000051 Expr *DefaultArg;
52 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000053
Chris Lattner9e979552008-04-12 23:52:44 +000054 public:
Mike Stump1eb44332009-09-09 15:08:12 +000055 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000056 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000057
Chris Lattner9e979552008-04-12 23:52:44 +000058 bool VisitExpr(Expr *Node);
59 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000060 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000061 };
Chris Lattner8123a952008-04-10 02:22:51 +000062
Chris Lattner9e979552008-04-12 23:52:44 +000063 /// VisitExpr - Visit all of the children of this expression.
64 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
65 bool IsInvalid = false;
John McCall7502c1d2011-02-13 04:07:26 +000066 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattnerb77792e2008-07-26 22:17:49 +000067 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000068 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000069 }
70
Chris Lattner9e979552008-04-12 23:52:44 +000071 /// VisitDeclRefExpr - Visit a reference to a declaration, to
72 /// determine whether this declaration can be used in the default
73 /// argument expression.
74 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000075 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000076 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
77 // C++ [dcl.fct.default]p9
78 // Default arguments are evaluated each time the function is
79 // called. The order of evaluation of function arguments is
80 // unspecified. Consequently, parameters of a function shall not
81 // be used in default argument expressions, even if they are not
82 // evaluated. Parameters of a function declared before a default
83 // argument expression are in scope and can hide namespace and
84 // class member names.
Mike Stump1eb44332009-09-09 15:08:12 +000085 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000086 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000087 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000088 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000089 // C++ [dcl.fct.default]p7
90 // Local variables shall not be used in default argument
91 // expressions.
John McCallb6bbcc92010-10-15 04:57:14 +000092 if (VDecl->isLocalVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000093 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000094 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000095 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000096 }
Chris Lattner8123a952008-04-10 02:22:51 +000097
Douglas Gregor3996f232008-11-04 13:41:56 +000098 return false;
99 }
Chris Lattner9e979552008-04-12 23:52:44 +0000100
Douglas Gregor796da182008-11-04 14:32:21 +0000101 /// VisitCXXThisExpr - Visit a C++ "this" expression.
102 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
103 // C++ [dcl.fct.default]p8:
104 // The keyword this shall not be used in a default argument of a
105 // member function.
106 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000107 diag::err_param_default_argument_references_this)
108 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000109 }
Chris Lattner8123a952008-04-10 02:22:51 +0000110}
111
Anders Carlssoned961f92009-08-25 02:29:20 +0000112bool
John McCall9ae2f072010-08-23 23:25:46 +0000113Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump1eb44332009-09-09 15:08:12 +0000114 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000115 if (RequireCompleteType(Param->getLocation(), Param->getType(),
116 diag::err_typecheck_decl_incomplete_type)) {
117 Param->setInvalidDecl();
118 return true;
119 }
120
Anders Carlssoned961f92009-08-25 02:29:20 +0000121 // C++ [dcl.fct.default]p5
122 // A default argument expression is implicitly converted (clause
123 // 4) to the parameter type. The default argument expression has
124 // the same semantic constraints as the initializer expression in
125 // a declaration of a variable of the parameter type, using the
126 // copy-initialization semantics (8.5).
Fariborz Jahanian745da3a2010-09-24 17:30:16 +0000127 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
128 Param);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000129 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
130 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000131 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCall60d7b3a2010-08-24 06:29:42 +0000132 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber6bb4dcb2010-11-28 22:53:37 +0000133 MultiExprArg(*this, &Arg, 1));
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000134 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000135 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000136 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000137
John McCallb4eb64d2010-10-08 02:01:28 +0000138 CheckImplicitConversions(Arg, EqualLoc);
John McCall4765fa02010-12-06 08:20:24 +0000139 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Anders Carlssoned961f92009-08-25 02:29:20 +0000141 // Okay: add the default argument to the parameter
142 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Douglas Gregor8cfb7a32010-10-12 18:23:32 +0000144 // We have already instantiated this parameter; provide each of the
145 // instantiations with the uninstantiated default argument.
146 UnparsedDefaultArgInstantiationsMap::iterator InstPos
147 = UnparsedDefaultArgInstantiations.find(Param);
148 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
149 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
150 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
151
152 // We're done tracking this parameter's instantiations.
153 UnparsedDefaultArgInstantiations.erase(InstPos);
154 }
155
Anders Carlsson9351c172009-08-25 03:18:48 +0000156 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000157}
158
Chris Lattner8123a952008-04-10 02:22:51 +0000159/// ActOnParamDefaultArgument - Check whether the default argument
160/// provided for a function parameter is well-formed. If so, attach it
161/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000162void
John McCalld226f652010-08-21 09:40:31 +0000163Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCall9ae2f072010-08-23 23:25:46 +0000164 Expr *DefaultArg) {
165 if (!param || !DefaultArg)
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000166 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000167
John McCalld226f652010-08-21 09:40:31 +0000168 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000169 UnparsedDefaultArgLocs.erase(Param);
170
Chris Lattner3d1cee32008-04-08 05:04:30 +0000171 // Default arguments are only permitted in C++
172 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000173 Diag(EqualLoc, diag::err_param_default_argument)
174 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000175 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000176 return;
177 }
178
Douglas Gregor6f526752010-12-16 08:48:57 +0000179 // Check for unexpanded parameter packs.
180 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
181 Param->setInvalidDecl();
182 return;
183 }
184
Anders Carlsson66e30672009-08-25 01:02:06 +0000185 // Check that the default argument is well-formed
John McCall9ae2f072010-08-23 23:25:46 +0000186 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
187 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlsson66e30672009-08-25 01:02:06 +0000188 Param->setInvalidDecl();
189 return;
190 }
Mike Stump1eb44332009-09-09 15:08:12 +0000191
John McCall9ae2f072010-08-23 23:25:46 +0000192 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000193}
194
Douglas Gregor61366e92008-12-24 00:01:03 +0000195/// ActOnParamUnparsedDefaultArgument - We've seen a default
196/// argument for a function parameter, but we can't parse it yet
197/// because we're inside a class definition. Note that this default
198/// argument will be parsed later.
John McCalld226f652010-08-21 09:40:31 +0000199void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000200 SourceLocation EqualLoc,
201 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000202 if (!param)
203 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000204
John McCalld226f652010-08-21 09:40:31 +0000205 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000206 if (Param)
207 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Anders Carlsson5e300d12009-06-12 16:51:40 +0000209 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000210}
211
Douglas Gregor72b505b2008-12-16 21:30:33 +0000212/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
213/// the default argument for the parameter param failed.
John McCalld226f652010-08-21 09:40:31 +0000214void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000215 if (!param)
216 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000217
John McCalld226f652010-08-21 09:40:31 +0000218 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump1eb44332009-09-09 15:08:12 +0000219
Anders Carlsson5e300d12009-06-12 16:51:40 +0000220 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Anders Carlsson5e300d12009-06-12 16:51:40 +0000222 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000223}
224
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000225/// CheckExtraCXXDefaultArguments - Check for any extra default
226/// arguments in the declarator, which is not a function declaration
227/// or definition and therefore is not permitted to have default
228/// arguments. This routine should be invoked for every declarator
229/// that is not a function declaration or definition.
230void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
231 // C++ [dcl.fct.default]p3
232 // A default argument expression shall be specified only in the
233 // parameter-declaration-clause of a function declaration or in a
234 // template-parameter (14.1). It shall not be specified for a
235 // parameter pack. If it is specified in a
236 // parameter-declaration-clause, it shall not occur within a
237 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000238 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000239 DeclaratorChunk &chunk = D.getTypeObject(i);
240 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000241 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
242 ParmVarDecl *Param =
John McCalld226f652010-08-21 09:40:31 +0000243 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor61366e92008-12-24 00:01:03 +0000244 if (Param->hasUnparsedDefaultArg()) {
245 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000246 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
247 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
248 delete Toks;
249 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000250 } else if (Param->getDefaultArg()) {
251 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
252 << Param->getDefaultArg()->getSourceRange();
253 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000254 }
255 }
256 }
257 }
258}
259
Chris Lattner3d1cee32008-04-08 05:04:30 +0000260// MergeCXXFunctionDecl - Merge two declarations of the same C++
261// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000262// type. Subroutine of MergeFunctionDecl. Returns true if there was an
263// error, false otherwise.
264bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
265 bool Invalid = false;
266
Chris Lattner3d1cee32008-04-08 05:04:30 +0000267 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000268 // For non-template functions, default arguments can be added in
269 // later declarations of a function in the same
270 // scope. Declarations in different scopes have completely
271 // distinct sets of default arguments. That is, declarations in
272 // inner scopes do not acquire default arguments from
273 // declarations in outer scopes, and vice versa. In a given
274 // function declaration, all parameters subsequent to a
275 // parameter with a default argument shall have default
276 // arguments supplied in this or previous declarations. A
277 // default argument shall not be redefined by a later
278 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000279 //
280 // C++ [dcl.fct.default]p6:
281 // Except for member functions of class templates, the default arguments
282 // in a member function definition that appears outside of the class
283 // definition are added to the set of default arguments provided by the
284 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000285 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
286 ParmVarDecl *OldParam = Old->getParamDecl(p);
287 ParmVarDecl *NewParam = New->getParamDecl(p);
288
Douglas Gregor6cc15182009-09-11 18:44:32 +0000289 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000290 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
291 // hint here. Alternatively, we could walk the type-source information
292 // for NewParam to find the last source location in the type... but it
293 // isn't worth the effort right now. This is the kind of test case that
294 // is hard to get right:
295
296 // int f(int);
297 // void g(int (*fp)(int) = f);
298 // void g(int (*fp)(int) = &f);
Mike Stump1eb44332009-09-09 15:08:12 +0000299 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000300 diag::err_param_default_argument_redefinition)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000301 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000302
303 // Look for the function declaration where the default argument was
304 // actually written, which may be a declaration prior to Old.
305 for (FunctionDecl *Older = Old->getPreviousDeclaration();
306 Older; Older = Older->getPreviousDeclaration()) {
307 if (!Older->getParamDecl(p)->hasDefaultArg())
308 break;
309
310 OldParam = Older->getParamDecl(p);
311 }
312
313 Diag(OldParam->getLocation(), diag::note_previous_definition)
314 << OldParam->getDefaultArgRange();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000315 Invalid = true;
Douglas Gregord85cef52009-09-17 19:51:30 +0000316 } else if (OldParam->hasDefaultArg()) {
John McCall3d6c1782010-05-04 01:53:42 +0000317 // Merge the old default argument into the new parameter.
318 // It's important to use getInit() here; getDefaultArg()
John McCall4765fa02010-12-06 08:20:24 +0000319 // strips off any top-level ExprWithCleanups.
John McCallbf73b352010-03-12 18:31:32 +0000320 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000321 if (OldParam->hasUninstantiatedDefaultArg())
322 NewParam->setUninstantiatedDefaultArg(
323 OldParam->getUninstantiatedDefaultArg());
324 else
John McCall3d6c1782010-05-04 01:53:42 +0000325 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregor6cc15182009-09-11 18:44:32 +0000326 } else if (NewParam->hasDefaultArg()) {
327 if (New->getDescribedFunctionTemplate()) {
328 // Paragraph 4, quoted above, only applies to non-template functions.
329 Diag(NewParam->getLocation(),
330 diag::err_param_default_argument_template_redecl)
331 << NewParam->getDefaultArgRange();
332 Diag(Old->getLocation(), diag::note_template_prev_declaration)
333 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000334 } else if (New->getTemplateSpecializationKind()
335 != TSK_ImplicitInstantiation &&
336 New->getTemplateSpecializationKind() != TSK_Undeclared) {
337 // C++ [temp.expr.spec]p21:
338 // Default function arguments shall not be specified in a declaration
339 // or a definition for one of the following explicit specializations:
340 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000341 // - the explicit specialization of a member function template;
342 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000343 // template where the class template specialization to which the
344 // member function specialization belongs is implicitly
345 // instantiated.
346 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
347 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
348 << New->getDeclName()
349 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000350 } else if (New->getDeclContext()->isDependentContext()) {
351 // C++ [dcl.fct.default]p6 (DR217):
352 // Default arguments for a member function of a class template shall
353 // be specified on the initial declaration of the member function
354 // within the class template.
355 //
356 // Reading the tea leaves a bit in DR217 and its reference to DR205
357 // leads me to the conclusion that one cannot add default function
358 // arguments for an out-of-line definition of a member function of a
359 // dependent type.
360 int WhichKind = 2;
361 if (CXXRecordDecl *Record
362 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
363 if (Record->getDescribedClassTemplate())
364 WhichKind = 0;
365 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
366 WhichKind = 1;
367 else
368 WhichKind = 2;
369 }
370
371 Diag(NewParam->getLocation(),
372 diag::err_param_default_argument_member_template_redecl)
373 << WhichKind
374 << NewParam->getDefaultArgRange();
375 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000376 }
377 }
378
Douglas Gregore13ad832010-02-12 07:32:17 +0000379 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000380 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000381
Douglas Gregorcda9c672009-02-16 17:45:42 +0000382 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000383}
384
385/// CheckCXXDefaultArguments - Verify that the default arguments for a
386/// function declaration are well-formed according to C++
387/// [dcl.fct.default].
388void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
389 unsigned NumParams = FD->getNumParams();
390 unsigned p;
391
392 // Find first parameter with a default argument
393 for (p = 0; p < NumParams; ++p) {
394 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000395 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000396 break;
397 }
398
399 // C++ [dcl.fct.default]p4:
400 // In a given function declaration, all parameters
401 // subsequent to a parameter with a default argument shall
402 // have default arguments supplied in this or previous
403 // declarations. A default argument shall not be redefined
404 // by a later declaration (not even to the same value).
405 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000406 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000407 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000408 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000409 if (Param->isInvalidDecl())
410 /* We already complained about this parameter. */;
411 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000412 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000413 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000414 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000415 else
Mike Stump1eb44332009-09-09 15:08:12 +0000416 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000417 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000418
Chris Lattner3d1cee32008-04-08 05:04:30 +0000419 LastMissingDefaultArg = p;
420 }
421 }
422
423 if (LastMissingDefaultArg > 0) {
424 // Some default arguments were missing. Clear out all of the
425 // default arguments up to (and including) the last missing
426 // default argument, so that we leave the function parameters
427 // in a semantically valid state.
428 for (p = 0; p <= LastMissingDefaultArg; ++p) {
429 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000430 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000431 Param->setDefaultArg(0);
432 }
433 }
434 }
435}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000436
Douglas Gregorb48fe382008-10-31 09:07:45 +0000437/// isCurrentClassName - Determine whether the identifier II is the
438/// name of the class type currently being defined. In the case of
439/// nested classes, this will only return true if II is the name of
440/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000441bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
442 const CXXScopeSpec *SS) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000443 assert(getLangOptions().CPlusPlus && "No class names in C!");
444
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000445 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000446 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000447 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000448 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
449 } else
450 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
451
Douglas Gregor6f7a17b2010-02-05 06:12:42 +0000452 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +0000453 return &II == CurDecl->getIdentifier();
454 else
455 return false;
456}
457
Mike Stump1eb44332009-09-09 15:08:12 +0000458/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000459///
460/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
461/// and returns NULL otherwise.
462CXXBaseSpecifier *
463Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
464 SourceRange SpecifierRange,
465 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000466 TypeSourceInfo *TInfo,
467 SourceLocation EllipsisLoc) {
Nick Lewycky56062202010-07-26 16:56:01 +0000468 QualType BaseType = TInfo->getType();
469
Douglas Gregor2943aed2009-03-03 04:44:36 +0000470 // C++ [class.union]p1:
471 // A union shall not have base classes.
472 if (Class->isUnion()) {
473 Diag(Class->getLocation(), diag::err_base_clause_on_union)
474 << SpecifierRange;
475 return 0;
476 }
477
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000478 if (EllipsisLoc.isValid() &&
479 !TInfo->getType()->containsUnexpandedParameterPack()) {
480 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
481 << TInfo->getTypeLoc().getSourceRange();
482 EllipsisLoc = SourceLocation();
483 }
484
Douglas Gregor2943aed2009-03-03 04:44:36 +0000485 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000486 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000487 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000488 Access, TInfo, EllipsisLoc);
Nick Lewycky56062202010-07-26 16:56:01 +0000489
490 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000491
492 // Base specifiers must be record types.
493 if (!BaseType->isRecordType()) {
494 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
495 return 0;
496 }
497
498 // C++ [class.union]p1:
499 // A union shall not be used as a base class.
500 if (BaseType->isUnionType()) {
501 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
502 return 0;
503 }
504
505 // C++ [class.derived]p2:
506 // The class-name in a base-specifier shall not be an incompletely
507 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000508 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000509 PDiag(diag::err_incomplete_base_class)
John McCall572fc622010-08-17 07:23:57 +0000510 << SpecifierRange)) {
511 Class->setInvalidDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000512 return 0;
John McCall572fc622010-08-17 07:23:57 +0000513 }
Douglas Gregor2943aed2009-03-03 04:44:36 +0000514
Eli Friedman1d954f62009-08-15 21:55:26 +0000515 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000516 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000517 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +0000518 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000519 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000520 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
521 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +0000522
Anders Carlssondfc2f102011-01-22 17:51:53 +0000523 // C++ [class.derived]p2:
524 // If a class is marked with the class-virt-specifier final and it appears
525 // as a base-type-specifier in a base-clause (10 class.derived), the program
526 // is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000527 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssondfc2f102011-01-22 17:51:53 +0000528 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
529 << CXXBaseDecl->getDeclName();
530 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
531 << CXXBaseDecl->getDeclName();
532 return 0;
533 }
534
John McCall572fc622010-08-17 07:23:57 +0000535 if (BaseDecl->isInvalidDecl())
536 Class->setInvalidDecl();
Anders Carlsson51f94042009-12-03 17:49:57 +0000537
538 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +0000539 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000540 Class->getTagKind() == TTK_Class,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000541 Access, TInfo, EllipsisLoc);
Anders Carlsson51f94042009-12-03 17:49:57 +0000542}
543
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000544/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
545/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000546/// example:
547/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000548/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallf312b1e2010-08-26 23:41:50 +0000549BaseResult
John McCalld226f652010-08-21 09:40:31 +0000550Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000551 bool Virtual, AccessSpecifier Access,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000552 ParsedType basetype, SourceLocation BaseLoc,
553 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000554 if (!classdecl)
555 return true;
556
Douglas Gregor40808ce2009-03-09 23:48:35 +0000557 AdjustDeclIfTemplate(classdecl);
John McCalld226f652010-08-21 09:40:31 +0000558 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000559 if (!Class)
560 return true;
561
Nick Lewycky56062202010-07-26 16:56:01 +0000562 TypeSourceInfo *TInfo = 0;
563 GetTypeFromParser(basetype, &TInfo);
Douglas Gregord0937222010-12-13 22:49:22 +0000564
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000565 if (EllipsisLoc.isInvalid() &&
566 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregord0937222010-12-13 22:49:22 +0000567 UPPC_BaseType))
568 return true;
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000569
Douglas Gregor2943aed2009-03-03 04:44:36 +0000570 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregorf90b27a2011-01-03 22:36:02 +0000571 Virtual, Access, TInfo,
572 EllipsisLoc))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000573 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Douglas Gregor2943aed2009-03-03 04:44:36 +0000575 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000576}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000577
Douglas Gregor2943aed2009-03-03 04:44:36 +0000578/// \brief Performs the actual work of attaching the given base class
579/// specifiers to a C++ class.
580bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
581 unsigned NumBases) {
582 if (NumBases == 0)
583 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000584
585 // Used to keep track of which base types we have already seen, so
586 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000587 // that the key is always the unqualified canonical type of the base
588 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000589 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
590
591 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000592 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000593 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000594 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000595 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000596 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000597 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian0ed5c5d2010-05-20 23:34:56 +0000598 if (!Class->hasObjectMember()) {
599 if (const RecordType *FDTTy =
600 NewBaseType.getTypePtr()->getAs<RecordType>())
601 if (FDTTy->getDecl()->hasObjectMember())
602 Class->setHasObjectMember(true);
603 }
604
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000605 if (KnownBaseTypes[NewBaseType]) {
606 // C++ [class.mi]p3:
607 // A class shall not be specified as a direct base class of a
608 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000609 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000610 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000611 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000612 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000613
614 // Delete the duplicate base class specifier; we're going to
615 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000616 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000617
618 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000619 } else {
620 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000621 KnownBaseTypes[NewBaseType] = Bases[idx];
622 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000623 }
624 }
625
626 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000627 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000628
629 // Delete the remaining (good) base class specifiers, since their
630 // data has been copied into the CXXRecordDecl.
631 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000632 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000633
634 return Invalid;
635}
636
637/// ActOnBaseSpecifiers - Attach the given base specifiers to the
638/// class, after checking whether there are any duplicate base
639/// classes.
John McCalld226f652010-08-21 09:40:31 +0000640void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000641 unsigned NumBases) {
642 if (!ClassDecl || !Bases || !NumBases)
643 return;
644
645 AdjustDeclIfTemplate(ClassDecl);
John McCalld226f652010-08-21 09:40:31 +0000646 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000647 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000648}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000649
John McCall3cb0ebd2010-03-10 03:28:59 +0000650static CXXRecordDecl *GetClassForType(QualType T) {
651 if (const RecordType *RT = T->getAs<RecordType>())
652 return cast<CXXRecordDecl>(RT->getDecl());
653 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
654 return ICT->getDecl();
655 else
656 return 0;
657}
658
Douglas Gregora8f32e02009-10-06 17:59:45 +0000659/// \brief Determine whether the type \p Derived is a C++ class that is
660/// derived from the type \p Base.
661bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
662 if (!getLangOptions().CPlusPlus)
663 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +0000664
665 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
666 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000667 return false;
668
John McCall3cb0ebd2010-03-10 03:28:59 +0000669 CXXRecordDecl *BaseRD = GetClassForType(Base);
670 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000671 return false;
672
John McCall86ff3082010-02-04 22:26:26 +0000673 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
674 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000675}
676
677/// \brief Determine whether the type \p Derived is a C++ class that is
678/// derived from the type \p Base.
679bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
680 if (!getLangOptions().CPlusPlus)
681 return false;
682
John McCall3cb0ebd2010-03-10 03:28:59 +0000683 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
684 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000685 return false;
686
John McCall3cb0ebd2010-03-10 03:28:59 +0000687 CXXRecordDecl *BaseRD = GetClassForType(Base);
688 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000689 return false;
690
Douglas Gregora8f32e02009-10-06 17:59:45 +0000691 return DerivedRD->isDerivedFrom(BaseRD, Paths);
692}
693
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000694void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallf871d0c2010-08-07 06:22:56 +0000695 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000696 assert(BasePathArray.empty() && "Base path array must be empty!");
697 assert(Paths.isRecordingPaths() && "Must record paths!");
698
699 const CXXBasePath &Path = Paths.front();
700
701 // We first go backward and check if we have a virtual base.
702 // FIXME: It would be better if CXXBasePath had the base specifier for
703 // the nearest virtual base.
704 unsigned Start = 0;
705 for (unsigned I = Path.size(); I != 0; --I) {
706 if (Path[I - 1].Base->isVirtual()) {
707 Start = I - 1;
708 break;
709 }
710 }
711
712 // Now add all bases.
713 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallf871d0c2010-08-07 06:22:56 +0000714 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000715}
716
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000717/// \brief Determine whether the given base path includes a virtual
718/// base class.
John McCallf871d0c2010-08-07 06:22:56 +0000719bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
720 for (CXXCastPath::const_iterator B = BasePath.begin(),
721 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000722 B != BEnd; ++B)
723 if ((*B)->isVirtual())
724 return true;
725
726 return false;
727}
728
Douglas Gregora8f32e02009-10-06 17:59:45 +0000729/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
730/// conversion (where Derived and Base are class types) is
731/// well-formed, meaning that the conversion is unambiguous (and
732/// that all of the base classes are accessible). Returns true
733/// and emits a diagnostic if the code is ill-formed, returns false
734/// otherwise. Loc is the location where this routine should point to
735/// if there is an error, and Range is the source range to highlight
736/// if there is an error.
737bool
738Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +0000739 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000740 unsigned AmbigiousBaseConvID,
741 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000742 DeclarationName Name,
John McCallf871d0c2010-08-07 06:22:56 +0000743 CXXCastPath *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000744 // First, determine whether the path from Derived to Base is
745 // ambiguous. This is slightly more expensive than checking whether
746 // the Derived to Base conversion exists, because here we need to
747 // explore multiple paths to determine if there is an ambiguity.
748 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
749 /*DetectVirtual=*/false);
750 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
751 assert(DerivationOkay &&
752 "Can only be used with a derived-to-base conversion");
753 (void)DerivationOkay;
754
755 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000756 if (InaccessibleBaseID) {
757 // Check that the base class can be accessed.
758 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
759 InaccessibleBaseID)) {
760 case AR_inaccessible:
761 return true;
762 case AR_accessible:
763 case AR_dependent:
764 case AR_delayed:
765 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +0000766 }
John McCall6b2accb2010-02-10 09:31:12 +0000767 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000768
769 // Build a base path if necessary.
770 if (BasePath)
771 BuildBasePathArray(Paths, *BasePath);
772 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000773 }
774
775 // We know that the derived-to-base conversion is ambiguous, and
776 // we're going to produce a diagnostic. Perform the derived-to-base
777 // search just one more time to compute all of the possible paths so
778 // that we can print them out. This is more expensive than any of
779 // the previous derived-to-base checks we've done, but at this point
780 // performance isn't as much of an issue.
781 Paths.clear();
782 Paths.setRecordingPaths(true);
783 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
784 assert(StillOkay && "Can only be used with a derived-to-base conversion");
785 (void)StillOkay;
786
787 // Build up a textual representation of the ambiguous paths, e.g.,
788 // D -> B -> A, that will be used to illustrate the ambiguous
789 // conversions in the diagnostic. We only print one of the paths
790 // to each base class subobject.
791 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
792
793 Diag(Loc, AmbigiousBaseConvID)
794 << Derived << Base << PathDisplayStr << Range << Name;
795 return true;
796}
797
798bool
799Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000800 SourceLocation Loc, SourceRange Range,
John McCallf871d0c2010-08-07 06:22:56 +0000801 CXXCastPath *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000802 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000803 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +0000804 IgnoreAccess ? 0
805 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000806 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000807 Loc, Range, DeclarationName(),
808 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000809}
810
811
812/// @brief Builds a string representing ambiguous paths from a
813/// specific derived class to different subobjects of the same base
814/// class.
815///
816/// This function builds a string that can be used in error messages
817/// to show the different paths that one can take through the
818/// inheritance hierarchy to go from the derived class to different
819/// subobjects of a base class. The result looks something like this:
820/// @code
821/// struct D -> struct B -> struct A
822/// struct D -> struct C -> struct A
823/// @endcode
824std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
825 std::string PathDisplayStr;
826 std::set<unsigned> DisplayedPaths;
827 for (CXXBasePaths::paths_iterator Path = Paths.begin();
828 Path != Paths.end(); ++Path) {
829 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
830 // We haven't displayed a path to this particular base
831 // class subobject yet.
832 PathDisplayStr += "\n ";
833 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
834 for (CXXBasePath::const_iterator Element = Path->begin();
835 Element != Path->end(); ++Element)
836 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
837 }
838 }
839
840 return PathDisplayStr;
841}
842
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000843//===----------------------------------------------------------------------===//
844// C++ class member Handling
845//===----------------------------------------------------------------------===//
846
Abramo Bagnara6206d532010-06-05 05:09:32 +0000847/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCalld226f652010-08-21 09:40:31 +0000848Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
849 SourceLocation ASLoc,
850 SourceLocation ColonLoc) {
Abramo Bagnara6206d532010-06-05 05:09:32 +0000851 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCalld226f652010-08-21 09:40:31 +0000852 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnara6206d532010-06-05 05:09:32 +0000853 ASLoc, ColonLoc);
854 CurContext->addHiddenDecl(ASDecl);
John McCalld226f652010-08-21 09:40:31 +0000855 return ASDecl;
Abramo Bagnara6206d532010-06-05 05:09:32 +0000856}
857
Anders Carlsson9e682d92011-01-20 05:57:14 +0000858/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlsson4ebf1602011-01-20 06:29:02 +0000859void Sema::CheckOverrideControl(const Decl *D) {
Anders Carlsson9e682d92011-01-20 05:57:14 +0000860 const CXXMethodDecl *MD = llvm::dyn_cast<CXXMethodDecl>(D);
861 if (!MD || !MD->isVirtual())
862 return;
863
Anders Carlsson3ffe1832011-01-20 06:33:26 +0000864 if (MD->isDependentContext())
865 return;
866
Anders Carlsson9e682d92011-01-20 05:57:14 +0000867 // C++0x [class.virtual]p3:
868 // If a virtual function is marked with the virt-specifier override and does
869 // not override a member function of a base class,
870 // the program is ill-formed.
871 bool HasOverriddenMethods =
872 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000873 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlsson4ebf1602011-01-20 06:29:02 +0000874 Diag(MD->getLocation(),
Anders Carlsson9e682d92011-01-20 05:57:14 +0000875 diag::err_function_marked_override_not_overriding)
876 << MD->getDeclName();
877 return;
878 }
Anders Carlssonaa23d282011-01-22 22:23:37 +0000879
880 // C++0x [class.derived]p8:
881 // In a class definition marked with the class-virt-specifier explicit,
882 // if a virtual member function that is neither implicitly-declared nor a
883 // destructor overrides a member function of a base class and it is not
884 // marked with the virt-specifier override, the program is ill-formed.
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000885 if (MD->getParent()->hasAttr<ExplicitAttr>() && !isa<CXXDestructorDecl>(MD) &&
886 HasOverriddenMethods && !MD->hasAttr<OverrideAttr>()) {
Anders Carlssonaa23d282011-01-22 22:23:37 +0000887 llvm::SmallVector<const CXXMethodDecl*, 4>
888 OverriddenMethods(MD->begin_overridden_methods(),
889 MD->end_overridden_methods());
890
891 Diag(MD->getLocation(), diag::err_function_overriding_without_override)
892 << MD->getDeclName()
893 << (unsigned)OverriddenMethods.size();
894
895 for (unsigned I = 0; I != OverriddenMethods.size(); ++I)
896 Diag(OverriddenMethods[I]->getLocation(),
897 diag::note_overridden_virtual_function);
898 }
Anders Carlsson9e682d92011-01-20 05:57:14 +0000899}
900
Anders Carlsson2e1c7302011-01-20 16:25:36 +0000901/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
902/// function overrides a virtual member function marked 'final', according to
903/// C++0x [class.virtual]p3.
904bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
905 const CXXMethodDecl *Old) {
Anders Carlssoncb88a1f2011-01-24 16:26:15 +0000906 if (!Old->hasAttr<FinalAttr>())
Anders Carlssonf89e0422011-01-23 21:07:30 +0000907 return false;
908
909 Diag(New->getLocation(), diag::err_final_function_overridden)
910 << New->getDeclName();
911 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
912 return true;
Anders Carlsson2e1c7302011-01-20 16:25:36 +0000913}
914
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000915/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
916/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
917/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000918/// any.
John McCalld226f652010-08-21 09:40:31 +0000919Decl *
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000920Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000921 MultiTemplateParamsArg TemplateParameterLists,
Anders Carlsson69a87352011-01-20 03:57:25 +0000922 ExprTy *BW, const VirtSpecifiers &VS,
923 ExprTy *InitExpr, bool IsDefinition,
Sebastian Redld1a78462009-11-24 23:38:44 +0000924 bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000925 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +0000926 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
927 DeclarationName Name = NameInfo.getName();
928 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor90ba6d52010-11-09 03:31:16 +0000929
930 // For anonymous bitfields, the location should point to the type.
931 if (Loc.isInvalid())
932 Loc = D.getSourceRange().getBegin();
933
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000934 Expr *BitWidth = static_cast<Expr*>(BW);
935 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000936
John McCall4bde1e12010-06-04 08:34:12 +0000937 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +0000938 assert(!DS.isFriendSpecified());
939
John McCall4bde1e12010-06-04 08:34:12 +0000940 bool isFunc = false;
941 if (D.isFunctionDeclarator())
942 isFunc = true;
943 else if (D.getNumTypeObjects() == 0 &&
944 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
John McCallb3d87482010-08-24 05:47:05 +0000945 QualType TDType = GetTypeFromParser(DS.getRepAsType());
John McCall4bde1e12010-06-04 08:34:12 +0000946 isFunc = TDType->isFunctionType();
947 }
948
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000949 // C++ 9.2p6: A member shall not be declared to have automatic storage
950 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000951 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
952 // data members and cannot be applied to names declared const or static,
953 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000954 switch (DS.getStorageClassSpec()) {
955 case DeclSpec::SCS_unspecified:
956 case DeclSpec::SCS_typedef:
957 case DeclSpec::SCS_static:
958 // FALL THROUGH.
959 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000960 case DeclSpec::SCS_mutable:
961 if (isFunc) {
962 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000963 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000964 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000965 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Sebastian Redla11f42f2008-11-17 23:24:37 +0000967 // FIXME: It would be nicer if the keyword was ignored only for this
968 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000969 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +0000970 }
971 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000972 default:
973 if (DS.getStorageClassSpecLoc().isValid())
974 Diag(DS.getStorageClassSpecLoc(),
975 diag::err_storageclass_invalid_for_member);
976 else
977 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
978 D.getMutableDeclSpec().ClearStorageClassSpecs();
979 }
980
Sebastian Redl669d5d72008-11-14 23:42:31 +0000981 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
982 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000983 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000984
985 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000986 if (isInstField) {
Douglas Gregor922fff22010-10-13 22:19:53 +0000987 CXXScopeSpec &SS = D.getCXXScopeSpec();
988
989
990 if (SS.isSet() && !SS.isInvalid()) {
991 // The user provided a superfluous scope specifier inside a class
992 // definition:
993 //
994 // class X {
995 // int X::member;
996 // };
997 DeclContext *DC = 0;
998 if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
999 Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
1000 << Name << FixItHint::CreateRemoval(SS.getRange());
1001 else
1002 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1003 << Name << SS.getRange();
1004
1005 SS.clear();
1006 }
1007
Douglas Gregor37b372b2009-08-20 22:52:58 +00001008 // FIXME: Check for template parameters!
Douglas Gregor56c04582010-12-16 00:46:58 +00001009 // FIXME: Check that the name is an identifier!
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001010 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1011 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001012 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +00001013 } else {
John McCalld226f652010-08-21 09:40:31 +00001014 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner6f8ce142009-03-05 23:03:49 +00001015 if (!Member) {
John McCalld226f652010-08-21 09:40:31 +00001016 return 0;
Chris Lattner6f8ce142009-03-05 23:03:49 +00001017 }
Chris Lattner8b963ef2009-03-05 23:01:03 +00001018
1019 // Non-instance-fields can't have a bitfield.
1020 if (BitWidth) {
1021 if (Member->isInvalidDecl()) {
1022 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00001023 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +00001024 // C++ 9.6p3: A bit-field shall not be a static member.
1025 // "static member 'A' cannot be a bit-field"
1026 Diag(Loc, diag::err_static_not_bitfield)
1027 << Name << BitWidth->getSourceRange();
1028 } else if (isa<TypedefDecl>(Member)) {
1029 // "typedef member 'x' cannot be a bit-field"
1030 Diag(Loc, diag::err_typedef_not_bitfield)
1031 << Name << BitWidth->getSourceRange();
1032 } else {
1033 // A function typedef ("typedef int f(); f a;").
1034 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1035 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +00001036 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +00001037 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +00001038 }
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Chris Lattner8b963ef2009-03-05 23:01:03 +00001040 BitWidth = 0;
1041 Member->setInvalidDecl();
1042 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +00001043
1044 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Douglas Gregor37b372b2009-08-20 22:52:58 +00001046 // If we have declared a member function template, set the access of the
1047 // templated declaration as well.
1048 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1049 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001050 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001051
Anders Carlssonaae5af22011-01-20 04:34:22 +00001052 if (VS.isOverrideSpecified()) {
1053 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1054 if (!MD || !MD->isVirtual()) {
1055 Diag(Member->getLocStart(),
1056 diag::override_keyword_only_allowed_on_virtual_member_functions)
1057 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001058 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001059 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001060 }
1061 if (VS.isFinalSpecified()) {
1062 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1063 if (!MD || !MD->isVirtual()) {
1064 Diag(Member->getLocStart(),
1065 diag::override_keyword_only_allowed_on_virtual_member_functions)
1066 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlsson9e682d92011-01-20 05:57:14 +00001067 } else
Anders Carlssoncb88a1f2011-01-24 16:26:15 +00001068 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlssonaae5af22011-01-20 04:34:22 +00001069 }
Anders Carlsson9e682d92011-01-20 05:57:14 +00001070
Anders Carlsson4ebf1602011-01-20 06:29:02 +00001071 CheckOverrideControl(Member);
Anders Carlsson9e682d92011-01-20 05:57:14 +00001072
Douglas Gregor10bd3682008-11-17 22:58:34 +00001073 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001074
Douglas Gregor021c3b32009-03-11 23:00:04 +00001075 if (Init)
Richard Smith34b41d92011-02-20 03:19:35 +00001076 AddInitializerToDecl(Member, Init, false,
1077 DS.getTypeSpecType() == DeclSpec::TST_auto);
Sebastian Redle2b68332009-04-12 17:16:29 +00001078 if (Deleted) // FIXME: Source location is not very good.
John McCalld226f652010-08-21 09:40:31 +00001079 SetDeclDeleted(Member, D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001080
John McCallb25b2952011-02-15 07:12:36 +00001081 if (isInstField)
Douglas Gregor44b43212008-12-11 16:49:14 +00001082 FieldCollector->Add(cast<FieldDecl>(Member));
John McCalld226f652010-08-21 09:40:31 +00001083 return Member;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001084}
1085
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001086/// \brief Find the direct and/or virtual base specifiers that
1087/// correspond to the given base type, for use in base initialization
1088/// within a constructor.
1089static bool FindBaseInitializer(Sema &SemaRef,
1090 CXXRecordDecl *ClassDecl,
1091 QualType BaseType,
1092 const CXXBaseSpecifier *&DirectBaseSpec,
1093 const CXXBaseSpecifier *&VirtualBaseSpec) {
1094 // First, check for a direct base class.
1095 DirectBaseSpec = 0;
1096 for (CXXRecordDecl::base_class_const_iterator Base
1097 = ClassDecl->bases_begin();
1098 Base != ClassDecl->bases_end(); ++Base) {
1099 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1100 // We found a direct base of this type. That's what we're
1101 // initializing.
1102 DirectBaseSpec = &*Base;
1103 break;
1104 }
1105 }
1106
1107 // Check for a virtual base class.
1108 // FIXME: We might be able to short-circuit this if we know in advance that
1109 // there are no virtual bases.
1110 VirtualBaseSpec = 0;
1111 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1112 // We haven't found a base yet; search the class hierarchy for a
1113 // virtual base class.
1114 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1115 /*DetectVirtual=*/false);
1116 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1117 BaseType, Paths)) {
1118 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1119 Path != Paths.end(); ++Path) {
1120 if (Path->back().Base->isVirtual()) {
1121 VirtualBaseSpec = Path->back().Base;
1122 break;
1123 }
1124 }
1125 }
1126 }
1127
1128 return DirectBaseSpec || VirtualBaseSpec;
1129}
1130
Douglas Gregor7ad83902008-11-05 04:29:56 +00001131/// ActOnMemInitializer - Handle a C++ member initializer.
John McCallf312b1e2010-08-26 23:41:50 +00001132MemInitResult
John McCalld226f652010-08-21 09:40:31 +00001133Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001134 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001135 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001136 IdentifierInfo *MemberOrBase,
John McCallb3d87482010-08-24 05:47:05 +00001137 ParsedType TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001138 SourceLocation IdLoc,
1139 SourceLocation LParenLoc,
1140 ExprTy **Args, unsigned NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001141 SourceLocation RParenLoc,
1142 SourceLocation EllipsisLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001143 if (!ConstructorD)
1144 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001145
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001146 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001147
1148 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00001149 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001150 if (!Constructor) {
1151 // The user wrote a constructor initializer on a function that is
1152 // not a C++ constructor. Ignore the error for now, because we may
1153 // have more member initializers coming; we'll diagnose it just
1154 // once in ActOnMemInitializers.
1155 return true;
1156 }
1157
1158 CXXRecordDecl *ClassDecl = Constructor->getParent();
1159
1160 // C++ [class.base.init]p2:
1161 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky7663f392010-11-20 01:29:55 +00001162 // constructor's class and, if not found in that scope, are looked
1163 // up in the scope containing the constructor's definition.
1164 // [Note: if the constructor's class contains a member with the
1165 // same name as a direct or virtual base class of the class, a
1166 // mem-initializer-id naming the member or base class and composed
1167 // of a single identifier refers to the class member. A
Douglas Gregor7ad83902008-11-05 04:29:56 +00001168 // mem-initializer-id for the hidden base class may be specified
1169 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001170 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001171 // Look for a member, first.
1172 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001173 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001174 = ClassDecl->lookup(MemberOrBase);
Francois Pichet87c2e122010-11-21 06:08:52 +00001175 if (Result.first != Result.second) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001176 Member = dyn_cast<FieldDecl>(*Result.first);
Francois Pichet87c2e122010-11-21 06:08:52 +00001177
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001178 if (Member) {
1179 if (EllipsisLoc.isValid())
1180 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1181 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1182
Francois Pichet00eb3f92010-12-04 09:14:42 +00001183 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001184 LParenLoc, RParenLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001185 }
1186
Francois Pichet00eb3f92010-12-04 09:14:42 +00001187 // Handle anonymous union case.
1188 if (IndirectFieldDecl* IndirectField
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001189 = dyn_cast<IndirectFieldDecl>(*Result.first)) {
1190 if (EllipsisLoc.isValid())
1191 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1192 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1193
Francois Pichet00eb3f92010-12-04 09:14:42 +00001194 return BuildMemberInitializer(IndirectField, (Expr**)Args,
1195 NumArgs, IdLoc,
1196 LParenLoc, RParenLoc);
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001197 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00001198 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001199 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001200 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001201 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001202 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001203
1204 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001205 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCall2b194412009-12-21 10:41:20 +00001206 } else {
1207 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1208 LookupParsedName(R, S, &SS);
1209
1210 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1211 if (!TyD) {
1212 if (R.isAmbiguous()) return true;
1213
John McCallfd225442010-04-09 19:01:14 +00001214 // We don't want access-control diagnostics here.
1215 R.suppressDiagnostics();
1216
Douglas Gregor7a886e12010-01-19 06:46:48 +00001217 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1218 bool NotUnknownSpecialization = false;
1219 DeclContext *DC = computeDeclContext(SS, false);
1220 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1221 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1222
1223 if (!NotUnknownSpecialization) {
1224 // When the scope specifier can refer to a member of an unknown
1225 // specialization, we take it as a type name.
Douglas Gregor107de902010-04-24 15:35:55 +00001226 BaseType = CheckTypenameType(ETK_None,
1227 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001228 *MemberOrBase, SourceLocation(),
1229 SS.getRange(), IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001230 if (BaseType.isNull())
1231 return true;
1232
Douglas Gregor7a886e12010-01-19 06:46:48 +00001233 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001234 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001235 }
1236 }
1237
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001238 // If no results were found, try to correct typos.
Douglas Gregor7a886e12010-01-19 06:46:48 +00001239 if (R.empty() && BaseType.isNull() &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00001240 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1241 R.isSingleResult()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001242 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00001243 if (Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl)) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001244 // We have found a non-static data member with a similar
1245 // name to what was typed; complain and initialize that
1246 // member.
1247 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1248 << MemberOrBase << true << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001249 << FixItHint::CreateReplacement(R.getNameLoc(),
1250 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001251 Diag(Member->getLocation(), diag::note_previous_decl)
1252 << Member->getDeclName();
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001253
1254 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1255 LParenLoc, RParenLoc);
1256 }
1257 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1258 const CXXBaseSpecifier *DirectBaseSpec;
1259 const CXXBaseSpecifier *VirtualBaseSpec;
1260 if (FindBaseInitializer(*this, ClassDecl,
1261 Context.getTypeDeclType(Type),
1262 DirectBaseSpec, VirtualBaseSpec)) {
1263 // We have found a direct or virtual base class with a
1264 // similar name to what was typed; complain and initialize
1265 // that base class.
1266 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1267 << MemberOrBase << false << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001268 << FixItHint::CreateReplacement(R.getNameLoc(),
1269 R.getLookupName().getAsString());
Douglas Gregor0d535c82010-01-07 00:26:25 +00001270
1271 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1272 : VirtualBaseSpec;
1273 Diag(BaseSpec->getSourceRange().getBegin(),
1274 diag::note_base_class_specified_here)
1275 << BaseSpec->getType()
1276 << BaseSpec->getSourceRange();
1277
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001278 TyD = Type;
1279 }
1280 }
1281 }
1282
Douglas Gregor7a886e12010-01-19 06:46:48 +00001283 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001284 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1285 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1286 return true;
1287 }
John McCall2b194412009-12-21 10:41:20 +00001288 }
1289
Douglas Gregor7a886e12010-01-19 06:46:48 +00001290 if (BaseType.isNull()) {
1291 BaseType = Context.getTypeDeclType(TyD);
1292 if (SS.isSet()) {
1293 NestedNameSpecifier *Qualifier =
1294 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001295
Douglas Gregor7a886e12010-01-19 06:46:48 +00001296 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001297 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001298 }
John McCall2b194412009-12-21 10:41:20 +00001299 }
1300 }
Mike Stump1eb44332009-09-09 15:08:12 +00001301
John McCalla93c9342009-12-07 02:54:59 +00001302 if (!TInfo)
1303 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001304
John McCalla93c9342009-12-07 02:54:59 +00001305 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001306 LParenLoc, RParenLoc, ClassDecl, EllipsisLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001307}
1308
John McCallb4190042009-11-04 23:02:40 +00001309/// Checks an initializer expression for use of uninitialized fields, such as
1310/// containing the field that is being initialized. Returns true if there is an
1311/// uninitialized field was used an updates the SourceLocation parameter; false
1312/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00001313static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichet00eb3f92010-12-04 09:14:42 +00001314 const ValueDecl *LhsField,
Nick Lewycky43ad1822010-06-15 07:32:55 +00001315 SourceLocation *L) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00001316 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
1317
Nick Lewycky43ad1822010-06-15 07:32:55 +00001318 if (isa<CallExpr>(S)) {
1319 // Do not descend into function calls or constructors, as the use
1320 // of an uninitialized field may be valid. One would have to inspect
1321 // the contents of the function/ctor to determine if it is safe or not.
1322 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1323 // may be safe, depending on what the function/ctor does.
1324 return false;
1325 }
1326 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1327 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson175ffbf2010-10-06 02:43:25 +00001328
1329 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
1330 // The member expression points to a static data member.
1331 assert(VD->isStaticDataMember() &&
1332 "Member points to non-static data member!");
Nick Lewyckyedd59112010-10-06 18:37:39 +00001333 (void)VD;
Anders Carlsson175ffbf2010-10-06 02:43:25 +00001334 return false;
1335 }
1336
1337 if (isa<EnumConstantDecl>(RhsField)) {
1338 // The member expression points to an enum.
1339 return false;
1340 }
1341
John McCallb4190042009-11-04 23:02:40 +00001342 if (RhsField == LhsField) {
1343 // Initializing a field with itself. Throw a warning.
1344 // But wait; there are exceptions!
1345 // Exception #1: The field may not belong to this record.
1346 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00001347 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00001348 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1349 // Even though the field matches, it does not belong to this record.
1350 return false;
1351 }
1352 // None of the exceptions triggered; return true to indicate an
1353 // uninitialized field was used.
1354 *L = ME->getMemberLoc();
1355 return true;
1356 }
Argyrios Kyrtzidisff8819b2010-09-21 10:47:20 +00001357 } else if (isa<SizeOfAlignOfExpr>(S)) {
1358 // sizeof/alignof doesn't reference contents, do not warn.
1359 return false;
1360 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
1361 // address-of doesn't reference contents (the pointer may be dereferenced
1362 // in the same expression but it would be rare; and weird).
1363 if (UOE->getOpcode() == UO_AddrOf)
1364 return false;
John McCallb4190042009-11-04 23:02:40 +00001365 }
John McCall7502c1d2011-02-13 04:07:26 +00001366 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewycky43ad1822010-06-15 07:32:55 +00001367 if (!*it) {
1368 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00001369 continue;
1370 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001371 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1372 return true;
John McCallb4190042009-11-04 23:02:40 +00001373 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001374 return false;
John McCallb4190042009-11-04 23:02:40 +00001375}
1376
John McCallf312b1e2010-08-26 23:41:50 +00001377MemInitResult
Chandler Carruth894aed92010-12-06 09:23:57 +00001378Sema::BuildMemberInitializer(ValueDecl *Member, Expr **Args,
Eli Friedman59c04372009-07-29 19:44:27 +00001379 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001380 SourceLocation LParenLoc,
Eli Friedman59c04372009-07-29 19:44:27 +00001381 SourceLocation RParenLoc) {
Chandler Carruth894aed92010-12-06 09:23:57 +00001382 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
1383 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
1384 assert((DirectMember || IndirectMember) &&
Francois Pichet00eb3f92010-12-04 09:14:42 +00001385 "Member must be a FieldDecl or IndirectFieldDecl");
1386
Douglas Gregor464b2f02010-11-05 22:21:31 +00001387 if (Member->isInvalidDecl())
1388 return true;
Chandler Carruth894aed92010-12-06 09:23:57 +00001389
John McCallb4190042009-11-04 23:02:40 +00001390 // Diagnose value-uses of fields to initialize themselves, e.g.
1391 // foo(foo)
1392 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001393 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001394 for (unsigned i = 0; i < NumArgs; ++i) {
1395 SourceLocation L;
1396 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1397 // FIXME: Return true in the case when other fields are used before being
1398 // uninitialized. For example, let this field be the i'th field. When
1399 // initializing the i'th field, throw a warning if any of the >= i'th
1400 // fields are used, as they are not yet initialized.
1401 // Right now we are only handling the case where the i'th field uses
1402 // itself in its initializer.
1403 Diag(L, diag::warn_field_is_uninit);
1404 }
1405 }
1406
Eli Friedman59c04372009-07-29 19:44:27 +00001407 bool HasDependentArg = false;
1408 for (unsigned i = 0; i < NumArgs; i++)
1409 HasDependentArg |= Args[i]->isTypeDependent();
1410
Chandler Carruth894aed92010-12-06 09:23:57 +00001411 Expr *Init;
Eli Friedman0f2b97d2010-07-24 21:19:15 +00001412 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001413 // Can't check initialization for a member of dependent type or when
1414 // any of the arguments are type-dependent expressions.
Chandler Carruth894aed92010-12-06 09:23:57 +00001415 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1416 RParenLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001417
1418 // Erase any temporaries within this evaluation context; we're not
1419 // going to track them in the AST, since we'll be rebuilding the
1420 // ASTs during template instantiation.
1421 ExprTemporaries.erase(
1422 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1423 ExprTemporaries.end());
Chandler Carruth894aed92010-12-06 09:23:57 +00001424 } else {
1425 // Initialize the member.
1426 InitializedEntity MemberEntity =
1427 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
1428 : InitializedEntity::InitializeMember(IndirectMember, 0);
1429 InitializationKind Kind =
1430 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
John McCallb4eb64d2010-10-08 02:01:28 +00001431
Chandler Carruth894aed92010-12-06 09:23:57 +00001432 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1433
1434 ExprResult MemberInit =
1435 InitSeq.Perform(*this, MemberEntity, Kind,
1436 MultiExprArg(*this, Args, NumArgs), 0);
1437 if (MemberInit.isInvalid())
1438 return true;
1439
1440 CheckImplicitConversions(MemberInit.get(), LParenLoc);
1441
1442 // C++0x [class.base.init]p7:
1443 // The initialization of each base and member constitutes a
1444 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00001445 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruth894aed92010-12-06 09:23:57 +00001446 if (MemberInit.isInvalid())
1447 return true;
1448
1449 // If we are in a dependent context, template instantiation will
1450 // perform this type-checking again. Just save the arguments that we
1451 // received in a ParenListExpr.
1452 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1453 // of the information that we have about the member
1454 // initializer. However, deconstructing the ASTs is a dicey process,
1455 // and this approach is far more likely to get the corner cases right.
1456 if (CurContext->isDependentContext())
1457 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1458 RParenLoc);
1459 else
1460 Init = MemberInit.get();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001461 }
1462
Chandler Carruth894aed92010-12-06 09:23:57 +00001463 if (DirectMember) {
Sean Huntcbb67482011-01-08 20:30:50 +00001464 return new (Context) CXXCtorInitializer(Context, DirectMember,
Chandler Carruth894aed92010-12-06 09:23:57 +00001465 IdLoc, LParenLoc, Init,
1466 RParenLoc);
1467 } else {
Sean Huntcbb67482011-01-08 20:30:50 +00001468 return new (Context) CXXCtorInitializer(Context, IndirectMember,
Chandler Carruth894aed92010-12-06 09:23:57 +00001469 IdLoc, LParenLoc, Init,
1470 RParenLoc);
1471 }
Eli Friedman59c04372009-07-29 19:44:27 +00001472}
1473
John McCallf312b1e2010-08-26 23:41:50 +00001474MemInitResult
Sean Hunt97fcc492011-01-08 19:20:43 +00001475Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo,
1476 Expr **Args, unsigned NumArgs,
1477 SourceLocation LParenLoc,
1478 SourceLocation RParenLoc,
1479 CXXRecordDecl *ClassDecl,
1480 SourceLocation EllipsisLoc) {
1481 SourceLocation Loc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
1482 if (!LangOpts.CPlusPlus0x)
1483 return Diag(Loc, diag::err_delegation_0x_only)
1484 << TInfo->getTypeLoc().getLocalSourceRange();
1485
1486 return Diag(Loc, diag::err_delegation_unimplemented)
1487 << TInfo->getTypeLoc().getLocalSourceRange();
1488}
1489
1490MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00001491Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregor802ab452009-12-02 22:36:29 +00001492 Expr **Args, unsigned NumArgs,
1493 SourceLocation LParenLoc, SourceLocation RParenLoc,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001494 CXXRecordDecl *ClassDecl,
1495 SourceLocation EllipsisLoc) {
Eli Friedman59c04372009-07-29 19:44:27 +00001496 bool HasDependentArg = false;
1497 for (unsigned i = 0; i < NumArgs; i++)
1498 HasDependentArg |= Args[i]->isTypeDependent();
1499
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001500 SourceLocation BaseLoc
1501 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1502
1503 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1504 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1505 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1506
1507 // C++ [class.base.init]p2:
1508 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky7663f392010-11-20 01:29:55 +00001509 // member of the constructor's class or a direct or virtual base
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001510 // of that class, the mem-initializer is ill-formed. A
1511 // mem-initializer-list can initialize a base class using any
1512 // name that denotes that base class type.
1513 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1514
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001515 if (EllipsisLoc.isValid()) {
1516 // This is a pack expansion.
1517 if (!BaseType->containsUnexpandedParameterPack()) {
1518 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1519 << SourceRange(BaseLoc, RParenLoc);
1520
1521 EllipsisLoc = SourceLocation();
1522 }
1523 } else {
1524 // Check for any unexpanded parameter packs.
1525 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
1526 return true;
1527
1528 for (unsigned I = 0; I != NumArgs; ++I)
1529 if (DiagnoseUnexpandedParameterPack(Args[I]))
1530 return true;
1531 }
1532
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001533 // Check for direct and virtual base classes.
1534 const CXXBaseSpecifier *DirectBaseSpec = 0;
1535 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1536 if (!Dependent) {
Sean Hunt97fcc492011-01-08 19:20:43 +00001537 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
1538 BaseType))
1539 return BuildDelegatingInitializer(BaseTInfo, Args, NumArgs,
1540 LParenLoc, RParenLoc, ClassDecl,
1541 EllipsisLoc);
1542
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001543 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1544 VirtualBaseSpec);
1545
1546 // C++ [base.class.init]p2:
1547 // Unless the mem-initializer-id names a nonstatic data member of the
1548 // constructor's class or a direct or virtual base of that class, the
1549 // mem-initializer is ill-formed.
1550 if (!DirectBaseSpec && !VirtualBaseSpec) {
1551 // If the class has any dependent bases, then it's possible that
1552 // one of those types will resolve to the same type as
1553 // BaseType. Therefore, just treat this as a dependent base
1554 // class initialization. FIXME: Should we try to check the
1555 // initialization anyway? It seems odd.
1556 if (ClassDecl->hasAnyDependentBases())
1557 Dependent = true;
1558 else
1559 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1560 << BaseType << Context.getTypeDeclType(ClassDecl)
1561 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1562 }
1563 }
1564
1565 if (Dependent) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001566 // Can't check initialization for a base of dependent type or when
1567 // any of the arguments are type-dependent expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00001568 ExprResult BaseInit
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001569 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1570 RParenLoc));
Eli Friedman59c04372009-07-29 19:44:27 +00001571
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001572 // Erase any temporaries within this evaluation context; we're not
1573 // going to track them in the AST, since we'll be rebuilding the
1574 // ASTs during template instantiation.
1575 ExprTemporaries.erase(
1576 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1577 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001578
Sean Huntcbb67482011-01-08 20:30:50 +00001579 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001580 /*IsVirtual=*/false,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001581 LParenLoc,
1582 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001583 RParenLoc,
1584 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001585 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001586
1587 // C++ [base.class.init]p2:
1588 // If a mem-initializer-id is ambiguous because it designates both
1589 // a direct non-virtual base class and an inherited virtual base
1590 // class, the mem-initializer is ill-formed.
1591 if (DirectBaseSpec && VirtualBaseSpec)
1592 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001593 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001594
1595 CXXBaseSpecifier *BaseSpec
1596 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1597 if (!BaseSpec)
1598 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1599
1600 // Initialize the base.
1601 InitializedEntity BaseEntity =
Anders Carlsson711f34a2010-04-21 19:52:01 +00001602 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001603 InitializationKind Kind =
1604 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1605
1606 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1607
John McCall60d7b3a2010-08-24 06:29:42 +00001608 ExprResult BaseInit =
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001609 InitSeq.Perform(*this, BaseEntity, Kind,
John McCallca0408f2010-08-23 06:44:23 +00001610 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001611 if (BaseInit.isInvalid())
1612 return true;
John McCallb4eb64d2010-10-08 02:01:28 +00001613
1614 CheckImplicitConversions(BaseInit.get(), LParenLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001615
1616 // C++0x [class.base.init]p7:
1617 // The initialization of each base and member constitutes a
1618 // full-expression.
Douglas Gregor53c374f2010-12-07 00:41:46 +00001619 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001620 if (BaseInit.isInvalid())
1621 return true;
1622
1623 // If we are in a dependent context, template instantiation will
1624 // perform this type-checking again. Just save the arguments that we
1625 // received in a ParenListExpr.
1626 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1627 // of the information that we have about the base
1628 // initializer. However, deconstructing the ASTs is a dicey process,
1629 // and this approach is far more likely to get the corner cases right.
1630 if (CurContext->isDependentContext()) {
John McCall60d7b3a2010-08-24 06:29:42 +00001631 ExprResult Init
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001632 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1633 RParenLoc));
Sean Huntcbb67482011-01-08 20:30:50 +00001634 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001635 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001636 LParenLoc,
1637 Init.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001638 RParenLoc,
1639 EllipsisLoc);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001640 }
1641
Sean Huntcbb67482011-01-08 20:30:50 +00001642 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001643 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001644 LParenLoc,
1645 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001646 RParenLoc,
1647 EllipsisLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001648}
1649
Anders Carlssone5ef7402010-04-23 03:10:23 +00001650/// ImplicitInitializerKind - How an implicit base or member initializer should
1651/// initialize its base or member.
1652enum ImplicitInitializerKind {
1653 IIK_Default,
1654 IIK_Copy,
1655 IIK_Move
1656};
1657
Anders Carlssondefefd22010-04-23 02:00:02 +00001658static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001659BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001660 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00001661 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00001662 bool IsInheritedVirtualBase,
Sean Huntcbb67482011-01-08 20:30:50 +00001663 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00001664 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00001665 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1666 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00001667
John McCall60d7b3a2010-08-24 06:29:42 +00001668 ExprResult BaseInit;
Anders Carlssone5ef7402010-04-23 03:10:23 +00001669
1670 switch (ImplicitInitKind) {
1671 case IIK_Default: {
1672 InitializationKind InitKind
1673 = InitializationKind::CreateDefault(Constructor->getLocation());
1674 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1675 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001676 MultiExprArg(SemaRef, 0, 0));
Anders Carlssone5ef7402010-04-23 03:10:23 +00001677 break;
1678 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001679
Anders Carlssone5ef7402010-04-23 03:10:23 +00001680 case IIK_Copy: {
1681 ParmVarDecl *Param = Constructor->getParamDecl(0);
1682 QualType ParamType = Param->getType().getNonReferenceType();
1683
1684 Expr *CopyCtorArg =
1685 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
John McCallf89e55a2010-11-18 06:31:45 +00001686 Constructor->getLocation(), ParamType,
1687 VK_LValue, 0);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001688
Anders Carlssonc7957502010-04-24 22:02:54 +00001689 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00001690 QualType ArgTy =
1691 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1692 ParamType.getQualifiers());
John McCallf871d0c2010-08-07 06:22:56 +00001693
1694 CXXCastPath BasePath;
1695 BasePath.push_back(BaseSpec);
Sebastian Redl906082e2010-07-20 04:20:21 +00001696 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
John McCall2de56d12010-08-25 11:45:40 +00001697 CK_UncheckedDerivedToBase,
John McCall5baba9d2010-08-25 10:28:54 +00001698 VK_LValue, &BasePath);
Anders Carlssonc7957502010-04-24 22:02:54 +00001699
Anders Carlssone5ef7402010-04-23 03:10:23 +00001700 InitializationKind InitKind
1701 = InitializationKind::CreateDirect(Constructor->getLocation(),
1702 SourceLocation(), SourceLocation());
1703 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1704 &CopyCtorArg, 1);
1705 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001706 MultiExprArg(&CopyCtorArg, 1));
Anders Carlssone5ef7402010-04-23 03:10:23 +00001707 break;
1708 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001709
Anders Carlssone5ef7402010-04-23 03:10:23 +00001710 case IIK_Move:
1711 assert(false && "Unhandled initializer kind!");
1712 }
John McCall9ae2f072010-08-23 23:25:46 +00001713
Douglas Gregor53c374f2010-12-07 00:41:46 +00001714 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlsson84688f22010-04-20 23:11:20 +00001715 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001716 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001717
Anders Carlssondefefd22010-04-23 02:00:02 +00001718 CXXBaseInit =
Sean Huntcbb67482011-01-08 20:30:50 +00001719 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlsson84688f22010-04-20 23:11:20 +00001720 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1721 SourceLocation()),
1722 BaseSpec->isVirtual(),
1723 SourceLocation(),
1724 BaseInit.takeAs<Expr>(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00001725 SourceLocation(),
Anders Carlsson84688f22010-04-20 23:11:20 +00001726 SourceLocation());
1727
Anders Carlssondefefd22010-04-23 02:00:02 +00001728 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001729}
1730
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001731static bool
1732BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001733 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001734 FieldDecl *Field,
Sean Huntcbb67482011-01-08 20:30:50 +00001735 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001736 if (Field->isInvalidDecl())
1737 return true;
1738
Chandler Carruthf186b542010-06-29 23:50:44 +00001739 SourceLocation Loc = Constructor->getLocation();
1740
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001741 if (ImplicitInitKind == IIK_Copy) {
1742 ParmVarDecl *Param = Constructor->getParamDecl(0);
1743 QualType ParamType = Param->getType().getNonReferenceType();
1744
1745 Expr *MemberExprBase =
1746 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
John McCallf89e55a2010-11-18 06:31:45 +00001747 Loc, ParamType, VK_LValue, 0);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001748
1749 // Build a reference to this field within the parameter.
1750 CXXScopeSpec SS;
1751 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1752 Sema::LookupMemberName);
1753 MemberLookup.addDecl(Field, AS_public);
1754 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00001755 ExprResult CopyCtorArg
John McCall9ae2f072010-08-23 23:25:46 +00001756 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001757 ParamType, Loc,
1758 /*IsArrow=*/false,
1759 SS,
1760 /*FirstQualifierInScope=*/0,
1761 MemberLookup,
1762 /*TemplateArgs=*/0);
1763 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001764 return true;
1765
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001766 // When the field we are copying is an array, create index variables for
1767 // each dimension of the array. We use these index variables to subscript
1768 // the source array, and other clients (e.g., CodeGen) will perform the
1769 // necessary iteration with these index variables.
1770 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1771 QualType BaseType = Field->getType();
1772 QualType SizeType = SemaRef.Context.getSizeType();
1773 while (const ConstantArrayType *Array
1774 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1775 // Create the iteration variable for this array index.
1776 IdentifierInfo *IterationVarName = 0;
1777 {
1778 llvm::SmallString<8> Str;
1779 llvm::raw_svector_ostream OS(Str);
1780 OS << "__i" << IndexVariables.size();
1781 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1782 }
1783 VarDecl *IterationVar
1784 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1785 IterationVarName, SizeType,
1786 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00001787 SC_None, SC_None);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001788 IndexVariables.push_back(IterationVar);
1789
1790 // Create a reference to the iteration variable.
John McCall60d7b3a2010-08-24 06:29:42 +00001791 ExprResult IterationVarRef
John McCallf89e55a2010-11-18 06:31:45 +00001792 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001793 assert(!IterationVarRef.isInvalid() &&
1794 "Reference to invented variable cannot fail!");
1795
1796 // Subscript the array with this iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00001797 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001798 Loc,
John McCall9ae2f072010-08-23 23:25:46 +00001799 IterationVarRef.take(),
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001800 Loc);
1801 if (CopyCtorArg.isInvalid())
1802 return true;
1803
1804 BaseType = Array->getElementType();
1805 }
1806
1807 // Construct the entity that we will be initializing. For an array, this
1808 // will be first element in the array, which may require several levels
1809 // of array-subscript entities.
1810 llvm::SmallVector<InitializedEntity, 4> Entities;
1811 Entities.reserve(1 + IndexVariables.size());
1812 Entities.push_back(InitializedEntity::InitializeMember(Field));
1813 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1814 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1815 0,
1816 Entities.back()));
1817
1818 // Direct-initialize to use the copy constructor.
1819 InitializationKind InitKind =
1820 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1821
1822 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1823 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1824 &CopyCtorArgE, 1);
1825
John McCall60d7b3a2010-08-24 06:29:42 +00001826 ExprResult MemberInit
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001827 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCallf312b1e2010-08-26 23:41:50 +00001828 MultiExprArg(&CopyCtorArgE, 1));
Douglas Gregor53c374f2010-12-07 00:41:46 +00001829 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001830 if (MemberInit.isInvalid())
1831 return true;
1832
1833 CXXMemberInit
Sean Huntcbb67482011-01-08 20:30:50 +00001834 = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, Loc,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001835 MemberInit.takeAs<Expr>(), Loc,
1836 IndexVariables.data(),
1837 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001838 return false;
1839 }
1840
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001841 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1842
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001843 QualType FieldBaseElementType =
1844 SemaRef.Context.getBaseElementType(Field->getType());
1845
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001846 if (FieldBaseElementType->isRecordType()) {
1847 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001848 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00001849 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001850
1851 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00001852 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00001853 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCall9ae2f072010-08-23 23:25:46 +00001854
Douglas Gregor53c374f2010-12-07 00:41:46 +00001855 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001856 if (MemberInit.isInvalid())
1857 return true;
1858
1859 CXXMemberInit =
Sean Huntcbb67482011-01-08 20:30:50 +00001860 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Chandler Carruthf186b542010-06-29 23:50:44 +00001861 Field, Loc, Loc,
John McCall9ae2f072010-08-23 23:25:46 +00001862 MemberInit.get(),
Chandler Carruthf186b542010-06-29 23:50:44 +00001863 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001864 return false;
1865 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001866
1867 if (FieldBaseElementType->isReferenceType()) {
1868 SemaRef.Diag(Constructor->getLocation(),
1869 diag::err_uninitialized_member_in_ctor)
1870 << (int)Constructor->isImplicit()
1871 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1872 << 0 << Field->getDeclName();
1873 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1874 return true;
1875 }
1876
1877 if (FieldBaseElementType.isConstQualified()) {
1878 SemaRef.Diag(Constructor->getLocation(),
1879 diag::err_uninitialized_member_in_ctor)
1880 << (int)Constructor->isImplicit()
1881 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1882 << 1 << Field->getDeclName();
1883 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1884 return true;
1885 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001886
1887 // Nothing to initialize.
1888 CXXMemberInit = 0;
1889 return false;
1890}
John McCallf1860e52010-05-20 23:23:51 +00001891
1892namespace {
1893struct BaseAndFieldInfo {
1894 Sema &S;
1895 CXXConstructorDecl *Ctor;
1896 bool AnyErrorsInInits;
1897 ImplicitInitializerKind IIK;
Sean Huntcbb67482011-01-08 20:30:50 +00001898 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
1899 llvm::SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallf1860e52010-05-20 23:23:51 +00001900
1901 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1902 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1903 // FIXME: Handle implicit move constructors.
1904 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1905 IIK = IIK_Copy;
1906 else
1907 IIK = IIK_Default;
1908 }
1909};
1910}
1911
1912static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1913 FieldDecl *Top, FieldDecl *Field) {
1914
Chandler Carruthe861c602010-06-30 02:59:29 +00001915 // Overwhelmingly common case: we have a direct initializer for this field.
Sean Huntcbb67482011-01-08 20:30:50 +00001916 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00001917 Info.AllToInit.push_back(Init);
John McCallf1860e52010-05-20 23:23:51 +00001918 return false;
1919 }
1920
1921 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1922 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1923 assert(FieldClassType && "anonymous struct/union without record type");
John McCallf1860e52010-05-20 23:23:51 +00001924 CXXRecordDecl *FieldClassDecl
1925 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruthe861c602010-06-30 02:59:29 +00001926
1927 // Even though union members never have non-trivial default
1928 // constructions in C++03, we still build member initializers for aggregate
1929 // record types which can be union members, and C++0x allows non-trivial
1930 // default constructors for union members, so we ensure that only one
1931 // member is initialized for these.
1932 if (FieldClassDecl->isUnion()) {
1933 // First check for an explicit initializer for one field.
1934 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1935 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
Sean Huntcbb67482011-01-08 20:30:50 +00001936 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00001937 Info.AllToInit.push_back(Init);
Chandler Carruthe861c602010-06-30 02:59:29 +00001938
1939 // Once we've initialized a field of an anonymous union, the union
1940 // field in the class is also initialized, so exit immediately.
1941 return false;
Argyrios Kyrtzidis881b36c2010-08-16 17:27:13 +00001942 } else if ((*FA)->isAnonymousStructOrUnion()) {
1943 if (CollectFieldInitializer(Info, Top, *FA))
1944 return true;
Chandler Carruthe861c602010-06-30 02:59:29 +00001945 }
1946 }
1947
1948 // Fallthrough and construct a default initializer for the union as
1949 // a whole, which can call its default constructor if such a thing exists
1950 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1951 // behavior going forward with C++0x, when anonymous unions there are
1952 // finalized, we should revisit this.
1953 } else {
1954 // For structs, we simply descend through to initialize all members where
1955 // necessary.
1956 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1957 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1958 if (CollectFieldInitializer(Info, Top, *FA))
1959 return true;
1960 }
1961 }
John McCallf1860e52010-05-20 23:23:51 +00001962 }
1963
1964 // Don't try to build an implicit initializer if there were semantic
1965 // errors in any of the initializers (and therefore we might be
1966 // missing some that the user actually wrote).
1967 if (Info.AnyErrorsInInits)
1968 return false;
1969
Sean Huntcbb67482011-01-08 20:30:50 +00001970 CXXCtorInitializer *Init = 0;
John McCallf1860e52010-05-20 23:23:51 +00001971 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1972 return true;
John McCallf1860e52010-05-20 23:23:51 +00001973
Francois Pichet00eb3f92010-12-04 09:14:42 +00001974 if (Init)
1975 Info.AllToInit.push_back(Init);
1976
John McCallf1860e52010-05-20 23:23:51 +00001977 return false;
1978}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001979
Eli Friedman80c30da2009-11-09 19:20:36 +00001980bool
Sean Huntcbb67482011-01-08 20:30:50 +00001981Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
1982 CXXCtorInitializer **Initializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001983 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001984 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00001985 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001986 // Just store the initializers as written, they will be checked during
1987 // instantiation.
1988 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00001989 Constructor->setNumCtorInitializers(NumInitializers);
1990 CXXCtorInitializer **baseOrMemberInitializers =
1991 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001992 memcpy(baseOrMemberInitializers, Initializers,
Sean Huntcbb67482011-01-08 20:30:50 +00001993 NumInitializers * sizeof(CXXCtorInitializer*));
1994 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001995 }
1996
1997 return false;
1998 }
1999
John McCallf1860e52010-05-20 23:23:51 +00002000 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00002001
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002002 // We need to build the initializer AST according to order of construction
2003 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002004 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00002005 if (!ClassDecl)
2006 return true;
2007
Eli Friedman80c30da2009-11-09 19:20:36 +00002008 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002009
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002010 for (unsigned i = 0; i < NumInitializers; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002011 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002012
2013 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00002014 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002015 else
Francois Pichet00eb3f92010-12-04 09:14:42 +00002016 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002017 }
2018
Anders Carlsson711f34a2010-04-21 19:52:01 +00002019 // Keep track of the direct virtual bases.
2020 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2021 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2022 E = ClassDecl->bases_end(); I != E; ++I) {
2023 if (I->isVirtual())
2024 DirectVBases.insert(I);
2025 }
2026
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002027 // Push virtual bases before others.
2028 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2029 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2030
Sean Huntcbb67482011-01-08 20:30:50 +00002031 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002032 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2033 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002034 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00002035 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Sean Huntcbb67482011-01-08 20:30:50 +00002036 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002037 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002038 VBase, IsInheritedVirtualBase,
2039 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002040 HadError = true;
2041 continue;
2042 }
Anders Carlsson84688f22010-04-20 23:11:20 +00002043
John McCallf1860e52010-05-20 23:23:51 +00002044 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002045 }
2046 }
Mike Stump1eb44332009-09-09 15:08:12 +00002047
John McCallf1860e52010-05-20 23:23:51 +00002048 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002049 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2050 E = ClassDecl->bases_end(); Base != E; ++Base) {
2051 // Virtuals are in the virtual base list and already constructed.
2052 if (Base->isVirtual())
2053 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Sean Huntcbb67482011-01-08 20:30:50 +00002055 if (CXXCtorInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00002056 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2057 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002058 } else if (!AnyErrors) {
Sean Huntcbb67482011-01-08 20:30:50 +00002059 CXXCtorInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00002060 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00002061 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00002062 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002063 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002064 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00002065 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00002066
John McCallf1860e52010-05-20 23:23:51 +00002067 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002068 }
2069 }
Mike Stump1eb44332009-09-09 15:08:12 +00002070
John McCallf1860e52010-05-20 23:23:51 +00002071 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002072 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002073 E = ClassDecl->field_end(); Field != E; ++Field) {
2074 if ((*Field)->getType()->isIncompleteArrayType()) {
2075 assert(ClassDecl->hasFlexibleArrayMember() &&
2076 "Incomplete array type is not valid");
2077 continue;
2078 }
John McCallf1860e52010-05-20 23:23:51 +00002079 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00002080 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00002081 }
Mike Stump1eb44332009-09-09 15:08:12 +00002082
John McCallf1860e52010-05-20 23:23:51 +00002083 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002084 if (NumInitializers > 0) {
Sean Huntcbb67482011-01-08 20:30:50 +00002085 Constructor->setNumCtorInitializers(NumInitializers);
2086 CXXCtorInitializer **baseOrMemberInitializers =
2087 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00002088 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Sean Huntcbb67482011-01-08 20:30:50 +00002089 NumInitializers * sizeof(CXXCtorInitializer*));
2090 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00002091
John McCallef027fe2010-03-16 21:39:52 +00002092 // Constructors implicitly reference the base and member
2093 // destructors.
2094 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
2095 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002096 }
Eli Friedman80c30da2009-11-09 19:20:36 +00002097
2098 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00002099}
2100
Eli Friedman6347f422009-07-21 19:28:10 +00002101static void *GetKeyForTopLevelField(FieldDecl *Field) {
2102 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00002103 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00002104 if (RT->getDecl()->isAnonymousStructOrUnion())
2105 return static_cast<void *>(RT->getDecl());
2106 }
2107 return static_cast<void *>(Field);
2108}
2109
Anders Carlssonea356fb2010-04-02 05:42:15 +00002110static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCallf4c73712011-01-19 06:33:43 +00002111 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssoncdc83c72009-09-01 06:22:14 +00002112}
2113
Anders Carlssonea356fb2010-04-02 05:42:15 +00002114static void *GetKeyForMember(ASTContext &Context,
Sean Huntcbb67482011-01-08 20:30:50 +00002115 CXXCtorInitializer *Member) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002116 if (!Member->isAnyMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00002117 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00002118
Eli Friedman6347f422009-07-21 19:28:10 +00002119 // For fields injected into the class via declaration of an anonymous union,
2120 // use its anonymous union class declaration as the unique key.
Francois Pichet00eb3f92010-12-04 09:14:42 +00002121 FieldDecl *Field = Member->getAnyMember();
2122
John McCall3c3ccdb2010-04-10 09:28:51 +00002123 // If the field is a member of an anonymous struct or union, our key
2124 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00002125 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00002126 if (RD->isAnonymousStructOrUnion()) {
2127 while (true) {
2128 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
2129 if (Parent->isAnonymousStructOrUnion())
2130 RD = Parent;
2131 else
2132 break;
2133 }
2134
Anders Carlssonee11b2d2010-03-30 16:19:37 +00002135 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00002136 }
Mike Stump1eb44332009-09-09 15:08:12 +00002137
Anders Carlsson8f1a2402010-03-30 15:39:27 +00002138 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00002139}
2140
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002141static void
2142DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00002143 const CXXConstructorDecl *Constructor,
Sean Huntcbb67482011-01-08 20:30:50 +00002144 CXXCtorInitializer **Inits,
John McCalld6ca8da2010-04-10 07:37:23 +00002145 unsigned NumInits) {
2146 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002147 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002148
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002149 // Don't check initializers order unless the warning is enabled at the
2150 // location of at least one initializer.
2151 bool ShouldCheckOrder = false;
2152 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00002153 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00002154 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
2155 Init->getSourceLocation())
2156 != Diagnostic::Ignored) {
2157 ShouldCheckOrder = true;
2158 break;
2159 }
2160 }
2161 if (!ShouldCheckOrder)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002162 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002163
John McCalld6ca8da2010-04-10 07:37:23 +00002164 // Build the list of bases and members in the order that they'll
2165 // actually be initialized. The explicit initializers should be in
2166 // this same order but may be missing things.
2167 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00002168
Anders Carlsson071d6102010-04-02 03:38:04 +00002169 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2170
John McCalld6ca8da2010-04-10 07:37:23 +00002171 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002172 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002173 ClassDecl->vbases_begin(),
2174 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00002175 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00002176
John McCalld6ca8da2010-04-10 07:37:23 +00002177 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002178 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002179 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002180 if (Base->isVirtual())
2181 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002182 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002183 }
Mike Stump1eb44332009-09-09 15:08:12 +00002184
John McCalld6ca8da2010-04-10 07:37:23 +00002185 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002186 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2187 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002188 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002189
John McCalld6ca8da2010-04-10 07:37:23 +00002190 unsigned NumIdealInits = IdealInitKeys.size();
2191 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002192
Sean Huntcbb67482011-01-08 20:30:50 +00002193 CXXCtorInitializer *PrevInit = 0;
John McCalld6ca8da2010-04-10 07:37:23 +00002194 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Sean Huntcbb67482011-01-08 20:30:50 +00002195 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichet00eb3f92010-12-04 09:14:42 +00002196 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCalld6ca8da2010-04-10 07:37:23 +00002197
2198 // Scan forward to try to find this initializer in the idealized
2199 // initializers list.
2200 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2201 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002202 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002203
2204 // If we didn't find this initializer, it must be because we
2205 // scanned past it on a previous iteration. That can only
2206 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002207 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002208 Sema::SemaDiagnosticBuilder D =
2209 SemaRef.Diag(PrevInit->getSourceLocation(),
2210 diag::warn_initializer_out_of_order);
2211
Francois Pichet00eb3f92010-12-04 09:14:42 +00002212 if (PrevInit->isAnyMemberInitializer())
2213 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00002214 else
2215 D << 1 << PrevInit->getBaseClassInfo()->getType();
2216
Francois Pichet00eb3f92010-12-04 09:14:42 +00002217 if (Init->isAnyMemberInitializer())
2218 D << 0 << Init->getAnyMember()->getDeclName();
John McCalld6ca8da2010-04-10 07:37:23 +00002219 else
2220 D << 1 << Init->getBaseClassInfo()->getType();
2221
2222 // Move back to the initializer's location in the ideal list.
2223 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2224 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002225 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002226
2227 assert(IdealIndex != NumIdealInits &&
2228 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002229 }
John McCalld6ca8da2010-04-10 07:37:23 +00002230
2231 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002232 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002233}
2234
John McCall3c3ccdb2010-04-10 09:28:51 +00002235namespace {
2236bool CheckRedundantInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00002237 CXXCtorInitializer *Init,
2238 CXXCtorInitializer *&PrevInit) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002239 if (!PrevInit) {
2240 PrevInit = Init;
2241 return false;
2242 }
2243
2244 if (FieldDecl *Field = Init->getMember())
2245 S.Diag(Init->getSourceLocation(),
2246 diag::err_multiple_mem_initialization)
2247 << Field->getDeclName()
2248 << Init->getSourceRange();
2249 else {
John McCallf4c73712011-01-19 06:33:43 +00002250 const Type *BaseClass = Init->getBaseClass();
John McCall3c3ccdb2010-04-10 09:28:51 +00002251 assert(BaseClass && "neither field nor base");
2252 S.Diag(Init->getSourceLocation(),
2253 diag::err_multiple_base_initialization)
2254 << QualType(BaseClass, 0)
2255 << Init->getSourceRange();
2256 }
2257 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2258 << 0 << PrevInit->getSourceRange();
2259
2260 return true;
2261}
2262
Sean Huntcbb67482011-01-08 20:30:50 +00002263typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall3c3ccdb2010-04-10 09:28:51 +00002264typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2265
2266bool CheckRedundantUnionInit(Sema &S,
Sean Huntcbb67482011-01-08 20:30:50 +00002267 CXXCtorInitializer *Init,
John McCall3c3ccdb2010-04-10 09:28:51 +00002268 RedundantUnionMap &Unions) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00002269 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00002270 RecordDecl *Parent = Field->getParent();
2271 if (!Parent->isAnonymousStructOrUnion())
2272 return false;
2273
2274 NamedDecl *Child = Field;
2275 do {
2276 if (Parent->isUnion()) {
2277 UnionEntry &En = Unions[Parent];
2278 if (En.first && En.first != Child) {
2279 S.Diag(Init->getSourceLocation(),
2280 diag::err_multiple_mem_union_initialization)
2281 << Field->getDeclName()
2282 << Init->getSourceRange();
2283 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2284 << 0 << En.second->getSourceRange();
2285 return true;
2286 } else if (!En.first) {
2287 En.first = Child;
2288 En.second = Init;
2289 }
2290 }
2291
2292 Child = Parent;
2293 Parent = cast<RecordDecl>(Parent->getDeclContext());
2294 } while (Parent->isAnonymousStructOrUnion());
2295
2296 return false;
2297}
2298}
2299
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002300/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCalld226f652010-08-21 09:40:31 +00002301void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002302 SourceLocation ColonLoc,
2303 MemInitTy **meminits, unsigned NumMemInits,
2304 bool AnyErrors) {
2305 if (!ConstructorDecl)
2306 return;
2307
2308 AdjustDeclIfTemplate(ConstructorDecl);
2309
2310 CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002311 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002312
2313 if (!Constructor) {
2314 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2315 return;
2316 }
2317
Sean Huntcbb67482011-01-08 20:30:50 +00002318 CXXCtorInitializer **MemInits =
2319 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002320
2321 // Mapping for the duplicate initializers check.
2322 // For member initializers, this is keyed with a FieldDecl*.
2323 // For base initializers, this is keyed with a Type*.
Sean Huntcbb67482011-01-08 20:30:50 +00002324 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002325
2326 // Mapping for the inconsistent anonymous-union initializers check.
2327 RedundantUnionMap MemberUnions;
2328
Anders Carlssonea356fb2010-04-02 05:42:15 +00002329 bool HadError = false;
2330 for (unsigned i = 0; i < NumMemInits; i++) {
Sean Huntcbb67482011-01-08 20:30:50 +00002331 CXXCtorInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002332
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002333 // Set the source order index.
2334 Init->setSourceOrder(i);
2335
Francois Pichet00eb3f92010-12-04 09:14:42 +00002336 if (Init->isAnyMemberInitializer()) {
2337 FieldDecl *Field = Init->getAnyMember();
John McCall3c3ccdb2010-04-10 09:28:51 +00002338 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2339 CheckRedundantUnionInit(*this, Init, MemberUnions))
2340 HadError = true;
2341 } else {
2342 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2343 if (CheckRedundantInit(*this, Init, Members[Key]))
2344 HadError = true;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002345 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002346 }
2347
Anders Carlssonea356fb2010-04-02 05:42:15 +00002348 if (HadError)
2349 return;
2350
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002351 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002352
Sean Huntcbb67482011-01-08 20:30:50 +00002353 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002354}
2355
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002356void
John McCallef027fe2010-03-16 21:39:52 +00002357Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2358 CXXRecordDecl *ClassDecl) {
2359 // Ignore dependent contexts.
2360 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002361 return;
John McCall58e6f342010-03-16 05:22:47 +00002362
2363 // FIXME: all the access-control diagnostics are positioned on the
2364 // field/base declaration. That's probably good; that said, the
2365 // user might reasonably want to know why the destructor is being
2366 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002367
Anders Carlsson9f853df2009-11-17 04:44:12 +00002368 // Non-static data members.
2369 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2370 E = ClassDecl->field_end(); I != E; ++I) {
2371 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002372 if (Field->isInvalidDecl())
2373 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002374 QualType FieldType = Context.getBaseElementType(Field->getType());
2375
2376 const RecordType* RT = FieldType->getAs<RecordType>();
2377 if (!RT)
2378 continue;
2379
2380 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2381 if (FieldClassDecl->hasTrivialDestructor())
2382 continue;
2383
Douglas Gregordb89f282010-07-01 22:47:18 +00002384 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002385 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002386 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002387 << Field->getDeclName()
2388 << FieldType);
2389
John McCallef027fe2010-03-16 21:39:52 +00002390 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002391 }
2392
John McCall58e6f342010-03-16 05:22:47 +00002393 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2394
Anders Carlsson9f853df2009-11-17 04:44:12 +00002395 // Bases.
2396 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2397 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002398 // Bases are always records in a well-formed non-dependent class.
2399 const RecordType *RT = Base->getType()->getAs<RecordType>();
2400
2401 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002402 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002403 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002404
2405 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002406 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002407 if (BaseClassDecl->hasTrivialDestructor())
2408 continue;
John McCall58e6f342010-03-16 05:22:47 +00002409
Douglas Gregordb89f282010-07-01 22:47:18 +00002410 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002411
2412 // FIXME: caret should be on the start of the class name
2413 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002414 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002415 << Base->getType()
2416 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002417
John McCallef027fe2010-03-16 21:39:52 +00002418 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002419 }
2420
2421 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002422 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2423 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002424
2425 // Bases are always records in a well-formed non-dependent class.
2426 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2427
2428 // Ignore direct virtual bases.
2429 if (DirectVirtualBases.count(RT))
2430 continue;
2431
Anders Carlsson9f853df2009-11-17 04:44:12 +00002432 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002433 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002434 if (BaseClassDecl->hasTrivialDestructor())
2435 continue;
John McCall58e6f342010-03-16 05:22:47 +00002436
Douglas Gregordb89f282010-07-01 22:47:18 +00002437 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002438 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002439 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002440 << VBase->getType());
2441
John McCallef027fe2010-03-16 21:39:52 +00002442 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002443 }
2444}
2445
John McCalld226f652010-08-21 09:40:31 +00002446void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002447 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002448 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002449
Mike Stump1eb44332009-09-09 15:08:12 +00002450 if (CXXConstructorDecl *Constructor
John McCalld226f652010-08-21 09:40:31 +00002451 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Sean Huntcbb67482011-01-08 20:30:50 +00002452 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002453}
2454
Mike Stump1eb44332009-09-09 15:08:12 +00002455bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00002456 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002457 if (SelID == -1)
John McCall94c3b562010-08-18 09:41:07 +00002458 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002459 else
John McCall94c3b562010-08-18 09:41:07 +00002460 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump1eb44332009-09-09 15:08:12 +00002461}
2462
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002463bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall94c3b562010-08-18 09:41:07 +00002464 const PartialDiagnostic &PD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002465 if (!getLangOptions().CPlusPlus)
2466 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002467
Anders Carlsson11f21a02009-03-23 19:10:31 +00002468 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall94c3b562010-08-18 09:41:07 +00002469 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump1eb44332009-09-09 15:08:12 +00002470
Ted Kremenek6217b802009-07-29 21:53:49 +00002471 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002472 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002473 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002474 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002475
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002476 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall94c3b562010-08-18 09:41:07 +00002477 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002478 }
Mike Stump1eb44332009-09-09 15:08:12 +00002479
Ted Kremenek6217b802009-07-29 21:53:49 +00002480 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002481 if (!RT)
2482 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002483
John McCall86ff3082010-02-04 22:26:26 +00002484 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002485
John McCall94c3b562010-08-18 09:41:07 +00002486 // We can't answer whether something is abstract until it has a
2487 // definition. If it's currently being defined, we'll walk back
2488 // over all the declarations when we have a full definition.
2489 const CXXRecordDecl *Def = RD->getDefinition();
2490 if (!Def || Def->isBeingDefined())
John McCall86ff3082010-02-04 22:26:26 +00002491 return false;
2492
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002493 if (!RD->isAbstract())
2494 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002495
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002496 Diag(Loc, PD) << RD->getDeclName();
John McCall94c3b562010-08-18 09:41:07 +00002497 DiagnoseAbstractType(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002498
John McCall94c3b562010-08-18 09:41:07 +00002499 return true;
2500}
2501
2502void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2503 // Check if we've already emitted the list of pure virtual functions
2504 // for this class.
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002505 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall94c3b562010-08-18 09:41:07 +00002506 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002507
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002508 CXXFinalOverriderMap FinalOverriders;
2509 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002510
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002511 // Keep a set of seen pure methods so we won't diagnose the same method
2512 // more than once.
2513 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2514
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002515 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2516 MEnd = FinalOverriders.end();
2517 M != MEnd;
2518 ++M) {
2519 for (OverridingMethods::iterator SO = M->second.begin(),
2520 SOEnd = M->second.end();
2521 SO != SOEnd; ++SO) {
2522 // C++ [class.abstract]p4:
2523 // A class is abstract if it contains or inherits at least one
2524 // pure virtual function for which the final overrider is pure
2525 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002526
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002527 //
2528 if (SO->second.size() != 1)
2529 continue;
2530
2531 if (!SO->second.front().Method->isPure())
2532 continue;
2533
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002534 if (!SeenPureMethods.insert(SO->second.front().Method))
2535 continue;
2536
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002537 Diag(SO->second.front().Method->getLocation(),
2538 diag::note_pure_virtual_function)
Chandler Carruth45f11b72011-02-18 23:59:51 +00002539 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002540 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002541 }
2542
2543 if (!PureVirtualClassDiagSet)
2544 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2545 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002546}
2547
Anders Carlsson8211eff2009-03-24 01:19:16 +00002548namespace {
John McCall94c3b562010-08-18 09:41:07 +00002549struct AbstractUsageInfo {
2550 Sema &S;
2551 CXXRecordDecl *Record;
2552 CanQualType AbstractType;
2553 bool Invalid;
Mike Stump1eb44332009-09-09 15:08:12 +00002554
John McCall94c3b562010-08-18 09:41:07 +00002555 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2556 : S(S), Record(Record),
2557 AbstractType(S.Context.getCanonicalType(
2558 S.Context.getTypeDeclType(Record))),
2559 Invalid(false) {}
Anders Carlsson8211eff2009-03-24 01:19:16 +00002560
John McCall94c3b562010-08-18 09:41:07 +00002561 void DiagnoseAbstractType() {
2562 if (Invalid) return;
2563 S.DiagnoseAbstractType(Record);
2564 Invalid = true;
2565 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00002566
John McCall94c3b562010-08-18 09:41:07 +00002567 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2568};
2569
2570struct CheckAbstractUsage {
2571 AbstractUsageInfo &Info;
2572 const NamedDecl *Ctx;
2573
2574 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2575 : Info(Info), Ctx(Ctx) {}
2576
2577 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2578 switch (TL.getTypeLocClass()) {
2579#define ABSTRACT_TYPELOC(CLASS, PARENT)
2580#define TYPELOC(CLASS, PARENT) \
2581 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2582#include "clang/AST/TypeLocNodes.def"
Anders Carlsson8211eff2009-03-24 01:19:16 +00002583 }
John McCall94c3b562010-08-18 09:41:07 +00002584 }
Mike Stump1eb44332009-09-09 15:08:12 +00002585
John McCall94c3b562010-08-18 09:41:07 +00002586 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2587 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2588 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2589 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2590 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002591 }
John McCall94c3b562010-08-18 09:41:07 +00002592 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002593
John McCall94c3b562010-08-18 09:41:07 +00002594 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2595 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2596 }
Mike Stump1eb44332009-09-09 15:08:12 +00002597
John McCall94c3b562010-08-18 09:41:07 +00002598 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2599 // Visit the type parameters from a permissive context.
2600 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2601 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2602 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2603 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2604 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2605 // TODO: other template argument types?
Anders Carlsson8211eff2009-03-24 01:19:16 +00002606 }
John McCall94c3b562010-08-18 09:41:07 +00002607 }
Mike Stump1eb44332009-09-09 15:08:12 +00002608
John McCall94c3b562010-08-18 09:41:07 +00002609 // Visit pointee types from a permissive context.
2610#define CheckPolymorphic(Type) \
2611 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2612 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2613 }
2614 CheckPolymorphic(PointerTypeLoc)
2615 CheckPolymorphic(ReferenceTypeLoc)
2616 CheckPolymorphic(MemberPointerTypeLoc)
2617 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump1eb44332009-09-09 15:08:12 +00002618
John McCall94c3b562010-08-18 09:41:07 +00002619 /// Handle all the types we haven't given a more specific
2620 /// implementation for above.
2621 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2622 // Every other kind of type that we haven't called out already
2623 // that has an inner type is either (1) sugar or (2) contains that
2624 // inner type in some way as a subobject.
2625 if (TypeLoc Next = TL.getNextTypeLoc())
2626 return Visit(Next, Sel);
2627
2628 // If there's no inner type and we're in a permissive context,
2629 // don't diagnose.
2630 if (Sel == Sema::AbstractNone) return;
2631
2632 // Check whether the type matches the abstract type.
2633 QualType T = TL.getType();
2634 if (T->isArrayType()) {
2635 Sel = Sema::AbstractArrayType;
2636 T = Info.S.Context.getBaseElementType(T);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002637 }
John McCall94c3b562010-08-18 09:41:07 +00002638 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2639 if (CT != Info.AbstractType) return;
2640
2641 // It matched; do some magic.
2642 if (Sel == Sema::AbstractArrayType) {
2643 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2644 << T << TL.getSourceRange();
2645 } else {
2646 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2647 << Sel << T << TL.getSourceRange();
2648 }
2649 Info.DiagnoseAbstractType();
2650 }
2651};
2652
2653void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2654 Sema::AbstractDiagSelID Sel) {
2655 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2656}
2657
2658}
2659
2660/// Check for invalid uses of an abstract type in a method declaration.
2661static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2662 CXXMethodDecl *MD) {
2663 // No need to do the check on definitions, which require that
2664 // the return/param types be complete.
2665 if (MD->isThisDeclarationADefinition())
2666 return;
2667
2668 // For safety's sake, just ignore it if we don't have type source
2669 // information. This should never happen for non-implicit methods,
2670 // but...
2671 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2672 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2673}
2674
2675/// Check for invalid uses of an abstract type within a class definition.
2676static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2677 CXXRecordDecl *RD) {
2678 for (CXXRecordDecl::decl_iterator
2679 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2680 Decl *D = *I;
2681 if (D->isImplicit()) continue;
2682
2683 // Methods and method templates.
2684 if (isa<CXXMethodDecl>(D)) {
2685 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2686 } else if (isa<FunctionTemplateDecl>(D)) {
2687 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2688 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2689
2690 // Fields and static variables.
2691 } else if (isa<FieldDecl>(D)) {
2692 FieldDecl *FD = cast<FieldDecl>(D);
2693 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2694 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2695 } else if (isa<VarDecl>(D)) {
2696 VarDecl *VD = cast<VarDecl>(D);
2697 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2698 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2699
2700 // Nested classes and class templates.
2701 } else if (isa<CXXRecordDecl>(D)) {
2702 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2703 } else if (isa<ClassTemplateDecl>(D)) {
2704 CheckAbstractClassUsage(Info,
2705 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2706 }
2707 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002708}
2709
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002710/// \brief Perform semantic checks on a class definition that has been
2711/// completing, introducing implicitly-declared members, checking for
2712/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002713void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +00002714 if (!Record)
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002715 return;
2716
John McCall94c3b562010-08-18 09:41:07 +00002717 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2718 AbstractUsageInfo Info(*this, Record);
2719 CheckAbstractClassUsage(Info, Record);
2720 }
Douglas Gregor325e5932010-04-15 00:00:53 +00002721
2722 // If this is not an aggregate type and has no user-declared constructor,
2723 // complain about any non-static data members of reference or const scalar
2724 // type, since they will never get initializers.
2725 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2726 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2727 bool Complained = false;
2728 for (RecordDecl::field_iterator F = Record->field_begin(),
2729 FEnd = Record->field_end();
2730 F != FEnd; ++F) {
2731 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002732 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002733 if (!Complained) {
2734 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2735 << Record->getTagKind() << Record;
2736 Complained = true;
2737 }
2738
2739 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2740 << F->getType()->isReferenceType()
2741 << F->getDeclName();
2742 }
2743 }
2744 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002745
Anders Carlssona5c6c2a2011-01-25 18:08:22 +00002746 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002747 DynamicClasses.push_back(Record);
Douglas Gregora6e937c2010-10-15 13:21:21 +00002748
2749 if (Record->getIdentifier()) {
2750 // C++ [class.mem]p13:
2751 // If T is the name of a class, then each of the following shall have a
2752 // name different from T:
2753 // - every member of every anonymous union that is a member of class T.
2754 //
2755 // C++ [class.mem]p14:
2756 // In addition, if class T has a user-declared constructor (12.1), every
2757 // non-static data member of class T shall have a name different from T.
2758 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet87c2e122010-11-21 06:08:52 +00002759 R.first != R.second; ++R.first) {
2760 NamedDecl *D = *R.first;
2761 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
2762 isa<IndirectFieldDecl>(D)) {
2763 Diag(D->getLocation(), diag::err_member_name_of_class)
2764 << D->getDeclName();
Douglas Gregora6e937c2010-10-15 13:21:21 +00002765 break;
2766 }
Francois Pichet87c2e122010-11-21 06:08:52 +00002767 }
Douglas Gregora6e937c2010-10-15 13:21:21 +00002768 }
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002769
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00002770 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregorf4b793c2011-02-19 19:14:36 +00002771 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002772 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis9641fc82011-01-31 17:10:25 +00002773 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidisdef4e2a2011-01-31 07:05:00 +00002774 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
2775 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
2776 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002777
2778 // See if a method overloads virtual methods in a base
2779 /// class without overriding any.
2780 if (!Record->isDependentType()) {
2781 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
2782 MEnd = Record->method_end();
2783 M != MEnd; ++M) {
2784 DiagnoseHiddenVirtualMethods(Record, *M);
2785 }
2786 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00002787
2788 // Declare inherited constructors. We do this eagerly here because:
2789 // - The standard requires an eager diagnostic for conflicting inherited
2790 // constructors from different classes.
2791 // - The lazy declaration of the other implicit constructors is so as to not
2792 // waste space and performance on classes that are not meant to be
2793 // instantiated (e.g. meta-functions). This doesn't apply to classes that
2794 // have inherited constructors.
2795 DeclareInheritedConstructors(Record);
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002796}
2797
2798/// \brief Data used with FindHiddenVirtualMethod
2799struct FindHiddenVirtualMethodData {
2800 Sema *S;
2801 CXXMethodDecl *Method;
2802 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
2803 llvm::SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
2804};
2805
2806/// \brief Member lookup function that determines whether a given C++
2807/// method overloads virtual methods in a base class without overriding any,
2808/// to be used with CXXRecordDecl::lookupInBases().
2809static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
2810 CXXBasePath &Path,
2811 void *UserData) {
2812 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
2813
2814 FindHiddenVirtualMethodData &Data
2815 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
2816
2817 DeclarationName Name = Data.Method->getDeclName();
2818 assert(Name.getNameKind() == DeclarationName::Identifier);
2819
2820 bool foundSameNameMethod = false;
2821 llvm::SmallVector<CXXMethodDecl *, 8> overloadedMethods;
2822 for (Path.Decls = BaseRecord->lookup(Name);
2823 Path.Decls.first != Path.Decls.second;
2824 ++Path.Decls.first) {
2825 NamedDecl *D = *Path.Decls.first;
2826 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002827 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002828 foundSameNameMethod = true;
2829 // Interested only in hidden virtual methods.
2830 if (!MD->isVirtual())
2831 continue;
2832 // If the method we are checking overrides a method from its base
2833 // don't warn about the other overloaded methods.
2834 if (!Data.S->IsOverload(Data.Method, MD, false))
2835 return true;
2836 // Collect the overload only if its hidden.
2837 if (!Data.OverridenAndUsingBaseMethods.count(MD))
2838 overloadedMethods.push_back(MD);
2839 }
2840 }
2841
2842 if (foundSameNameMethod)
2843 Data.OverloadedMethods.append(overloadedMethods.begin(),
2844 overloadedMethods.end());
2845 return foundSameNameMethod;
2846}
2847
2848/// \brief See if a method overloads virtual methods in a base class without
2849/// overriding any.
2850void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
2851 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
2852 MD->getLocation()) == Diagnostic::Ignored)
2853 return;
2854 if (MD->getDeclName().getNameKind() != DeclarationName::Identifier)
2855 return;
2856
2857 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
2858 /*bool RecordPaths=*/false,
2859 /*bool DetectVirtual=*/false);
2860 FindHiddenVirtualMethodData Data;
2861 Data.Method = MD;
2862 Data.S = this;
2863
2864 // Keep the base methods that were overriden or introduced in the subclass
2865 // by 'using' in a set. A base method not in this set is hidden.
2866 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
2867 res.first != res.second; ++res.first) {
2868 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
2869 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
2870 E = MD->end_overridden_methods();
2871 I != E; ++I)
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002872 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002873 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
2874 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis74b47f92011-02-10 18:13:41 +00002875 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00002876 }
2877
2878 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
2879 !Data.OverloadedMethods.empty()) {
2880 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
2881 << MD << (Data.OverloadedMethods.size() > 1);
2882
2883 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
2884 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
2885 Diag(overloadedMD->getLocation(),
2886 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
2887 }
2888 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002889}
2890
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002891void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCalld226f652010-08-21 09:40:31 +00002892 Decl *TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002893 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002894 SourceLocation RBrac,
2895 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002896 if (!TagDecl)
2897 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002898
Douglas Gregor42af25f2009-05-11 19:58:34 +00002899 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002900
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002901 ActOnFields(S, RLoc, TagDecl,
John McCalld226f652010-08-21 09:40:31 +00002902 // strict aliasing violation!
2903 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002904 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00002905
Douglas Gregor23c94db2010-07-02 17:43:08 +00002906 CheckCompletedCXXClass(
John McCalld226f652010-08-21 09:40:31 +00002907 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002908}
2909
Douglas Gregord92ec472010-07-01 05:10:53 +00002910namespace {
2911 /// \brief Helper class that collects exception specifications for
2912 /// implicitly-declared special member functions.
2913 class ImplicitExceptionSpecification {
2914 ASTContext &Context;
2915 bool AllowsAllExceptions;
2916 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2917 llvm::SmallVector<QualType, 4> Exceptions;
2918
2919 public:
2920 explicit ImplicitExceptionSpecification(ASTContext &Context)
2921 : Context(Context), AllowsAllExceptions(false) { }
2922
2923 /// \brief Whether the special member function should have any
2924 /// exception specification at all.
2925 bool hasExceptionSpecification() const {
2926 return !AllowsAllExceptions;
2927 }
2928
2929 /// \brief Whether the special member function should have a
2930 /// throw(...) exception specification (a Microsoft extension).
2931 bool hasAnyExceptionSpecification() const {
2932 return false;
2933 }
2934
2935 /// \brief The number of exceptions in the exception specification.
2936 unsigned size() const { return Exceptions.size(); }
2937
2938 /// \brief The set of exceptions in the exception specification.
2939 const QualType *data() const { return Exceptions.data(); }
2940
2941 /// \brief Note that
2942 void CalledDecl(CXXMethodDecl *Method) {
2943 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor4681ca82010-07-01 15:29:53 +00002944 if (AllowsAllExceptions || !Method)
Douglas Gregord92ec472010-07-01 05:10:53 +00002945 return;
2946
2947 const FunctionProtoType *Proto
2948 = Method->getType()->getAs<FunctionProtoType>();
2949
2950 // If this function can throw any exceptions, make a note of that.
2951 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2952 AllowsAllExceptions = true;
2953 ExceptionsSeen.clear();
2954 Exceptions.clear();
2955 return;
2956 }
2957
2958 // Record the exceptions in this function's exception specification.
2959 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2960 EEnd = Proto->exception_end();
2961 E != EEnd; ++E)
2962 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2963 Exceptions.push_back(*E);
2964 }
2965 };
2966}
2967
2968
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002969/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2970/// special functions, such as the default constructor, copy
2971/// constructor, or destructor, to the given C++ class (C++
2972/// [special]p1). This routine can only be executed just before the
2973/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002974void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00002975 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00002976 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002977
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00002978 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00002979 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002980
Douglas Gregora376d102010-07-02 21:50:04 +00002981 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2982 ++ASTContext::NumImplicitCopyAssignmentOperators;
2983
2984 // If we have a dynamic class, then the copy assignment operator may be
2985 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2986 // it shows up in the right place in the vtable and that we diagnose
2987 // problems with the implicit exception specification.
2988 if (ClassDecl->isDynamicClass())
2989 DeclareImplicitCopyAssignment(ClassDecl);
2990 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002991
Douglas Gregor4923aa22010-07-02 20:37:36 +00002992 if (!ClassDecl->hasUserDeclaredDestructor()) {
2993 ++ASTContext::NumImplicitDestructors;
2994
2995 // If we have a dynamic class, then the destructor may be virtual, so we
2996 // have to declare the destructor immediately. This ensures that, e.g., it
2997 // shows up in the right place in the vtable and that we diagnose problems
2998 // with the implicit exception specification.
2999 if (ClassDecl->isDynamicClass())
3000 DeclareImplicitDestructor(ClassDecl);
3001 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00003002}
3003
John McCalld226f652010-08-21 09:40:31 +00003004void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00003005 if (!D)
3006 return;
3007
3008 TemplateParameterList *Params = 0;
3009 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
3010 Params = Template->getTemplateParameters();
3011 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
3012 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
3013 Params = PartialSpec->getTemplateParameters();
3014 else
Douglas Gregor6569d682009-05-27 23:11:45 +00003015 return;
3016
Douglas Gregor6569d682009-05-27 23:11:45 +00003017 for (TemplateParameterList::iterator Param = Params->begin(),
3018 ParamEnd = Params->end();
3019 Param != ParamEnd; ++Param) {
3020 NamedDecl *Named = cast<NamedDecl>(*Param);
3021 if (Named->getDeclName()) {
John McCalld226f652010-08-21 09:40:31 +00003022 S->AddDecl(Named);
Douglas Gregor6569d682009-05-27 23:11:45 +00003023 IdResolver.AddDecl(Named);
3024 }
3025 }
3026}
3027
John McCalld226f652010-08-21 09:40:31 +00003028void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00003029 if (!RecordD) return;
3030 AdjustDeclIfTemplate(RecordD);
John McCalld226f652010-08-21 09:40:31 +00003031 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall7a1dc562009-12-19 10:49:29 +00003032 PushDeclContext(S, Record);
3033}
3034
John McCalld226f652010-08-21 09:40:31 +00003035void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall7a1dc562009-12-19 10:49:29 +00003036 if (!RecordD) return;
3037 PopDeclContext();
3038}
3039
Douglas Gregor72b505b2008-12-16 21:30:33 +00003040/// ActOnStartDelayedCXXMethodDeclaration - We have completed
3041/// parsing a top-level (non-nested) C++ class, and we are now
3042/// parsing those parts of the given Method declaration that could
3043/// not be parsed earlier (C++ [class.mem]p2), such as default
3044/// arguments. This action should enter the scope of the given
3045/// Method declaration as if we had just parsed the qualified method
3046/// name. However, it should not bring the parameters into scope;
3047/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCalld226f652010-08-21 09:40:31 +00003048void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003049}
3050
3051/// ActOnDelayedCXXMethodParameter - We've already started a delayed
3052/// C++ method declaration. We're (re-)introducing the given
3053/// function parameter into scope for use in parsing later parts of
3054/// the method declaration. For example, we could see an
3055/// ActOnParamDefaultArgument event for this parameter.
John McCalld226f652010-08-21 09:40:31 +00003056void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00003057 if (!ParamD)
3058 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003059
John McCalld226f652010-08-21 09:40:31 +00003060 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor61366e92008-12-24 00:01:03 +00003061
3062 // If this parameter has an unparsed default argument, clear it out
3063 // to make way for the parsed default argument.
3064 if (Param->hasUnparsedDefaultArg())
3065 Param->setDefaultArg(0);
3066
John McCalld226f652010-08-21 09:40:31 +00003067 S->AddDecl(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003068 if (Param->getDeclName())
3069 IdResolver.AddDecl(Param);
3070}
3071
3072/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
3073/// processing the delayed method declaration for Method. The method
3074/// declaration is now considered finished. There may be a separate
3075/// ActOnStartOfFunctionDef action later (not necessarily
3076/// immediately!) for this method, if it was also defined inside the
3077/// class body.
John McCalld226f652010-08-21 09:40:31 +00003078void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00003079 if (!MethodD)
3080 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003081
Douglas Gregorefd5bda2009-08-24 11:57:43 +00003082 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00003083
John McCalld226f652010-08-21 09:40:31 +00003084 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003085
3086 // Now that we have our default arguments, check the constructor
3087 // again. It could produce additional diagnostics or affect whether
3088 // the class has implicitly-declared destructors, among other
3089 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00003090 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
3091 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003092
3093 // Check the default arguments, which we may have added.
3094 if (!Method->isInvalidDecl())
3095 CheckCXXDefaultArguments(Method);
3096}
3097
Douglas Gregor42a552f2008-11-05 20:51:48 +00003098/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00003099/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00003100/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00003101/// emit diagnostics and set the invalid bit to true. In any case, the type
3102/// will be updated to reflect a well-formed type for the constructor and
3103/// returned.
3104QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00003105 StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003106 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003107
3108 // C++ [class.ctor]p3:
3109 // A constructor shall not be virtual (10.3) or static (9.4). A
3110 // constructor can be invoked for a const, volatile or const
3111 // volatile object. A constructor shall not be declared const,
3112 // volatile, or const volatile (9.3.2).
3113 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00003114 if (!D.isInvalidType())
3115 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3116 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
3117 << SourceRange(D.getIdentifierLoc());
3118 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003119 }
John McCalld931b082010-08-26 03:08:43 +00003120 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00003121 if (!D.isInvalidType())
3122 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
3123 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3124 << SourceRange(D.getIdentifierLoc());
3125 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00003126 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00003127 }
Mike Stump1eb44332009-09-09 15:08:12 +00003128
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003129 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00003130 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00003131 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003132 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3133 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003134 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003135 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3136 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003137 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003138 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
3139 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalle23cf432010-12-14 08:05:40 +00003140 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003141 }
Mike Stump1eb44332009-09-09 15:08:12 +00003142
Douglas Gregorc938c162011-01-26 05:01:58 +00003143 // C++0x [class.ctor]p4:
3144 // A constructor shall not be declared with a ref-qualifier.
3145 if (FTI.hasRefQualifier()) {
3146 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
3147 << FTI.RefQualifierIsLValueRef
3148 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3149 D.setInvalidType();
3150 }
3151
Douglas Gregor42a552f2008-11-05 20:51:48 +00003152 // Rebuild the function type "R" without any type qualifiers (in
3153 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00003154 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00003155 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00003156 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
3157 return R;
3158
3159 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3160 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00003161 EPI.RefQualifier = RQ_None;
3162
Chris Lattner65401802009-04-25 08:28:21 +00003163 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalle23cf432010-12-14 08:05:40 +00003164 Proto->getNumArgs(), EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00003165}
3166
Douglas Gregor72b505b2008-12-16 21:30:33 +00003167/// CheckConstructor - Checks a fully-formed constructor for
3168/// well-formedness, issuing any diagnostics required. Returns true if
3169/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00003170void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00003171 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00003172 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
3173 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00003174 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00003175
3176 // C++ [class.copy]p3:
3177 // A declaration of a constructor for a class X is ill-formed if
3178 // its first parameter is of type (optionally cv-qualified) X and
3179 // either there are no other parameters or else all other
3180 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00003181 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00003182 ((Constructor->getNumParams() == 1) ||
3183 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00003184 Constructor->getParamDecl(1)->hasDefaultArg())) &&
3185 Constructor->getTemplateSpecializationKind()
3186 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00003187 QualType ParamType = Constructor->getParamDecl(0)->getType();
3188 QualType ClassTy = Context.getTagDeclType(ClassDecl);
3189 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00003190 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00003191 const char *ConstRef
3192 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
3193 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00003194 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00003195 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00003196
3197 // FIXME: Rather that making the constructor invalid, we should endeavor
3198 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00003199 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00003200 }
3201 }
Douglas Gregor72b505b2008-12-16 21:30:33 +00003202}
3203
John McCall15442822010-08-04 01:04:25 +00003204/// CheckDestructor - Checks a fully-formed destructor definition for
3205/// well-formedness, issuing any diagnostics required. Returns true
3206/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003207bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00003208 CXXRecordDecl *RD = Destructor->getParent();
3209
3210 if (Destructor->isVirtual()) {
3211 SourceLocation Loc;
3212
3213 if (!Destructor->isImplicit())
3214 Loc = Destructor->getLocation();
3215 else
3216 Loc = RD->getLocation();
3217
3218 // If we have a virtual destructor, look up the deallocation function
3219 FunctionDecl *OperatorDelete = 0;
3220 DeclarationName Name =
3221 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003222 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00003223 return true;
John McCall5efd91a2010-07-03 18:33:00 +00003224
3225 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00003226
3227 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00003228 }
Anders Carlsson37909802009-11-30 21:24:50 +00003229
3230 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00003231}
3232
Mike Stump1eb44332009-09-09 15:08:12 +00003233static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003234FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3235 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3236 FTI.ArgInfo[0].Param &&
John McCalld226f652010-08-21 09:40:31 +00003237 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003238}
3239
Douglas Gregor42a552f2008-11-05 20:51:48 +00003240/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3241/// the well-formednes of the destructor declarator @p D with type @p
3242/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00003243/// emit diagnostics and set the declarator to invalid. Even if this happens,
3244/// will be updated to reflect a well-formed type for the destructor and
3245/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00003246QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCalld931b082010-08-26 03:08:43 +00003247 StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003248 // C++ [class.dtor]p1:
3249 // [...] A typedef-name that names a class is a class-name
3250 // (7.1.3); however, a typedef-name that names a class shall not
3251 // be used as the identifier in the declarator for a destructor
3252 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003253 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregord92ec472010-07-01 05:10:53 +00003254 if (isa<TypedefType>(DeclaratorType))
Chris Lattner65401802009-04-25 08:28:21 +00003255 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00003256 << DeclaratorType;
Douglas Gregor42a552f2008-11-05 20:51:48 +00003257
3258 // C++ [class.dtor]p2:
3259 // A destructor is used to destroy objects of its class type. A
3260 // destructor takes no parameters, and no return type can be
3261 // specified for it (not even void). The address of a destructor
3262 // shall not be taken. A destructor shall not be static. A
3263 // destructor can be invoked for a const, volatile or const
3264 // volatile object. A destructor shall not be declared const,
3265 // volatile or const volatile (9.3.2).
John McCalld931b082010-08-26 03:08:43 +00003266 if (SC == SC_Static) {
Chris Lattner65401802009-04-25 08:28:21 +00003267 if (!D.isInvalidType())
3268 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3269 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00003270 << SourceRange(D.getIdentifierLoc())
3271 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3272
John McCalld931b082010-08-26 03:08:43 +00003273 SC = SC_None;
Douglas Gregor42a552f2008-11-05 20:51:48 +00003274 }
Chris Lattner65401802009-04-25 08:28:21 +00003275 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003276 // Destructors don't have return types, but the parser will
3277 // happily parse something like:
3278 //
3279 // class X {
3280 // float ~X();
3281 // };
3282 //
3283 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003284 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3285 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3286 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003287 }
Mike Stump1eb44332009-09-09 15:08:12 +00003288
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003289 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner65401802009-04-25 08:28:21 +00003290 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00003291 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003292 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3293 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003294 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003295 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3296 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003297 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003298 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3299 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00003300 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003301 }
3302
Douglas Gregorc938c162011-01-26 05:01:58 +00003303 // C++0x [class.dtor]p2:
3304 // A destructor shall not be declared with a ref-qualifier.
3305 if (FTI.hasRefQualifier()) {
3306 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
3307 << FTI.RefQualifierIsLValueRef
3308 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
3309 D.setInvalidType();
3310 }
3311
Douglas Gregor42a552f2008-11-05 20:51:48 +00003312 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003313 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003314 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3315
3316 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00003317 FTI.freeArgs();
3318 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003319 }
3320
Mike Stump1eb44332009-09-09 15:08:12 +00003321 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00003322 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003323 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00003324 D.setInvalidType();
3325 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00003326
3327 // Rebuild the function type "R" without any type qualifiers or
3328 // parameters (in case any of the errors above fired) and with
3329 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00003330 // types.
John McCalle23cf432010-12-14 08:05:40 +00003331 if (!D.isInvalidType())
3332 return R;
3333
Douglas Gregord92ec472010-07-01 05:10:53 +00003334 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalle23cf432010-12-14 08:05:40 +00003335 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3336 EPI.Variadic = false;
3337 EPI.TypeQuals = 0;
Douglas Gregorc938c162011-01-26 05:01:58 +00003338 EPI.RefQualifier = RQ_None;
John McCalle23cf432010-12-14 08:05:40 +00003339 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor42a552f2008-11-05 20:51:48 +00003340}
3341
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003342/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3343/// well-formednes of the conversion function declarator @p D with
3344/// type @p R. If there are any errors in the declarator, this routine
3345/// will emit diagnostics and return true. Otherwise, it will return
3346/// false. Either way, the type @p R will be updated to reflect a
3347/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003348void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCalld931b082010-08-26 03:08:43 +00003349 StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003350 // C++ [class.conv.fct]p1:
3351 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003352 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003353 // parameter returning conversion-type-id."
John McCalld931b082010-08-26 03:08:43 +00003354 if (SC == SC_Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003355 if (!D.isInvalidType())
3356 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3357 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3358 << SourceRange(D.getIdentifierLoc());
3359 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00003360 SC = SC_None;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003361 }
John McCalla3f81372010-04-13 00:04:31 +00003362
3363 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3364
Chris Lattner6e475012009-04-25 08:35:12 +00003365 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003366 // Conversion functions don't have return types, but the parser will
3367 // happily parse something like:
3368 //
3369 // class X {
3370 // float operator bool();
3371 // };
3372 //
3373 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003374 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3375 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3376 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003377 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003378 }
3379
John McCalla3f81372010-04-13 00:04:31 +00003380 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3381
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003382 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003383 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003384 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3385
3386 // Delete the parameters.
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003387 D.getFunctionTypeInfo().freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003388 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003389 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003390 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003391 D.setInvalidType();
3392 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003393
John McCalla3f81372010-04-13 00:04:31 +00003394 // Diagnose "&operator bool()" and other such nonsense. This
3395 // is actually a gcc extension which we don't support.
3396 if (Proto->getResultType() != ConvType) {
3397 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3398 << Proto->getResultType();
3399 D.setInvalidType();
3400 ConvType = Proto->getResultType();
3401 }
3402
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003403 // C++ [class.conv.fct]p4:
3404 // The conversion-type-id shall not represent a function type nor
3405 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003406 if (ConvType->isArrayType()) {
3407 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3408 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003409 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003410 } else if (ConvType->isFunctionType()) {
3411 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3412 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003413 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003414 }
3415
3416 // Rebuild the function type "R" without any parameters (in case any
3417 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003418 // return type.
John McCalle23cf432010-12-14 08:05:40 +00003419 if (D.isInvalidType())
3420 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003421
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003422 // C++0x explicit conversion operators.
3423 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003424 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003425 diag::warn_explicit_conversion_functions)
3426 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003427}
3428
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003429/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3430/// the declaration of the given C++ conversion function. This routine
3431/// is responsible for recording the conversion function in the C++
3432/// class, if possible.
John McCalld226f652010-08-21 09:40:31 +00003433Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003434 assert(Conversion && "Expected to receive a conversion function declaration");
3435
Douglas Gregor9d350972008-12-12 08:25:50 +00003436 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003437
3438 // Make sure we aren't redeclaring the conversion function.
3439 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003440
3441 // C++ [class.conv.fct]p1:
3442 // [...] A conversion function is never used to convert a
3443 // (possibly cv-qualified) object to the (possibly cv-qualified)
3444 // same object type (or a reference to it), to a (possibly
3445 // cv-qualified) base class of that type (or a reference to it),
3446 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003447 // FIXME: Suppress this warning if the conversion function ends up being a
3448 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003449 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003450 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003451 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003452 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00003453 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3454 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregor10341702010-09-13 16:44:26 +00003455 /* Suppress diagnostics for instantiations. */;
Douglas Gregorda0fd9a2010-09-12 07:22:28 +00003456 else if (ConvType->isRecordType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003457 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3458 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003459 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003460 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003461 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003462 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003463 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003464 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003465 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003466 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003467 }
3468
Douglas Gregore80622f2010-09-29 04:25:11 +00003469 if (FunctionTemplateDecl *ConversionTemplate
3470 = Conversion->getDescribedFunctionTemplate())
3471 return ConversionTemplate;
3472
John McCalld226f652010-08-21 09:40:31 +00003473 return Conversion;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003474}
3475
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003476//===----------------------------------------------------------------------===//
3477// Namespace Handling
3478//===----------------------------------------------------------------------===//
3479
John McCallea318642010-08-26 09:15:37 +00003480
3481
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003482/// ActOnStartNamespaceDef - This is called at the start of a namespace
3483/// definition.
John McCalld226f652010-08-21 09:40:31 +00003484Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redld078e642010-08-27 23:12:46 +00003485 SourceLocation InlineLoc,
John McCallea318642010-08-26 09:15:37 +00003486 SourceLocation IdentLoc,
3487 IdentifierInfo *II,
3488 SourceLocation LBrace,
3489 AttributeList *AttrList) {
Douglas Gregor21e09b62010-08-19 20:55:47 +00003490 // anonymous namespace starts at its left brace
3491 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3492 (II ? IdentLoc : LBrace) , II);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003493 Namespc->setLBracLoc(LBrace);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003494 Namespc->setInline(InlineLoc.isValid());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003495
3496 Scope *DeclRegionScope = NamespcScope->getParent();
3497
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003498 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3499
John McCall90f14502010-12-10 02:59:44 +00003500 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
3501 PushNamespaceVisibilityAttr(Attr);
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003502
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003503 if (II) {
3504 // C++ [namespace.def]p2:
Douglas Gregorfe7574b2010-10-22 15:24:46 +00003505 // The identifier in an original-namespace-definition shall not
3506 // have been previously defined in the declarative region in
3507 // which the original-namespace-definition appears. The
3508 // identifier in an original-namespace-definition is the name of
3509 // the namespace. Subsequently in that declarative region, it is
3510 // treated as an original-namespace-name.
3511 //
3512 // Since namespace names are unique in their scope, and we don't
3513 // look through using directives, just
3514 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3515 NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
Mike Stump1eb44332009-09-09 15:08:12 +00003516
Douglas Gregor44b43212008-12-11 16:49:14 +00003517 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3518 // This is an extended namespace definition.
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003519 if (Namespc->isInline() != OrigNS->isInline()) {
3520 // inline-ness must match
3521 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3522 << Namespc->isInline();
3523 Diag(OrigNS->getLocation(), diag::note_previous_definition);
3524 Namespc->setInvalidDecl();
3525 // Recover by ignoring the new namespace's inline status.
3526 Namespc->setInline(OrigNS->isInline());
3527 }
3528
Douglas Gregor44b43212008-12-11 16:49:14 +00003529 // Attach this namespace decl to the chain of extended namespace
3530 // definitions.
3531 OrigNS->setNextNamespace(Namespc);
3532 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003533
Mike Stump1eb44332009-09-09 15:08:12 +00003534 // Remove the previous declaration from the scope.
John McCalld226f652010-08-21 09:40:31 +00003535 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003536 IdResolver.RemoveDecl(OrigNS);
John McCalld226f652010-08-21 09:40:31 +00003537 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003538 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003539 } else if (PrevDecl) {
3540 // This is an invalid name redefinition.
3541 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3542 << Namespc->getDeclName();
3543 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3544 Namespc->setInvalidDecl();
3545 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003546 } else if (II->isStr("std") &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00003547 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003548 // This is the first "real" definition of the namespace "std", so update
3549 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003550 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003551 // We had already defined a dummy namespace "std". Link this new
3552 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003553 StdNS->setNextNamespace(Namespc);
3554 StdNS->setLocation(IdentLoc);
3555 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003556 }
3557
3558 // Make our StdNamespace cache point at the first real definition of the
3559 // "std" namespace.
3560 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003561 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003562
3563 PushOnScopeChains(Namespc, DeclRegionScope);
3564 } else {
John McCall9aeed322009-10-01 00:25:31 +00003565 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003566 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003567
3568 // Link the anonymous namespace into its parent.
3569 NamespaceDecl *PrevDecl;
Sebastian Redl7a126a42010-08-31 00:36:30 +00003570 DeclContext *Parent = CurContext->getRedeclContext();
John McCall5fdd7642009-12-16 02:06:49 +00003571 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3572 PrevDecl = TU->getAnonymousNamespace();
3573 TU->setAnonymousNamespace(Namespc);
3574 } else {
3575 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3576 PrevDecl = ND->getAnonymousNamespace();
3577 ND->setAnonymousNamespace(Namespc);
3578 }
3579
3580 // Link the anonymous namespace with its previous declaration.
3581 if (PrevDecl) {
3582 assert(PrevDecl->isAnonymousNamespace());
3583 assert(!PrevDecl->getNextNamespace());
3584 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3585 PrevDecl->setNextNamespace(Namespc);
Sebastian Redl4e4d5702010-08-31 00:36:36 +00003586
3587 if (Namespc->isInline() != PrevDecl->isInline()) {
3588 // inline-ness must match
3589 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3590 << Namespc->isInline();
3591 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3592 Namespc->setInvalidDecl();
3593 // Recover by ignoring the new namespace's inline status.
3594 Namespc->setInline(PrevDecl->isInline());
3595 }
John McCall5fdd7642009-12-16 02:06:49 +00003596 }
John McCall9aeed322009-10-01 00:25:31 +00003597
Douglas Gregora4181472010-03-24 00:46:35 +00003598 CurContext->addDecl(Namespc);
3599
John McCall9aeed322009-10-01 00:25:31 +00003600 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3601 // behaves as if it were replaced by
3602 // namespace unique { /* empty body */ }
3603 // using namespace unique;
3604 // namespace unique { namespace-body }
3605 // where all occurrences of 'unique' in a translation unit are
3606 // replaced by the same identifier and this identifier differs
3607 // from all other identifiers in the entire program.
3608
3609 // We just create the namespace with an empty name and then add an
3610 // implicit using declaration, just like the standard suggests.
3611 //
3612 // CodeGen enforces the "universally unique" aspect by giving all
3613 // declarations semantically contained within an anonymous
3614 // namespace internal linkage.
3615
John McCall5fdd7642009-12-16 02:06:49 +00003616 if (!PrevDecl) {
3617 UsingDirectiveDecl* UD
3618 = UsingDirectiveDecl::Create(Context, CurContext,
3619 /* 'using' */ LBrace,
3620 /* 'namespace' */ SourceLocation(),
3621 /* qualifier */ SourceRange(),
3622 /* NNS */ NULL,
3623 /* identifier */ SourceLocation(),
3624 Namespc,
3625 /* Ancestor */ CurContext);
3626 UD->setImplicit();
3627 CurContext->addDecl(UD);
3628 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003629 }
3630
3631 // Although we could have an invalid decl (i.e. the namespace name is a
3632 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003633 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3634 // for the namespace has the declarations that showed up in that particular
3635 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003636 PushDeclContext(NamespcScope, Namespc);
John McCalld226f652010-08-21 09:40:31 +00003637 return Namespc;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003638}
3639
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003640/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3641/// is a namespace alias, returns the namespace it points to.
3642static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3643 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3644 return AD->getNamespace();
3645 return dyn_cast_or_null<NamespaceDecl>(D);
3646}
3647
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003648/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3649/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCalld226f652010-08-21 09:40:31 +00003650void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003651 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3652 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3653 Namespc->setRBracLoc(RBrace);
3654 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003655 if (Namespc->hasAttr<VisibilityAttr>())
3656 PopPragmaVisibility();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003657}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003658
John McCall384aff82010-08-25 07:42:41 +00003659CXXRecordDecl *Sema::getStdBadAlloc() const {
3660 return cast_or_null<CXXRecordDecl>(
3661 StdBadAlloc.get(Context.getExternalSource()));
3662}
3663
3664NamespaceDecl *Sema::getStdNamespace() const {
3665 return cast_or_null<NamespaceDecl>(
3666 StdNamespace.get(Context.getExternalSource()));
3667}
3668
Douglas Gregor66992202010-06-29 17:53:46 +00003669/// \brief Retrieve the special "std" namespace, which may require us to
3670/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003671NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00003672 if (!StdNamespace) {
3673 // The "std" namespace has not yet been defined, so build one implicitly.
3674 StdNamespace = NamespaceDecl::Create(Context,
3675 Context.getTranslationUnitDecl(),
3676 SourceLocation(),
3677 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003678 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00003679 }
3680
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003681 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00003682}
3683
John McCalld226f652010-08-21 09:40:31 +00003684Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003685 SourceLocation UsingLoc,
3686 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003687 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003688 SourceLocation IdentLoc,
3689 IdentifierInfo *NamespcName,
3690 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003691 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3692 assert(NamespcName && "Invalid NamespcName.");
3693 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall78b81052010-11-10 02:40:36 +00003694
3695 // This can only happen along a recovery path.
3696 while (S->getFlags() & Scope::TemplateParamScope)
3697 S = S->getParent();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003698 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003699
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003700 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00003701 NestedNameSpecifier *Qualifier = 0;
3702 if (SS.isSet())
3703 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3704
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003705 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003706 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3707 LookupParsedName(R, S, &SS);
3708 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00003709 return 0;
John McCalla24dc2e2009-11-17 02:14:36 +00003710
Douglas Gregor66992202010-06-29 17:53:46 +00003711 if (R.empty()) {
3712 // Allow "using namespace std;" or "using namespace ::std;" even if
3713 // "std" hasn't been defined yet, for GCC compatibility.
3714 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3715 NamespcName->isStr("std")) {
3716 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003717 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00003718 R.resolveKind();
3719 }
3720 // Otherwise, attempt typo correction.
3721 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3722 CTC_NoKeywords, 0)) {
3723 if (R.getAsSingle<NamespaceDecl>() ||
3724 R.getAsSingle<NamespaceAliasDecl>()) {
3725 if (DeclContext *DC = computeDeclContext(SS, false))
3726 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3727 << NamespcName << DC << Corrected << SS.getRange()
3728 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3729 else
3730 Diag(IdentLoc, diag::err_using_directive_suggest)
3731 << NamespcName << Corrected
3732 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3733 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3734 << Corrected;
3735
3736 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003737 } else {
3738 R.clear();
3739 R.setLookupName(NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00003740 }
3741 }
3742 }
3743
John McCallf36e02d2009-10-09 21:13:30 +00003744 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003745 NamedDecl *Named = R.getFoundDecl();
3746 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3747 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003748 // C++ [namespace.udir]p1:
3749 // A using-directive specifies that the names in the nominated
3750 // namespace can be used in the scope in which the
3751 // using-directive appears after the using-directive. During
3752 // unqualified name lookup (3.4.1), the names appear as if they
3753 // were declared in the nearest enclosing namespace which
3754 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003755 // namespace. [Note: in this context, "contains" means "contains
3756 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003757
3758 // Find enclosing context containing both using-directive and
3759 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003760 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003761 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3762 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3763 CommonAncestor = CommonAncestor->getParent();
3764
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003765 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00003766 SS.getRange(),
3767 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003768 IdentLoc, Named, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003769 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003770 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003771 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003772 }
3773
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003774 // FIXME: We ignore attributes for now.
John McCalld226f652010-08-21 09:40:31 +00003775 return UDir;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003776}
3777
3778void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3779 // If scope has associated entity, then using directive is at namespace
3780 // or translation unit scope. We add UsingDirectiveDecls, into
3781 // it's lookup structure.
3782 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003783 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003784 else
3785 // Otherwise it is block-sope. using-directives will affect lookup
3786 // only to the end of scope.
John McCalld226f652010-08-21 09:40:31 +00003787 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003788}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003789
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003790
John McCalld226f652010-08-21 09:40:31 +00003791Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall78b81052010-11-10 02:40:36 +00003792 AccessSpecifier AS,
3793 bool HasUsingKeyword,
3794 SourceLocation UsingLoc,
3795 CXXScopeSpec &SS,
3796 UnqualifiedId &Name,
3797 AttributeList *AttrList,
3798 bool IsTypeName,
3799 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003800 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003801
Douglas Gregor12c118a2009-11-04 16:30:06 +00003802 switch (Name.getKind()) {
3803 case UnqualifiedId::IK_Identifier:
3804 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003805 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003806 case UnqualifiedId::IK_ConversionFunctionId:
3807 break;
3808
3809 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003810 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003811 // C++0x inherited constructors.
3812 if (getLangOptions().CPlusPlus0x) break;
3813
Douglas Gregor12c118a2009-11-04 16:30:06 +00003814 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3815 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00003816 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00003817
3818 case UnqualifiedId::IK_DestructorName:
3819 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3820 << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00003821 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00003822
3823 case UnqualifiedId::IK_TemplateId:
3824 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3825 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCalld226f652010-08-21 09:40:31 +00003826 return 0;
Douglas Gregor12c118a2009-11-04 16:30:06 +00003827 }
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00003828
3829 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3830 DeclarationName TargetName = TargetNameInfo.getName();
John McCall604e7f12009-12-08 07:46:18 +00003831 if (!TargetName)
John McCalld226f652010-08-21 09:40:31 +00003832 return 0;
John McCall604e7f12009-12-08 07:46:18 +00003833
John McCall60fa3cf2009-12-11 02:10:03 +00003834 // Warn about using declarations.
3835 // TODO: store that the declaration was written without 'using' and
3836 // talk about access decls instead of using decls in the
3837 // diagnostics.
3838 if (!HasUsingKeyword) {
3839 UsingLoc = Name.getSourceRange().getBegin();
3840
3841 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00003842 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00003843 }
3844
Douglas Gregor56c04582010-12-16 00:46:58 +00003845 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
3846 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
3847 return 0;
3848
John McCall9488ea12009-11-17 05:59:44 +00003849 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00003850 TargetNameInfo, AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003851 /* IsInstantiation */ false,
3852 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00003853 if (UD)
3854 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00003855
John McCalld226f652010-08-21 09:40:31 +00003856 return UD;
Anders Carlssonc72160b2009-08-28 05:40:36 +00003857}
3858
Douglas Gregor09acc982010-07-07 23:08:52 +00003859/// \brief Determine whether a using declaration considers the given
3860/// declarations as "equivalent", e.g., if they are redeclarations of
3861/// the same entity or are both typedefs of the same type.
3862static bool
3863IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3864 bool &SuppressRedeclaration) {
3865 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3866 SuppressRedeclaration = false;
3867 return true;
3868 }
3869
3870 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3871 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3872 SuppressRedeclaration = true;
3873 return Context.hasSameType(TD1->getUnderlyingType(),
3874 TD2->getUnderlyingType());
3875 }
3876
3877 return false;
3878}
3879
3880
John McCall9f54ad42009-12-10 09:41:52 +00003881/// Determines whether to create a using shadow decl for a particular
3882/// decl, given the set of decls existing prior to this using lookup.
3883bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3884 const LookupResult &Previous) {
3885 // Diagnose finding a decl which is not from a base class of the
3886 // current class. We do this now because there are cases where this
3887 // function will silently decide not to build a shadow decl, which
3888 // will pre-empt further diagnostics.
3889 //
3890 // We don't need to do this in C++0x because we do the check once on
3891 // the qualifier.
3892 //
3893 // FIXME: diagnose the following if we care enough:
3894 // struct A { int foo; };
3895 // struct B : A { using A::foo; };
3896 // template <class T> struct C : A {};
3897 // template <class T> struct D : C<T> { using B::foo; } // <---
3898 // This is invalid (during instantiation) in C++03 because B::foo
3899 // resolves to the using decl in B, which is not a base class of D<T>.
3900 // We can't diagnose it immediately because C<T> is an unknown
3901 // specialization. The UsingShadowDecl in D<T> then points directly
3902 // to A::foo, which will look well-formed when we instantiate.
3903 // The right solution is to not collapse the shadow-decl chain.
3904 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3905 DeclContext *OrigDC = Orig->getDeclContext();
3906
3907 // Handle enums and anonymous structs.
3908 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3909 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3910 while (OrigRec->isAnonymousStructOrUnion())
3911 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3912
3913 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3914 if (OrigDC == CurContext) {
3915 Diag(Using->getLocation(),
3916 diag::err_using_decl_nested_name_specifier_is_current_class)
3917 << Using->getNestedNameRange();
3918 Diag(Orig->getLocation(), diag::note_using_decl_target);
3919 return true;
3920 }
3921
3922 Diag(Using->getNestedNameRange().getBegin(),
3923 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3924 << Using->getTargetNestedNameDecl()
3925 << cast<CXXRecordDecl>(CurContext)
3926 << Using->getNestedNameRange();
3927 Diag(Orig->getLocation(), diag::note_using_decl_target);
3928 return true;
3929 }
3930 }
3931
3932 if (Previous.empty()) return false;
3933
3934 NamedDecl *Target = Orig;
3935 if (isa<UsingShadowDecl>(Target))
3936 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3937
John McCalld7533ec2009-12-11 02:33:26 +00003938 // If the target happens to be one of the previous declarations, we
3939 // don't have a conflict.
3940 //
3941 // FIXME: but we might be increasing its access, in which case we
3942 // should redeclare it.
3943 NamedDecl *NonTag = 0, *Tag = 0;
3944 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3945 I != E; ++I) {
3946 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00003947 bool Result;
3948 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3949 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00003950
3951 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3952 }
3953
John McCall9f54ad42009-12-10 09:41:52 +00003954 if (Target->isFunctionOrFunctionTemplate()) {
3955 FunctionDecl *FD;
3956 if (isa<FunctionTemplateDecl>(Target))
3957 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3958 else
3959 FD = cast<FunctionDecl>(Target);
3960
3961 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00003962 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00003963 case Ovl_Overload:
3964 return false;
3965
3966 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00003967 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003968 break;
3969
3970 // We found a decl with the exact signature.
3971 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00003972 // If we're in a record, we want to hide the target, so we
3973 // return true (without a diagnostic) to tell the caller not to
3974 // build a shadow decl.
3975 if (CurContext->isRecord())
3976 return true;
3977
3978 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00003979 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003980 break;
3981 }
3982
3983 Diag(Target->getLocation(), diag::note_using_decl_target);
3984 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3985 return true;
3986 }
3987
3988 // Target is not a function.
3989
John McCall9f54ad42009-12-10 09:41:52 +00003990 if (isa<TagDecl>(Target)) {
3991 // No conflict between a tag and a non-tag.
3992 if (!Tag) return false;
3993
John McCall41ce66f2009-12-10 19:51:03 +00003994 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003995 Diag(Target->getLocation(), diag::note_using_decl_target);
3996 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3997 return true;
3998 }
3999
4000 // No conflict between a tag and a non-tag.
4001 if (!NonTag) return false;
4002
John McCall41ce66f2009-12-10 19:51:03 +00004003 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00004004 Diag(Target->getLocation(), diag::note_using_decl_target);
4005 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
4006 return true;
4007}
4008
John McCall9488ea12009-11-17 05:59:44 +00004009/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00004010UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00004011 UsingDecl *UD,
4012 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00004013
4014 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00004015 NamedDecl *Target = Orig;
4016 if (isa<UsingShadowDecl>(Target)) {
4017 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
4018 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00004019 }
4020
4021 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00004022 = UsingShadowDecl::Create(Context, CurContext,
4023 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00004024 UD->addShadowDecl(Shadow);
Douglas Gregore80622f2010-09-29 04:25:11 +00004025
4026 Shadow->setAccess(UD->getAccess());
4027 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
4028 Shadow->setInvalidDecl();
4029
John McCall9488ea12009-11-17 05:59:44 +00004030 if (S)
John McCall604e7f12009-12-08 07:46:18 +00004031 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00004032 else
John McCall604e7f12009-12-08 07:46:18 +00004033 CurContext->addDecl(Shadow);
John McCall9488ea12009-11-17 05:59:44 +00004034
John McCall604e7f12009-12-08 07:46:18 +00004035
John McCall9f54ad42009-12-10 09:41:52 +00004036 return Shadow;
4037}
John McCall604e7f12009-12-08 07:46:18 +00004038
John McCall9f54ad42009-12-10 09:41:52 +00004039/// Hides a using shadow declaration. This is required by the current
4040/// using-decl implementation when a resolvable using declaration in a
4041/// class is followed by a declaration which would hide or override
4042/// one or more of the using decl's targets; for example:
4043///
4044/// struct Base { void foo(int); };
4045/// struct Derived : Base {
4046/// using Base::foo;
4047/// void foo(int);
4048/// };
4049///
4050/// The governing language is C++03 [namespace.udecl]p12:
4051///
4052/// When a using-declaration brings names from a base class into a
4053/// derived class scope, member functions in the derived class
4054/// override and/or hide member functions with the same name and
4055/// parameter types in a base class (rather than conflicting).
4056///
4057/// There are two ways to implement this:
4058/// (1) optimistically create shadow decls when they're not hidden
4059/// by existing declarations, or
4060/// (2) don't create any shadow decls (or at least don't make them
4061/// visible) until we've fully parsed/instantiated the class.
4062/// The problem with (1) is that we might have to retroactively remove
4063/// a shadow decl, which requires several O(n) operations because the
4064/// decl structures are (very reasonably) not designed for removal.
4065/// (2) avoids this but is very fiddly and phase-dependent.
4066void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00004067 if (Shadow->getDeclName().getNameKind() ==
4068 DeclarationName::CXXConversionFunctionName)
4069 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
4070
John McCall9f54ad42009-12-10 09:41:52 +00004071 // Remove it from the DeclContext...
4072 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00004073
John McCall9f54ad42009-12-10 09:41:52 +00004074 // ...and the scope, if applicable...
4075 if (S) {
John McCalld226f652010-08-21 09:40:31 +00004076 S->RemoveDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00004077 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00004078 }
4079
John McCall9f54ad42009-12-10 09:41:52 +00004080 // ...and the using decl.
4081 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
4082
4083 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00004084 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00004085}
4086
John McCall7ba107a2009-11-18 02:36:19 +00004087/// Builds a using declaration.
4088///
4089/// \param IsInstantiation - Whether this call arises from an
4090/// instantiation of an unresolved using declaration. We treat
4091/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00004092NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
4093 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004094 CXXScopeSpec &SS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004095 const DeclarationNameInfo &NameInfo,
Anders Carlssonc72160b2009-08-28 05:40:36 +00004096 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00004097 bool IsInstantiation,
4098 bool IsTypeName,
4099 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00004100 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004101 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlssonc72160b2009-08-28 05:40:36 +00004102 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00004103
Anders Carlsson550b14b2009-08-28 05:49:21 +00004104 // FIXME: We ignore attributes for now.
Mike Stump1eb44332009-09-09 15:08:12 +00004105
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004106 if (SS.isEmpty()) {
4107 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00004108 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004109 }
Mike Stump1eb44332009-09-09 15:08:12 +00004110
John McCall9f54ad42009-12-10 09:41:52 +00004111 // Do the redeclaration lookup in the current scope.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004112 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall9f54ad42009-12-10 09:41:52 +00004113 ForRedeclaration);
4114 Previous.setHideTags(false);
4115 if (S) {
4116 LookupName(Previous, S);
4117
4118 // It is really dumb that we have to do this.
4119 LookupResult::Filter F = Previous.makeFilter();
4120 while (F.hasNext()) {
4121 NamedDecl *D = F.next();
4122 if (!isDeclInScope(D, CurContext, S))
4123 F.erase();
4124 }
4125 F.done();
4126 } else {
4127 assert(IsInstantiation && "no scope in non-instantiation");
4128 assert(CurContext->isRecord() && "scope not record in instantiation");
4129 LookupQualifiedName(Previous, CurContext);
4130 }
4131
Sebastian Redlf677ea32011-02-05 19:23:19 +00004132 NestedNameSpecifier *NNS = SS.getScopeRep();
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004133
John McCall9f54ad42009-12-10 09:41:52 +00004134 // Check for invalid redeclarations.
4135 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
4136 return 0;
4137
4138 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00004139 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
4140 return 0;
4141
John McCallaf8e6ed2009-11-12 03:15:40 +00004142 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00004143 NamedDecl *D;
John McCallaf8e6ed2009-11-12 03:15:40 +00004144 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00004145 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00004146 // FIXME: not all declaration name kinds are legal here
4147 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
4148 UsingLoc, TypenameLoc,
4149 SS.getRange(), NNS,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004150 IdentLoc, NameInfo.getName());
John McCalled976492009-12-04 22:46:56 +00004151 } else {
4152 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004153 UsingLoc, SS.getRange(),
4154 NNS, NameInfo);
John McCall7ba107a2009-11-18 02:36:19 +00004155 }
John McCalled976492009-12-04 22:46:56 +00004156 } else {
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004157 D = UsingDecl::Create(Context, CurContext,
4158 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCalled976492009-12-04 22:46:56 +00004159 IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00004160 }
John McCalled976492009-12-04 22:46:56 +00004161 D->setAccess(AS);
4162 CurContext->addDecl(D);
4163
4164 if (!LookupContext) return D;
4165 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00004166
John McCall77bb1aa2010-05-01 00:40:08 +00004167 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00004168 UD->setInvalidDecl();
4169 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004170 }
4171
Sebastian Redlf677ea32011-02-05 19:23:19 +00004172 // Constructor inheriting using decls get special treatment.
4173 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
4174 if (CheckInheritedConstructorUsingDecl(UD))
4175 UD->setInvalidDecl();
4176 return UD;
4177 }
4178
4179 // Otherwise, look up the target name.
John McCall604e7f12009-12-08 07:46:18 +00004180
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004181 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00004182
John McCall604e7f12009-12-08 07:46:18 +00004183 // Unlike most lookups, we don't always want to hide tag
4184 // declarations: tag names are visible through the using declaration
4185 // even if hidden by ordinary names, *except* in a dependent context
4186 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00004187 if (!IsInstantiation)
4188 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00004189
John McCalla24dc2e2009-11-17 02:14:36 +00004190 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00004191
John McCallf36e02d2009-10-09 21:13:30 +00004192 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00004193 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00004194 << NameInfo.getName() << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00004195 UD->setInvalidDecl();
4196 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00004197 }
4198
John McCalled976492009-12-04 22:46:56 +00004199 if (R.isAmbiguous()) {
4200 UD->setInvalidDecl();
4201 return UD;
4202 }
Mike Stump1eb44332009-09-09 15:08:12 +00004203
John McCall7ba107a2009-11-18 02:36:19 +00004204 if (IsTypeName) {
4205 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00004206 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00004207 Diag(IdentLoc, diag::err_using_typename_non_type);
4208 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
4209 Diag((*I)->getUnderlyingDecl()->getLocation(),
4210 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00004211 UD->setInvalidDecl();
4212 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00004213 }
4214 } else {
4215 // If we asked for a non-typename and we got a type, error out,
4216 // but only if this is an instantiation of an unresolved using
4217 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00004218 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00004219 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
4220 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00004221 UD->setInvalidDecl();
4222 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00004223 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00004224 }
4225
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004226 // C++0x N2914 [namespace.udecl]p6:
4227 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00004228 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004229 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
4230 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00004231 UD->setInvalidDecl();
4232 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00004233 }
Mike Stump1eb44332009-09-09 15:08:12 +00004234
John McCall9f54ad42009-12-10 09:41:52 +00004235 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
4236 if (!CheckUsingShadowDecl(UD, *I, Previous))
4237 BuildUsingShadowDecl(S, UD, *I);
4238 }
John McCall9488ea12009-11-17 05:59:44 +00004239
4240 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00004241}
4242
Sebastian Redlf677ea32011-02-05 19:23:19 +00004243/// Additional checks for a using declaration referring to a constructor name.
4244bool Sema::CheckInheritedConstructorUsingDecl(UsingDecl *UD) {
4245 if (UD->isTypeName()) {
4246 // FIXME: Cannot specify typename when specifying constructor
4247 return true;
4248 }
4249
4250 const Type *SourceType = UD->getTargetNestedNameDecl()->getAsType();
4251 assert(SourceType &&
4252 "Using decl naming constructor doesn't have type in scope spec.");
4253 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
4254
4255 // Check whether the named type is a direct base class.
4256 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
4257 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
4258 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
4259 BaseIt != BaseE; ++BaseIt) {
4260 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
4261 if (CanonicalSourceType == BaseType)
4262 break;
4263 }
4264
4265 if (BaseIt == BaseE) {
4266 // Did not find SourceType in the bases.
4267 Diag(UD->getUsingLocation(),
4268 diag::err_using_decl_constructor_not_in_direct_base)
4269 << UD->getNameInfo().getSourceRange()
4270 << QualType(SourceType, 0) << TargetClass;
4271 return true;
4272 }
4273
4274 BaseIt->setInheritConstructors();
4275
4276 return false;
4277}
4278
John McCall9f54ad42009-12-10 09:41:52 +00004279/// Checks that the given using declaration is not an invalid
4280/// redeclaration. Note that this is checking only for the using decl
4281/// itself, not for any ill-formedness among the UsingShadowDecls.
4282bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4283 bool isTypeName,
4284 const CXXScopeSpec &SS,
4285 SourceLocation NameLoc,
4286 const LookupResult &Prev) {
4287 // C++03 [namespace.udecl]p8:
4288 // C++0x [namespace.udecl]p10:
4289 // A using-declaration is a declaration and can therefore be used
4290 // repeatedly where (and only where) multiple declarations are
4291 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00004292 //
John McCall8a726212010-11-29 18:01:58 +00004293 // That's in non-member contexts.
4294 if (!CurContext->getRedeclContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00004295 return false;
4296
4297 NestedNameSpecifier *Qual
4298 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4299
4300 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4301 NamedDecl *D = *I;
4302
4303 bool DTypename;
4304 NestedNameSpecifier *DQual;
4305 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4306 DTypename = UD->isTypeName();
4307 DQual = UD->getTargetNestedNameDecl();
4308 } else if (UnresolvedUsingValueDecl *UD
4309 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4310 DTypename = false;
4311 DQual = UD->getTargetNestedNameSpecifier();
4312 } else if (UnresolvedUsingTypenameDecl *UD
4313 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4314 DTypename = true;
4315 DQual = UD->getTargetNestedNameSpecifier();
4316 } else continue;
4317
4318 // using decls differ if one says 'typename' and the other doesn't.
4319 // FIXME: non-dependent using decls?
4320 if (isTypeName != DTypename) continue;
4321
4322 // using decls differ if they name different scopes (but note that
4323 // template instantiation can cause this check to trigger when it
4324 // didn't before instantiation).
4325 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4326 Context.getCanonicalNestedNameSpecifier(DQual))
4327 continue;
4328
4329 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00004330 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00004331 return true;
4332 }
4333
4334 return false;
4335}
4336
John McCall604e7f12009-12-08 07:46:18 +00004337
John McCalled976492009-12-04 22:46:56 +00004338/// Checks that the given nested-name qualifier used in a using decl
4339/// in the current context is appropriately related to the current
4340/// scope. If an error is found, diagnoses it and returns true.
4341bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4342 const CXXScopeSpec &SS,
4343 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00004344 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00004345
John McCall604e7f12009-12-08 07:46:18 +00004346 if (!CurContext->isRecord()) {
4347 // C++03 [namespace.udecl]p3:
4348 // C++0x [namespace.udecl]p8:
4349 // A using-declaration for a class member shall be a member-declaration.
4350
4351 // If we weren't able to compute a valid scope, it must be a
4352 // dependent class scope.
4353 if (!NamedContext || NamedContext->isRecord()) {
4354 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4355 << SS.getRange();
4356 return true;
4357 }
4358
4359 // Otherwise, everything is known to be fine.
4360 return false;
4361 }
4362
4363 // The current scope is a record.
4364
4365 // If the named context is dependent, we can't decide much.
4366 if (!NamedContext) {
4367 // FIXME: in C++0x, we can diagnose if we can prove that the
4368 // nested-name-specifier does not refer to a base class, which is
4369 // still possible in some cases.
4370
4371 // Otherwise we have to conservatively report that things might be
4372 // okay.
4373 return false;
4374 }
4375
4376 if (!NamedContext->isRecord()) {
4377 // Ideally this would point at the last name in the specifier,
4378 // but we don't have that level of source info.
4379 Diag(SS.getRange().getBegin(),
4380 diag::err_using_decl_nested_name_specifier_is_not_class)
4381 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4382 return true;
4383 }
4384
Douglas Gregor6fb07292010-12-21 07:41:49 +00004385 if (!NamedContext->isDependentContext() &&
4386 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
4387 return true;
4388
John McCall604e7f12009-12-08 07:46:18 +00004389 if (getLangOptions().CPlusPlus0x) {
4390 // C++0x [namespace.udecl]p3:
4391 // In a using-declaration used as a member-declaration, the
4392 // nested-name-specifier shall name a base class of the class
4393 // being defined.
4394
4395 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4396 cast<CXXRecordDecl>(NamedContext))) {
4397 if (CurContext == NamedContext) {
4398 Diag(NameLoc,
4399 diag::err_using_decl_nested_name_specifier_is_current_class)
4400 << SS.getRange();
4401 return true;
4402 }
4403
4404 Diag(SS.getRange().getBegin(),
4405 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4406 << (NestedNameSpecifier*) SS.getScopeRep()
4407 << cast<CXXRecordDecl>(CurContext)
4408 << SS.getRange();
4409 return true;
4410 }
4411
4412 return false;
4413 }
4414
4415 // C++03 [namespace.udecl]p4:
4416 // A using-declaration used as a member-declaration shall refer
4417 // to a member of a base class of the class being defined [etc.].
4418
4419 // Salient point: SS doesn't have to name a base class as long as
4420 // lookup only finds members from base classes. Therefore we can
4421 // diagnose here only if we can prove that that can't happen,
4422 // i.e. if the class hierarchies provably don't intersect.
4423
4424 // TODO: it would be nice if "definitely valid" results were cached
4425 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4426 // need to be repeated.
4427
4428 struct UserData {
4429 llvm::DenseSet<const CXXRecordDecl*> Bases;
4430
4431 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4432 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4433 Data->Bases.insert(Base);
4434 return true;
4435 }
4436
4437 bool hasDependentBases(const CXXRecordDecl *Class) {
4438 return !Class->forallBases(collect, this);
4439 }
4440
4441 /// Returns true if the base is dependent or is one of the
4442 /// accumulated base classes.
4443 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4444 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4445 return !Data->Bases.count(Base);
4446 }
4447
4448 bool mightShareBases(const CXXRecordDecl *Class) {
4449 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4450 }
4451 };
4452
4453 UserData Data;
4454
4455 // Returns false if we find a dependent base.
4456 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4457 return false;
4458
4459 // Returns false if the class has a dependent base or if it or one
4460 // of its bases is present in the base set of the current context.
4461 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4462 return false;
4463
4464 Diag(SS.getRange().getBegin(),
4465 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4466 << (NestedNameSpecifier*) SS.getScopeRep()
4467 << cast<CXXRecordDecl>(CurContext)
4468 << SS.getRange();
4469
4470 return true;
John McCalled976492009-12-04 22:46:56 +00004471}
4472
John McCalld226f652010-08-21 09:40:31 +00004473Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004474 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004475 SourceLocation AliasLoc,
4476 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004477 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004478 SourceLocation IdentLoc,
4479 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004480
Anders Carlsson81c85c42009-03-28 23:53:49 +00004481 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004482 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4483 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004484
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004485 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004486 NamedDecl *PrevDecl
4487 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4488 ForRedeclaration);
4489 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4490 PrevDecl = 0;
4491
4492 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004493 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004494 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004495 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004496 // FIXME: At some point, we'll want to create the (redundant)
4497 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004498 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004499 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCalld226f652010-08-21 09:40:31 +00004500 return 0;
Anders Carlsson81c85c42009-03-28 23:53:49 +00004501 }
Mike Stump1eb44332009-09-09 15:08:12 +00004502
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004503 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4504 diag::err_redefinition_different_kind;
4505 Diag(AliasLoc, DiagID) << Alias;
4506 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCalld226f652010-08-21 09:40:31 +00004507 return 0;
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004508 }
4509
John McCalla24dc2e2009-11-17 02:14:36 +00004510 if (R.isAmbiguous())
John McCalld226f652010-08-21 09:40:31 +00004511 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00004512
John McCallf36e02d2009-10-09 21:13:30 +00004513 if (R.empty()) {
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004514 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4515 CTC_NoKeywords, 0)) {
4516 if (R.getAsSingle<NamespaceDecl>() ||
4517 R.getAsSingle<NamespaceAliasDecl>()) {
4518 if (DeclContext *DC = computeDeclContext(SS, false))
4519 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4520 << Ident << DC << Corrected << SS.getRange()
4521 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4522 else
4523 Diag(IdentLoc, diag::err_using_directive_suggest)
4524 << Ident << Corrected
4525 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4526
4527 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4528 << Corrected;
4529
4530 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00004531 } else {
4532 R.clear();
4533 R.setLookupName(Ident);
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004534 }
4535 }
4536
4537 if (R.empty()) {
4538 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCalld226f652010-08-21 09:40:31 +00004539 return 0;
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004540 }
Anders Carlsson5721c682009-03-28 06:42:02 +00004541 }
Mike Stump1eb44332009-09-09 15:08:12 +00004542
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004543 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004544 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4545 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00004546 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00004547 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004548
John McCall3dbd3d52010-02-16 06:53:13 +00004549 PushOnScopeChains(AliasDecl, S);
John McCalld226f652010-08-21 09:40:31 +00004550 return AliasDecl;
Anders Carlssondbb00942009-03-28 05:27:17 +00004551}
4552
Douglas Gregor39957dc2010-05-01 15:04:51 +00004553namespace {
4554 /// \brief Scoped object used to handle the state changes required in Sema
4555 /// to implicitly define the body of a C++ member function;
4556 class ImplicitlyDefinedFunctionScope {
4557 Sema &S;
John McCalleee1d542011-02-14 07:13:47 +00004558 Sema::ContextRAII SavedContext;
Douglas Gregor39957dc2010-05-01 15:04:51 +00004559
4560 public:
4561 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCalleee1d542011-02-14 07:13:47 +00004562 : S(S), SavedContext(S, Method)
Douglas Gregor39957dc2010-05-01 15:04:51 +00004563 {
Douglas Gregor39957dc2010-05-01 15:04:51 +00004564 S.PushFunctionScope();
4565 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4566 }
4567
4568 ~ImplicitlyDefinedFunctionScope() {
4569 S.PopExpressionEvaluationContext();
4570 S.PopFunctionOrBlockScope();
Douglas Gregor39957dc2010-05-01 15:04:51 +00004571 }
4572 };
4573}
4574
Sebastian Redl751025d2010-09-13 22:02:47 +00004575static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4576 CXXRecordDecl *D) {
4577 ASTContext &Context = Self.Context;
4578 QualType ClassType = Context.getTypeDeclType(D);
4579 DeclarationName ConstructorName
4580 = Context.DeclarationNames.getCXXConstructorName(
4581 Context.getCanonicalType(ClassType.getUnqualifiedType()));
4582
4583 DeclContext::lookup_const_iterator Con, ConEnd;
4584 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4585 Con != ConEnd; ++Con) {
4586 // FIXME: In C++0x, a constructor template can be a default constructor.
4587 if (isa<FunctionTemplateDecl>(*Con))
4588 continue;
4589
4590 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4591 if (Constructor->isDefaultConstructor())
4592 return Constructor;
4593 }
4594 return 0;
4595}
4596
Douglas Gregor23c94db2010-07-02 17:43:08 +00004597CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4598 CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004599 // C++ [class.ctor]p5:
4600 // A default constructor for a class X is a constructor of class X
4601 // that can be called without an argument. If there is no
4602 // user-declared constructor for class X, a default constructor is
4603 // implicitly declared. An implicitly-declared default constructor
4604 // is an inline public member of its class.
Douglas Gregor18274032010-07-03 00:47:00 +00004605 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4606 "Should not build implicit default constructor!");
4607
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004608 // C++ [except.spec]p14:
4609 // An implicitly declared special member function (Clause 12) shall have an
4610 // exception-specification. [...]
4611 ImplicitExceptionSpecification ExceptSpec(Context);
4612
4613 // Direct base-class destructors.
4614 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4615 BEnd = ClassDecl->bases_end();
4616 B != BEnd; ++B) {
4617 if (B->isVirtual()) // Handled below.
4618 continue;
4619
Douglas Gregor18274032010-07-03 00:47:00 +00004620 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4621 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4622 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4623 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
Sebastian Redl751025d2010-09-13 22:02:47 +00004624 else if (CXXConstructorDecl *Constructor
4625 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004626 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004627 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004628 }
4629
4630 // Virtual base-class destructors.
4631 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4632 BEnd = ClassDecl->vbases_end();
4633 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00004634 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4635 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4636 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4637 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4638 else if (CXXConstructorDecl *Constructor
Sebastian Redl751025d2010-09-13 22:02:47 +00004639 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004640 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004641 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004642 }
4643
4644 // Field destructors.
4645 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4646 FEnd = ClassDecl->field_end();
4647 F != FEnd; ++F) {
4648 if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00004649 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4650 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4651 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4652 ExceptSpec.CalledDecl(
4653 DeclareImplicitDefaultConstructor(FieldClassDecl));
4654 else if (CXXConstructorDecl *Constructor
Sebastian Redl751025d2010-09-13 22:02:47 +00004655 = getDefaultConstructorUnsafe(*this, FieldClassDecl))
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004656 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004657 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004658 }
John McCalle23cf432010-12-14 08:05:40 +00004659
4660 FunctionProtoType::ExtProtoInfo EPI;
4661 EPI.HasExceptionSpec = ExceptSpec.hasExceptionSpecification();
4662 EPI.HasAnyExceptionSpec = ExceptSpec.hasAnyExceptionSpecification();
4663 EPI.NumExceptions = ExceptSpec.size();
4664 EPI.Exceptions = ExceptSpec.data();
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004665
4666 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00004667 CanQualType ClassType
4668 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4669 DeclarationName Name
4670 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnara25777432010-08-11 22:01:17 +00004671 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor32df23e2010-07-01 22:02:46 +00004672 CXXConstructorDecl *DefaultCon
Abramo Bagnara25777432010-08-11 22:01:17 +00004673 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor32df23e2010-07-01 22:02:46 +00004674 Context.getFunctionType(Context.VoidTy,
John McCalle23cf432010-12-14 08:05:40 +00004675 0, 0, EPI),
Douglas Gregor32df23e2010-07-01 22:02:46 +00004676 /*TInfo=*/0,
4677 /*isExplicit=*/false,
4678 /*isInline=*/true,
4679 /*isImplicitlyDeclared=*/true);
4680 DefaultCon->setAccess(AS_public);
4681 DefaultCon->setImplicit();
4682 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00004683
4684 // Note that we have declared this constructor.
Douglas Gregor18274032010-07-03 00:47:00 +00004685 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4686
Douglas Gregor23c94db2010-07-02 17:43:08 +00004687 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00004688 PushOnScopeChains(DefaultCon, S, false);
4689 ClassDecl->addDecl(DefaultCon);
4690
Douglas Gregor32df23e2010-07-01 22:02:46 +00004691 return DefaultCon;
4692}
4693
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004694void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4695 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004696 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004697 !Constructor->isUsed(false)) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004698 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004699
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004700 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004701 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004702
Douglas Gregor39957dc2010-05-01 15:04:51 +00004703 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00004704 DiagnosticErrorTrap Trap(Diags);
Sean Huntcbb67482011-01-08 20:30:50 +00004705 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004706 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004707 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004708 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004709 Constructor->setInvalidDecl();
Douglas Gregor4ada9d32010-09-20 16:48:21 +00004710 return;
Eli Friedman80c30da2009-11-09 19:20:36 +00004711 }
Douglas Gregor4ada9d32010-09-20 16:48:21 +00004712
4713 SourceLocation Loc = Constructor->getLocation();
4714 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4715
4716 Constructor->setUsed();
4717 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004718}
4719
Sebastian Redlf677ea32011-02-05 19:23:19 +00004720void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
4721 // We start with an initial pass over the base classes to collect those that
4722 // inherit constructors from. If there are none, we can forgo all further
4723 // processing.
4724 typedef llvm::SmallVector<const RecordType *, 4> BasesVector;
4725 BasesVector BasesToInheritFrom;
4726 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
4727 BaseE = ClassDecl->bases_end();
4728 BaseIt != BaseE; ++BaseIt) {
4729 if (BaseIt->getInheritConstructors()) {
4730 QualType Base = BaseIt->getType();
4731 if (Base->isDependentType()) {
4732 // If we inherit constructors from anything that is dependent, just
4733 // abort processing altogether. We'll get another chance for the
4734 // instantiations.
4735 return;
4736 }
4737 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
4738 }
4739 }
4740 if (BasesToInheritFrom.empty())
4741 return;
4742
4743 // Now collect the constructors that we already have in the current class.
4744 // Those take precedence over inherited constructors.
4745 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
4746 // unless there is a user-declared constructor with the same signature in
4747 // the class where the using-declaration appears.
4748 llvm::SmallSet<const Type *, 8> ExistingConstructors;
4749 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
4750 CtorE = ClassDecl->ctor_end();
4751 CtorIt != CtorE; ++CtorIt) {
4752 ExistingConstructors.insert(
4753 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
4754 }
4755
4756 Scope *S = getScopeForContext(ClassDecl);
4757 DeclarationName CreatedCtorName =
4758 Context.DeclarationNames.getCXXConstructorName(
4759 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
4760
4761 // Now comes the true work.
4762 // First, we keep a map from constructor types to the base that introduced
4763 // them. Needed for finding conflicting constructors. We also keep the
4764 // actually inserted declarations in there, for pretty diagnostics.
4765 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
4766 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
4767 ConstructorToSourceMap InheritedConstructors;
4768 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
4769 BaseE = BasesToInheritFrom.end();
4770 BaseIt != BaseE; ++BaseIt) {
4771 const RecordType *Base = *BaseIt;
4772 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
4773 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
4774 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
4775 CtorE = BaseDecl->ctor_end();
4776 CtorIt != CtorE; ++CtorIt) {
4777 // Find the using declaration for inheriting this base's constructors.
4778 DeclarationName Name =
4779 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
4780 UsingDecl *UD = dyn_cast_or_null<UsingDecl>(
4781 LookupSingleName(S, Name,SourceLocation(), LookupUsingDeclName));
4782 SourceLocation UsingLoc = UD ? UD->getLocation() :
4783 ClassDecl->getLocation();
4784
4785 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
4786 // from the class X named in the using-declaration consists of actual
4787 // constructors and notional constructors that result from the
4788 // transformation of defaulted parameters as follows:
4789 // - all non-template default constructors of X, and
4790 // - for each non-template constructor of X that has at least one
4791 // parameter with a default argument, the set of constructors that
4792 // results from omitting any ellipsis parameter specification and
4793 // successively omitting parameters with a default argument from the
4794 // end of the parameter-type-list.
4795 CXXConstructorDecl *BaseCtor = *CtorIt;
4796 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
4797 const FunctionProtoType *BaseCtorType =
4798 BaseCtor->getType()->getAs<FunctionProtoType>();
4799
4800 for (unsigned params = BaseCtor->getMinRequiredArguments(),
4801 maxParams = BaseCtor->getNumParams();
4802 params <= maxParams; ++params) {
4803 // Skip default constructors. They're never inherited.
4804 if (params == 0)
4805 continue;
4806 // Skip copy and move constructors for the same reason.
4807 if (CanBeCopyOrMove && params == 1)
4808 continue;
4809
4810 // Build up a function type for this particular constructor.
4811 // FIXME: The working paper does not consider that the exception spec
4812 // for the inheriting constructor might be larger than that of the
4813 // source. This code doesn't yet, either.
4814 const Type *NewCtorType;
4815 if (params == maxParams)
4816 NewCtorType = BaseCtorType;
4817 else {
4818 llvm::SmallVector<QualType, 16> Args;
4819 for (unsigned i = 0; i < params; ++i) {
4820 Args.push_back(BaseCtorType->getArgType(i));
4821 }
4822 FunctionProtoType::ExtProtoInfo ExtInfo =
4823 BaseCtorType->getExtProtoInfo();
4824 ExtInfo.Variadic = false;
4825 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
4826 Args.data(), params, ExtInfo)
4827 .getTypePtr();
4828 }
4829 const Type *CanonicalNewCtorType =
4830 Context.getCanonicalType(NewCtorType);
4831
4832 // Now that we have the type, first check if the class already has a
4833 // constructor with this signature.
4834 if (ExistingConstructors.count(CanonicalNewCtorType))
4835 continue;
4836
4837 // Then we check if we have already declared an inherited constructor
4838 // with this signature.
4839 std::pair<ConstructorToSourceMap::iterator, bool> result =
4840 InheritedConstructors.insert(std::make_pair(
4841 CanonicalNewCtorType,
4842 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
4843 if (!result.second) {
4844 // Already in the map. If it came from a different class, that's an
4845 // error. Not if it's from the same.
4846 CanQualType PreviousBase = result.first->second.first;
4847 if (CanonicalBase != PreviousBase) {
4848 const CXXConstructorDecl *PrevCtor = result.first->second.second;
4849 const CXXConstructorDecl *PrevBaseCtor =
4850 PrevCtor->getInheritedConstructor();
4851 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
4852
4853 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
4854 Diag(BaseCtor->getLocation(),
4855 diag::note_using_decl_constructor_conflict_current_ctor);
4856 Diag(PrevBaseCtor->getLocation(),
4857 diag::note_using_decl_constructor_conflict_previous_ctor);
4858 Diag(PrevCtor->getLocation(),
4859 diag::note_using_decl_constructor_conflict_previous_using);
4860 }
4861 continue;
4862 }
4863
4864 // OK, we're there, now add the constructor.
4865 // C++0x [class.inhctor]p8: [...] that would be performed by a
4866 // user-writtern inline constructor [...]
4867 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
4868 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
4869 Context, ClassDecl, DNI, QualType(NewCtorType, 0), /*TInfo=*/0,
4870 BaseCtor->isExplicit(), /*Inline=*/true,
4871 /*ImplicitlyDeclared=*/true);
4872 NewCtor->setAccess(BaseCtor->getAccess());
4873
4874 // Build up the parameter decls and add them.
4875 llvm::SmallVector<ParmVarDecl *, 16> ParamDecls;
4876 for (unsigned i = 0; i < params; ++i) {
4877 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor, UsingLoc,
4878 /*IdentifierInfo=*/0,
4879 BaseCtorType->getArgType(i),
4880 /*TInfo=*/0, SC_None,
4881 SC_None, /*DefaultArg=*/0));
4882 }
4883 NewCtor->setParams(ParamDecls.data(), ParamDecls.size());
4884 NewCtor->setInheritedConstructor(BaseCtor);
4885
4886 PushOnScopeChains(NewCtor, S, false);
4887 ClassDecl->addDecl(NewCtor);
4888 result.first->second.second = NewCtor;
4889 }
4890 }
4891 }
4892}
4893
Douglas Gregor23c94db2010-07-02 17:43:08 +00004894CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004895 // C++ [class.dtor]p2:
4896 // If a class has no user-declared destructor, a destructor is
4897 // declared implicitly. An implicitly-declared destructor is an
4898 // inline public member of its class.
4899
4900 // C++ [except.spec]p14:
4901 // An implicitly declared special member function (Clause 12) shall have
4902 // an exception-specification.
4903 ImplicitExceptionSpecification ExceptSpec(Context);
4904
4905 // Direct base-class destructors.
4906 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4907 BEnd = ClassDecl->bases_end();
4908 B != BEnd; ++B) {
4909 if (B->isVirtual()) // Handled below.
4910 continue;
4911
4912 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4913 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004914 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004915 }
4916
4917 // Virtual base-class destructors.
4918 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4919 BEnd = ClassDecl->vbases_end();
4920 B != BEnd; ++B) {
4921 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4922 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004923 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004924 }
4925
4926 // Field destructors.
4927 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4928 FEnd = ClassDecl->field_end();
4929 F != FEnd; ++F) {
4930 if (const RecordType *RecordTy
4931 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4932 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004933 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004934 }
4935
Douglas Gregor4923aa22010-07-02 20:37:36 +00004936 // Create the actual destructor declaration.
John McCalle23cf432010-12-14 08:05:40 +00004937 FunctionProtoType::ExtProtoInfo EPI;
4938 EPI.HasExceptionSpec = ExceptSpec.hasExceptionSpecification();
4939 EPI.HasAnyExceptionSpec = ExceptSpec.hasAnyExceptionSpecification();
4940 EPI.NumExceptions = ExceptSpec.size();
4941 EPI.Exceptions = ExceptSpec.data();
4942 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004943
4944 CanQualType ClassType
4945 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4946 DeclarationName Name
4947 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnara25777432010-08-11 22:01:17 +00004948 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004949 CXXDestructorDecl *Destructor
Craig Silversteinb41d8992010-10-21 00:44:50 +00004950 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty, 0,
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004951 /*isInline=*/true,
4952 /*isImplicitlyDeclared=*/true);
4953 Destructor->setAccess(AS_public);
4954 Destructor->setImplicit();
4955 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00004956
4957 // Note that we have declared this destructor.
Douglas Gregor4923aa22010-07-02 20:37:36 +00004958 ++ASTContext::NumImplicitDestructorsDeclared;
4959
4960 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004961 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00004962 PushOnScopeChains(Destructor, S, false);
4963 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004964
4965 // This could be uniqued if it ever proves significant.
4966 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4967
4968 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor4923aa22010-07-02 20:37:36 +00004969
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004970 return Destructor;
4971}
4972
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004973void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00004974 CXXDestructorDecl *Destructor) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00004975 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004976 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00004977 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004978 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004979
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004980 if (Destructor->isInvalidDecl())
4981 return;
4982
Douglas Gregor39957dc2010-05-01 15:04:51 +00004983 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004984
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00004985 DiagnosticErrorTrap Trap(Diags);
John McCallef027fe2010-03-16 21:39:52 +00004986 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4987 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00004988
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004989 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004990 Diag(CurrentLocation, diag::note_member_synthesized_at)
4991 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4992
4993 Destructor->setInvalidDecl();
4994 return;
4995 }
4996
Douglas Gregor4ada9d32010-09-20 16:48:21 +00004997 SourceLocation Loc = Destructor->getLocation();
4998 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4999
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005000 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00005001 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005002}
5003
Douglas Gregor06a9f362010-05-01 20:49:11 +00005004/// \brief Builds a statement that copies the given entity from \p From to
5005/// \c To.
5006///
5007/// This routine is used to copy the members of a class with an
5008/// implicitly-declared copy assignment operator. When the entities being
5009/// copied are arrays, this routine builds for loops to copy them.
5010///
5011/// \param S The Sema object used for type-checking.
5012///
5013/// \param Loc The location where the implicit copy is being generated.
5014///
5015/// \param T The type of the expressions being copied. Both expressions must
5016/// have this type.
5017///
5018/// \param To The expression we are copying to.
5019///
5020/// \param From The expression we are copying from.
5021///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005022/// \param CopyingBaseSubobject Whether we're copying a base subobject.
5023/// Otherwise, it's a non-static member subobject.
5024///
Douglas Gregor06a9f362010-05-01 20:49:11 +00005025/// \param Depth Internal parameter recording the depth of the recursion.
5026///
5027/// \returns A statement or a loop that copies the expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00005028static StmtResult
Douglas Gregor06a9f362010-05-01 20:49:11 +00005029BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCall9ae2f072010-08-23 23:25:46 +00005030 Expr *To, Expr *From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005031 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005032 // C++0x [class.copy]p30:
5033 // Each subobject is assigned in the manner appropriate to its type:
5034 //
5035 // - if the subobject is of class type, the copy assignment operator
5036 // for the class is used (as if by explicit qualification; that is,
5037 // ignoring any possible virtual overriding functions in more derived
5038 // classes);
5039 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
5040 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
5041
5042 // Look for operator=.
5043 DeclarationName Name
5044 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5045 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
5046 S.LookupQualifiedName(OpLookup, ClassDecl, false);
5047
5048 // Filter out any result that isn't a copy-assignment operator.
5049 LookupResult::Filter F = OpLookup.makeFilter();
5050 while (F.hasNext()) {
5051 NamedDecl *D = F.next();
5052 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
5053 if (Method->isCopyAssignmentOperator())
5054 continue;
5055
5056 F.erase();
John McCallb0207482010-03-16 06:11:48 +00005057 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005058 F.done();
5059
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005060 // Suppress the protected check (C++ [class.protected]) for each of the
5061 // assignment operators we found. This strange dance is required when
5062 // we're assigning via a base classes's copy-assignment operator. To
5063 // ensure that we're getting the right base class subobject (without
5064 // ambiguities), we need to cast "this" to that subobject type; to
5065 // ensure that we don't go through the virtual call mechanism, we need
5066 // to qualify the operator= name with the base class (see below). However,
5067 // this means that if the base class has a protected copy assignment
5068 // operator, the protected member access check will fail. So, we
5069 // rewrite "protected" access to "public" access in this case, since we
5070 // know by construction that we're calling from a derived class.
5071 if (CopyingBaseSubobject) {
5072 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
5073 L != LEnd; ++L) {
5074 if (L.getAccess() == AS_protected)
5075 L.setAccess(AS_public);
5076 }
5077 }
5078
Douglas Gregor06a9f362010-05-01 20:49:11 +00005079 // Create the nested-name-specifier that will be used to qualify the
5080 // reference to operator=; this is required to suppress the virtual
5081 // call mechanism.
5082 CXXScopeSpec SS;
5083 SS.setRange(Loc);
5084 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
5085 T.getTypePtr()));
5086
5087 // Create the reference to operator=.
John McCall60d7b3a2010-08-24 06:29:42 +00005088 ExprResult OpEqualRef
John McCall9ae2f072010-08-23 23:25:46 +00005089 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregor06a9f362010-05-01 20:49:11 +00005090 /*FirstQualifierInScope=*/0, OpLookup,
5091 /*TemplateArgs=*/0,
5092 /*SuppressQualifierCheck=*/true);
5093 if (OpEqualRef.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005094 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005095
5096 // Build the call to the assignment operator.
John McCall9ae2f072010-08-23 23:25:46 +00005097
John McCall60d7b3a2010-08-24 06:29:42 +00005098 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregora1a04782010-09-09 16:33:13 +00005099 OpEqualRef.takeAs<Expr>(),
5100 Loc, &From, 1, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005101 if (Call.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005102 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005103
5104 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005105 }
John McCallb0207482010-03-16 06:11:48 +00005106
Douglas Gregor06a9f362010-05-01 20:49:11 +00005107 // - if the subobject is of scalar type, the built-in assignment
5108 // operator is used.
5109 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
5110 if (!ArrayTy) {
John McCall2de56d12010-08-25 11:45:40 +00005111 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005112 if (Assignment.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005113 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005114
5115 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005116 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005117
5118 // - if the subobject is an array, each element is assigned, in the
5119 // manner appropriate to the element type;
5120
5121 // Construct a loop over the array bounds, e.g.,
5122 //
5123 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
5124 //
5125 // that will copy each of the array elements.
5126 QualType SizeType = S.Context.getSizeType();
5127
5128 // Create the iteration variable.
5129 IdentifierInfo *IterationVarName = 0;
5130 {
5131 llvm::SmallString<8> Str;
5132 llvm::raw_svector_ostream OS(Str);
5133 OS << "__i" << Depth;
5134 IterationVarName = &S.Context.Idents.get(OS.str());
5135 }
5136 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
5137 IterationVarName, SizeType,
5138 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCalld931b082010-08-26 03:08:43 +00005139 SC_None, SC_None);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005140
5141 // Initialize the iteration variable to zero.
5142 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00005143 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00005144
5145 // Create a reference to the iteration variable; we'll use this several
5146 // times throughout.
5147 Expr *IterationVarRef
John McCallf89e55a2010-11-18 06:31:45 +00005148 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005149 assert(IterationVarRef && "Reference to invented variable cannot fail!");
5150
5151 // Create the DeclStmt that holds the iteration variable.
5152 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
5153
5154 // Create the comparison against the array bound.
Jay Foad9f71a8f2010-12-07 08:25:34 +00005155 llvm::APInt Upper
5156 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCall9ae2f072010-08-23 23:25:46 +00005157 Expr *Comparison
John McCall3fa5cae2010-10-26 07:05:15 +00005158 = new (S.Context) BinaryOperator(IterationVarRef,
John McCallf89e55a2010-11-18 06:31:45 +00005159 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
5160 BO_NE, S.Context.BoolTy,
5161 VK_RValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005162
5163 // Create the pre-increment of the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00005164 Expr *Increment
John McCallf89e55a2010-11-18 06:31:45 +00005165 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
5166 VK_LValue, OK_Ordinary, Loc);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005167
5168 // Subscript the "from" and "to" expressions with the iteration variable.
John McCall9ae2f072010-08-23 23:25:46 +00005169 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
5170 IterationVarRef, Loc));
5171 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
5172 IterationVarRef, Loc));
Douglas Gregor06a9f362010-05-01 20:49:11 +00005173
5174 // Build the copy for an individual element of the array.
John McCallf89e55a2010-11-18 06:31:45 +00005175 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
5176 To, From, CopyingBaseSubobject,
5177 Depth + 1);
Douglas Gregorff331c12010-07-25 18:17:45 +00005178 if (Copy.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00005179 return StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005180
5181 // Construct the loop that copies all elements of this array.
John McCall9ae2f072010-08-23 23:25:46 +00005182 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregor06a9f362010-05-01 20:49:11 +00005183 S.MakeFullExpr(Comparison),
John McCalld226f652010-08-21 09:40:31 +00005184 0, S.MakeFullExpr(Increment),
John McCall9ae2f072010-08-23 23:25:46 +00005185 Loc, Copy.take());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005186}
5187
Douglas Gregora376d102010-07-02 21:50:04 +00005188/// \brief Determine whether the given class has a copy assignment operator
5189/// that accepts a const-qualified argument.
5190static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
5191 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
5192
5193 if (!Class->hasDeclaredCopyAssignment())
5194 S.DeclareImplicitCopyAssignment(Class);
5195
5196 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
5197 DeclarationName OpName
5198 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
5199
5200 DeclContext::lookup_const_iterator Op, OpEnd;
5201 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
5202 // C++ [class.copy]p9:
5203 // A user-declared copy assignment operator is a non-static non-template
5204 // member function of class X with exactly one parameter of type X, X&,
5205 // const X&, volatile X& or const volatile X&.
5206 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
5207 if (!Method)
5208 continue;
5209
5210 if (Method->isStatic())
5211 continue;
5212 if (Method->getPrimaryTemplate())
5213 continue;
5214 const FunctionProtoType *FnType =
5215 Method->getType()->getAs<FunctionProtoType>();
5216 assert(FnType && "Overloaded operator has no prototype.");
5217 // Don't assert on this; an invalid decl might have been left in the AST.
5218 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
5219 continue;
5220 bool AcceptsConst = true;
5221 QualType ArgType = FnType->getArgType(0);
5222 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
5223 ArgType = Ref->getPointeeType();
5224 // Is it a non-const lvalue reference?
5225 if (!ArgType.isConstQualified())
5226 AcceptsConst = false;
5227 }
5228 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
5229 continue;
5230
5231 // We have a single argument of type cv X or cv X&, i.e. we've found the
5232 // copy assignment operator. Return whether it accepts const arguments.
5233 return AcceptsConst;
5234 }
5235 assert(Class->isInvalidDecl() &&
5236 "No copy assignment operator declared in valid code.");
5237 return false;
5238}
5239
Douglas Gregor23c94db2010-07-02 17:43:08 +00005240CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregord3c35902010-07-01 16:36:15 +00005241 // Note: The following rules are largely analoguous to the copy
5242 // constructor rules. Note that virtual bases are not taken into account
5243 // for determining the argument type of the operator. Note also that
5244 // operators taking an object instead of a reference are allowed.
Douglas Gregor18274032010-07-03 00:47:00 +00005245
5246
Douglas Gregord3c35902010-07-01 16:36:15 +00005247 // C++ [class.copy]p10:
5248 // If the class definition does not explicitly declare a copy
5249 // assignment operator, one is declared implicitly.
5250 // The implicitly-defined copy assignment operator for a class X
5251 // will have the form
5252 //
5253 // X& X::operator=(const X&)
5254 //
5255 // if
5256 bool HasConstCopyAssignment = true;
5257
5258 // -- each direct base class B of X has a copy assignment operator
5259 // whose parameter is of type const B&, const volatile B& or B,
5260 // and
5261 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5262 BaseEnd = ClassDecl->bases_end();
5263 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
5264 assert(!Base->getType()->isDependentType() &&
5265 "Cannot generate implicit members for class with dependent bases.");
5266 const CXXRecordDecl *BaseClassDecl
5267 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005268 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00005269 }
5270
5271 // -- for all the nonstatic data members of X that are of a class
5272 // type M (or array thereof), each such class type has a copy
5273 // assignment operator whose parameter is of type const M&,
5274 // const volatile M& or M.
5275 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5276 FieldEnd = ClassDecl->field_end();
5277 HasConstCopyAssignment && Field != FieldEnd;
5278 ++Field) {
5279 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5280 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5281 const CXXRecordDecl *FieldClassDecl
5282 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005283 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00005284 }
5285 }
5286
5287 // Otherwise, the implicitly declared copy assignment operator will
5288 // have the form
5289 //
5290 // X& X::operator=(X&)
5291 QualType ArgType = Context.getTypeDeclType(ClassDecl);
5292 QualType RetType = Context.getLValueReferenceType(ArgType);
5293 if (HasConstCopyAssignment)
5294 ArgType = ArgType.withConst();
5295 ArgType = Context.getLValueReferenceType(ArgType);
5296
Douglas Gregorb87786f2010-07-01 17:48:08 +00005297 // C++ [except.spec]p14:
5298 // An implicitly declared special member function (Clause 12) shall have an
5299 // exception-specification. [...]
5300 ImplicitExceptionSpecification ExceptSpec(Context);
5301 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5302 BaseEnd = ClassDecl->bases_end();
5303 Base != BaseEnd; ++Base) {
Douglas Gregora376d102010-07-02 21:50:04 +00005304 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00005305 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005306
5307 if (!BaseClassDecl->hasDeclaredCopyAssignment())
5308 DeclareImplicitCopyAssignment(BaseClassDecl);
5309
Douglas Gregorb87786f2010-07-01 17:48:08 +00005310 if (CXXMethodDecl *CopyAssign
5311 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5312 ExceptSpec.CalledDecl(CopyAssign);
5313 }
5314 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5315 FieldEnd = ClassDecl->field_end();
5316 Field != FieldEnd;
5317 ++Field) {
5318 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5319 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora376d102010-07-02 21:50:04 +00005320 CXXRecordDecl *FieldClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00005321 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00005322
5323 if (!FieldClassDecl->hasDeclaredCopyAssignment())
5324 DeclareImplicitCopyAssignment(FieldClassDecl);
5325
Douglas Gregorb87786f2010-07-01 17:48:08 +00005326 if (CXXMethodDecl *CopyAssign
5327 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
5328 ExceptSpec.CalledDecl(CopyAssign);
5329 }
5330 }
5331
Douglas Gregord3c35902010-07-01 16:36:15 +00005332 // An implicitly-declared copy assignment operator is an inline public
5333 // member of its class.
John McCalle23cf432010-12-14 08:05:40 +00005334 FunctionProtoType::ExtProtoInfo EPI;
5335 EPI.HasExceptionSpec = ExceptSpec.hasExceptionSpecification();
5336 EPI.HasAnyExceptionSpec = ExceptSpec.hasAnyExceptionSpecification();
5337 EPI.NumExceptions = ExceptSpec.size();
5338 EPI.Exceptions = ExceptSpec.data();
Douglas Gregord3c35902010-07-01 16:36:15 +00005339 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnara25777432010-08-11 22:01:17 +00005340 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregord3c35902010-07-01 16:36:15 +00005341 CXXMethodDecl *CopyAssignment
Abramo Bagnara25777432010-08-11 22:01:17 +00005342 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
John McCalle23cf432010-12-14 08:05:40 +00005343 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregord3c35902010-07-01 16:36:15 +00005344 /*TInfo=*/0, /*isStatic=*/false,
John McCalld931b082010-08-26 03:08:43 +00005345 /*StorageClassAsWritten=*/SC_None,
Douglas Gregord3c35902010-07-01 16:36:15 +00005346 /*isInline=*/true);
5347 CopyAssignment->setAccess(AS_public);
5348 CopyAssignment->setImplicit();
5349 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregord3c35902010-07-01 16:36:15 +00005350
5351 // Add the parameter to the operator.
5352 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
5353 ClassDecl->getLocation(),
5354 /*Id=*/0,
5355 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00005356 SC_None,
5357 SC_None, 0);
Douglas Gregord3c35902010-07-01 16:36:15 +00005358 CopyAssignment->setParams(&FromParam, 1);
5359
Douglas Gregora376d102010-07-02 21:50:04 +00005360 // Note that we have added this copy-assignment operator.
Douglas Gregora376d102010-07-02 21:50:04 +00005361 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
5362
Douglas Gregor23c94db2010-07-02 17:43:08 +00005363 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00005364 PushOnScopeChains(CopyAssignment, S, false);
5365 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00005366
5367 AddOverriddenMethods(ClassDecl, CopyAssignment);
5368 return CopyAssignment;
5369}
5370
Douglas Gregor06a9f362010-05-01 20:49:11 +00005371void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
5372 CXXMethodDecl *CopyAssignOperator) {
5373 assert((CopyAssignOperator->isImplicit() &&
5374 CopyAssignOperator->isOverloadedOperator() &&
5375 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005376 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00005377 "DefineImplicitCopyAssignment called for wrong function");
5378
5379 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
5380
5381 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
5382 CopyAssignOperator->setInvalidDecl();
5383 return;
5384 }
5385
5386 CopyAssignOperator->setUsed();
5387
5388 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00005389 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005390
5391 // C++0x [class.copy]p30:
5392 // The implicitly-defined or explicitly-defaulted copy assignment operator
5393 // for a non-union class X performs memberwise copy assignment of its
5394 // subobjects. The direct base classes of X are assigned first, in the
5395 // order of their declaration in the base-specifier-list, and then the
5396 // immediate non-static data members of X are assigned, in the order in
5397 // which they were declared in the class definition.
5398
5399 // The statements that form the synthesized function body.
John McCallca0408f2010-08-23 06:44:23 +00005400 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005401
5402 // The parameter for the "other" object, which we are copying from.
5403 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
5404 Qualifiers OtherQuals = Other->getType().getQualifiers();
5405 QualType OtherRefType = Other->getType();
5406 if (const LValueReferenceType *OtherRef
5407 = OtherRefType->getAs<LValueReferenceType>()) {
5408 OtherRefType = OtherRef->getPointeeType();
5409 OtherQuals = OtherRefType.getQualifiers();
5410 }
5411
5412 // Our location for everything implicitly-generated.
5413 SourceLocation Loc = CopyAssignOperator->getLocation();
5414
5415 // Construct a reference to the "other" object. We'll be using this
5416 // throughout the generated ASTs.
John McCall09431682010-11-18 19:01:18 +00005417 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005418 assert(OtherRef && "Reference to parameter cannot fail!");
5419
5420 // Construct the "this" pointer. We'll be using this throughout the generated
5421 // ASTs.
5422 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
5423 assert(This && "Reference to this cannot fail!");
5424
5425 // Assign base classes.
5426 bool Invalid = false;
5427 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5428 E = ClassDecl->bases_end(); Base != E; ++Base) {
5429 // Form the assignment:
5430 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
5431 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskindec09842011-01-18 02:00:16 +00005432 if (!BaseType->isRecordType()) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005433 Invalid = true;
5434 continue;
5435 }
5436
John McCallf871d0c2010-08-07 06:22:56 +00005437 CXXCastPath BasePath;
5438 BasePath.push_back(Base);
5439
Douglas Gregor06a9f362010-05-01 20:49:11 +00005440 // Construct the "from" expression, which is an implicit cast to the
5441 // appropriately-qualified base type.
John McCall3fa5cae2010-10-26 07:05:15 +00005442 Expr *From = OtherRef;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005443 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
John McCall5baba9d2010-08-25 10:28:54 +00005444 CK_UncheckedDerivedToBase,
5445 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005446
5447 // Dereference "this".
John McCall5baba9d2010-08-25 10:28:54 +00005448 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005449
5450 // Implicitly cast "this" to the appropriately-qualified base type.
5451 Expr *ToE = To.takeAs<Expr>();
5452 ImpCastExprToType(ToE,
5453 Context.getCVRQualifiedType(BaseType,
5454 CopyAssignOperator->getTypeQualifiers()),
John McCall5baba9d2010-08-25 10:28:54 +00005455 CK_UncheckedDerivedToBase,
5456 VK_LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005457 To = Owned(ToE);
5458
5459 // Build the copy.
John McCall60d7b3a2010-08-24 06:29:42 +00005460 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall5baba9d2010-08-25 10:28:54 +00005461 To.get(), From,
5462 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005463 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005464 Diag(CurrentLocation, diag::note_member_synthesized_at)
5465 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5466 CopyAssignOperator->setInvalidDecl();
5467 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005468 }
5469
5470 // Success! Record the copy.
5471 Statements.push_back(Copy.takeAs<Expr>());
5472 }
5473
5474 // \brief Reference to the __builtin_memcpy function.
5475 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00005476 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005477 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005478
5479 // Assign non-static members.
5480 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5481 FieldEnd = ClassDecl->field_end();
5482 Field != FieldEnd; ++Field) {
5483 // Check for members of reference type; we can't copy those.
5484 if (Field->getType()->isReferenceType()) {
5485 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5486 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5487 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005488 Diag(CurrentLocation, diag::note_member_synthesized_at)
5489 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005490 Invalid = true;
5491 continue;
5492 }
5493
5494 // Check for members of const-qualified, non-class type.
5495 QualType BaseType = Context.getBaseElementType(Field->getType());
5496 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5497 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5498 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
5499 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005500 Diag(CurrentLocation, diag::note_member_synthesized_at)
5501 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005502 Invalid = true;
5503 continue;
5504 }
5505
5506 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00005507 if (FieldType->isIncompleteArrayType()) {
5508 assert(ClassDecl->hasFlexibleArrayMember() &&
5509 "Incomplete array type is not valid");
5510 continue;
5511 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005512
5513 // Build references to the field in the object we're copying from and to.
5514 CXXScopeSpec SS; // Intentionally empty
5515 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5516 LookupMemberName);
5517 MemberLookup.addDecl(*Field);
5518 MemberLookup.resolveKind();
John McCall60d7b3a2010-08-24 06:29:42 +00005519 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall09431682010-11-18 19:01:18 +00005520 Loc, /*IsArrow=*/false,
5521 SS, 0, MemberLookup, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00005522 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall09431682010-11-18 19:01:18 +00005523 Loc, /*IsArrow=*/true,
5524 SS, 0, MemberLookup, 0);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005525 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5526 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5527
5528 // If the field should be copied with __builtin_memcpy rather than via
5529 // explicit assignments, do so. This optimization only applies for arrays
5530 // of scalars and arrays of class type with trivial copy-assignment
5531 // operators.
5532 if (FieldType->isArrayType() &&
5533 (!BaseType->isRecordType() ||
5534 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5535 ->hasTrivialCopyAssignment())) {
5536 // Compute the size of the memory buffer to be copied.
5537 QualType SizeType = Context.getSizeType();
5538 llvm::APInt Size(Context.getTypeSize(SizeType),
5539 Context.getTypeSizeInChars(BaseType).getQuantity());
5540 for (const ConstantArrayType *Array
5541 = Context.getAsConstantArrayType(FieldType);
5542 Array;
5543 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad9f71a8f2010-12-07 08:25:34 +00005544 llvm::APInt ArraySize
5545 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregor06a9f362010-05-01 20:49:11 +00005546 Size *= ArraySize;
5547 }
5548
5549 // Take the address of the field references for "from" and "to".
John McCall2de56d12010-08-25 11:45:40 +00005550 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5551 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005552
5553 bool NeedsCollectableMemCpy =
5554 (BaseType->isRecordType() &&
5555 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5556
5557 if (NeedsCollectableMemCpy) {
5558 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00005559 // Create a reference to the __builtin_objc_memmove_collectable function.
5560 LookupResult R(*this,
5561 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005562 Loc, LookupOrdinaryName);
5563 LookupName(R, TUScope, true);
5564
5565 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5566 if (!CollectableMemCpy) {
5567 // Something went horribly wrong earlier, and we will have
5568 // complained about it.
5569 Invalid = true;
5570 continue;
5571 }
5572
5573 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5574 CollectableMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00005575 VK_LValue, Loc, 0).take();
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005576 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5577 }
5578 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005579 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005580 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005581 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5582 LookupOrdinaryName);
5583 LookupName(R, TUScope, true);
5584
5585 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5586 if (!BuiltinMemCpy) {
5587 // Something went horribly wrong earlier, and we will have complained
5588 // about it.
5589 Invalid = true;
5590 continue;
5591 }
5592
5593 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5594 BuiltinMemCpy->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00005595 VK_LValue, Loc, 0).take();
Douglas Gregor06a9f362010-05-01 20:49:11 +00005596 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5597 }
5598
John McCallca0408f2010-08-23 06:44:23 +00005599 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005600 CallArgs.push_back(To.takeAs<Expr>());
5601 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00005602 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCall60d7b3a2010-08-24 06:29:42 +00005603 ExprResult Call = ExprError();
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005604 if (NeedsCollectableMemCpy)
5605 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00005606 CollectableMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005607 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00005608 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005609 else
5610 Call = ActOnCallExpr(/*Scope=*/0,
John McCall9ae2f072010-08-23 23:25:46 +00005611 BuiltinMemCpyRef,
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005612 Loc, move_arg(CallArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +00005613 Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005614
Douglas Gregor06a9f362010-05-01 20:49:11 +00005615 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5616 Statements.push_back(Call.takeAs<Expr>());
5617 continue;
5618 }
5619
5620 // Build the copy of this field.
John McCall60d7b3a2010-08-24 06:29:42 +00005621 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCall9ae2f072010-08-23 23:25:46 +00005622 To.get(), From.get(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005623 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005624 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005625 Diag(CurrentLocation, diag::note_member_synthesized_at)
5626 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5627 CopyAssignOperator->setInvalidDecl();
5628 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005629 }
5630
5631 // Success! Record the copy.
5632 Statements.push_back(Copy.takeAs<Stmt>());
5633 }
5634
5635 if (!Invalid) {
5636 // Add a "return *this;"
John McCall2de56d12010-08-25 11:45:40 +00005637 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005638
John McCall60d7b3a2010-08-24 06:29:42 +00005639 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregor06a9f362010-05-01 20:49:11 +00005640 if (Return.isInvalid())
5641 Invalid = true;
5642 else {
5643 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005644
5645 if (Trap.hasErrorOccurred()) {
5646 Diag(CurrentLocation, diag::note_member_synthesized_at)
5647 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5648 Invalid = true;
5649 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005650 }
5651 }
5652
5653 if (Invalid) {
5654 CopyAssignOperator->setInvalidDecl();
5655 return;
5656 }
5657
John McCall60d7b3a2010-08-24 06:29:42 +00005658 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregor06a9f362010-05-01 20:49:11 +00005659 /*isStmtExpr=*/false);
5660 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5661 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005662}
5663
Douglas Gregor23c94db2010-07-02 17:43:08 +00005664CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5665 CXXRecordDecl *ClassDecl) {
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005666 // C++ [class.copy]p4:
5667 // If the class definition does not explicitly declare a copy
5668 // constructor, one is declared implicitly.
5669
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005670 // C++ [class.copy]p5:
5671 // The implicitly-declared copy constructor for a class X will
5672 // have the form
5673 //
5674 // X::X(const X&)
5675 //
5676 // if
5677 bool HasConstCopyConstructor = true;
5678
5679 // -- each direct or virtual base class B of X has a copy
5680 // constructor whose first parameter is of type const B& or
5681 // const volatile B&, and
5682 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5683 BaseEnd = ClassDecl->bases_end();
5684 HasConstCopyConstructor && Base != BaseEnd;
5685 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005686 // Virtual bases are handled below.
5687 if (Base->isVirtual())
5688 continue;
5689
Douglas Gregor22584312010-07-02 23:41:54 +00005690 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005691 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005692 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5693 DeclareImplicitCopyConstructor(BaseClassDecl);
5694
Douglas Gregor598a8542010-07-01 18:27:03 +00005695 HasConstCopyConstructor
5696 = BaseClassDecl->hasConstCopyConstructor(Context);
5697 }
5698
5699 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5700 BaseEnd = ClassDecl->vbases_end();
5701 HasConstCopyConstructor && Base != BaseEnd;
5702 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005703 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005704 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005705 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5706 DeclareImplicitCopyConstructor(BaseClassDecl);
5707
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005708 HasConstCopyConstructor
5709 = BaseClassDecl->hasConstCopyConstructor(Context);
5710 }
5711
5712 // -- for all the nonstatic data members of X that are of a
5713 // class type M (or array thereof), each such class type
5714 // has a copy constructor whose first parameter is of type
5715 // const M& or const volatile M&.
5716 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5717 FieldEnd = ClassDecl->field_end();
5718 HasConstCopyConstructor && Field != FieldEnd;
5719 ++Field) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005720 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005721 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005722 CXXRecordDecl *FieldClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005723 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005724 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5725 DeclareImplicitCopyConstructor(FieldClassDecl);
5726
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005727 HasConstCopyConstructor
Douglas Gregor598a8542010-07-01 18:27:03 +00005728 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005729 }
5730 }
5731
5732 // Otherwise, the implicitly declared copy constructor will have
5733 // the form
5734 //
5735 // X::X(X&)
5736 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5737 QualType ArgType = ClassType;
5738 if (HasConstCopyConstructor)
5739 ArgType = ArgType.withConst();
5740 ArgType = Context.getLValueReferenceType(ArgType);
5741
Douglas Gregor0d405db2010-07-01 20:59:04 +00005742 // C++ [except.spec]p14:
5743 // An implicitly declared special member function (Clause 12) shall have an
5744 // exception-specification. [...]
5745 ImplicitExceptionSpecification ExceptSpec(Context);
5746 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5747 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5748 BaseEnd = ClassDecl->bases_end();
5749 Base != BaseEnd;
5750 ++Base) {
5751 // Virtual bases are handled below.
5752 if (Base->isVirtual())
5753 continue;
5754
Douglas Gregor22584312010-07-02 23:41:54 +00005755 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005756 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005757 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5758 DeclareImplicitCopyConstructor(BaseClassDecl);
5759
Douglas Gregor0d405db2010-07-01 20:59:04 +00005760 if (CXXConstructorDecl *CopyConstructor
5761 = BaseClassDecl->getCopyConstructor(Context, Quals))
5762 ExceptSpec.CalledDecl(CopyConstructor);
5763 }
5764 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5765 BaseEnd = ClassDecl->vbases_end();
5766 Base != BaseEnd;
5767 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005768 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005769 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005770 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5771 DeclareImplicitCopyConstructor(BaseClassDecl);
5772
Douglas Gregor0d405db2010-07-01 20:59:04 +00005773 if (CXXConstructorDecl *CopyConstructor
5774 = BaseClassDecl->getCopyConstructor(Context, Quals))
5775 ExceptSpec.CalledDecl(CopyConstructor);
5776 }
5777 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5778 FieldEnd = ClassDecl->field_end();
5779 Field != FieldEnd;
5780 ++Field) {
5781 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5782 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005783 CXXRecordDecl *FieldClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005784 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005785 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5786 DeclareImplicitCopyConstructor(FieldClassDecl);
5787
Douglas Gregor0d405db2010-07-01 20:59:04 +00005788 if (CXXConstructorDecl *CopyConstructor
5789 = FieldClassDecl->getCopyConstructor(Context, Quals))
5790 ExceptSpec.CalledDecl(CopyConstructor);
5791 }
5792 }
5793
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005794 // An implicitly-declared copy constructor is an inline public
5795 // member of its class.
John McCalle23cf432010-12-14 08:05:40 +00005796 FunctionProtoType::ExtProtoInfo EPI;
5797 EPI.HasExceptionSpec = ExceptSpec.hasExceptionSpecification();
5798 EPI.HasAnyExceptionSpec = ExceptSpec.hasAnyExceptionSpecification();
5799 EPI.NumExceptions = ExceptSpec.size();
5800 EPI.Exceptions = ExceptSpec.data();
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005801 DeclarationName Name
5802 = Context.DeclarationNames.getCXXConstructorName(
5803 Context.getCanonicalType(ClassType));
Abramo Bagnara25777432010-08-11 22:01:17 +00005804 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005805 CXXConstructorDecl *CopyConstructor
Abramo Bagnara25777432010-08-11 22:01:17 +00005806 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005807 Context.getFunctionType(Context.VoidTy,
John McCalle23cf432010-12-14 08:05:40 +00005808 &ArgType, 1, EPI),
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005809 /*TInfo=*/0,
5810 /*isExplicit=*/false,
5811 /*isInline=*/true,
5812 /*isImplicitlyDeclared=*/true);
5813 CopyConstructor->setAccess(AS_public);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005814 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5815
Douglas Gregor22584312010-07-02 23:41:54 +00005816 // Note that we have declared this constructor.
Douglas Gregor22584312010-07-02 23:41:54 +00005817 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5818
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005819 // Add the parameter to the constructor.
5820 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5821 ClassDecl->getLocation(),
5822 /*IdentifierInfo=*/0,
5823 ArgType, /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00005824 SC_None,
5825 SC_None, 0);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005826 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor23c94db2010-07-02 17:43:08 +00005827 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00005828 PushOnScopeChains(CopyConstructor, S, false);
5829 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005830
5831 return CopyConstructor;
5832}
5833
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005834void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5835 CXXConstructorDecl *CopyConstructor,
5836 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00005837 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00005838 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005839 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005840 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00005841
Anders Carlsson63010a72010-04-23 16:24:12 +00005842 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005843 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005844
Douglas Gregor39957dc2010-05-01 15:04:51 +00005845 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis9c4eb1f2010-11-19 00:19:12 +00005846 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005847
Sean Huntcbb67482011-01-08 20:30:50 +00005848 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005849 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00005850 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005851 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00005852 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005853 } else {
5854 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5855 CopyConstructor->getLocation(),
5856 MultiStmtArg(*this, 0, 0),
5857 /*isStmtExpr=*/false)
5858 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00005859 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005860
5861 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005862}
5863
John McCall60d7b3a2010-08-24 06:29:42 +00005864ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005865Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00005866 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00005867 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005868 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005869 unsigned ConstructKind,
5870 SourceRange ParenRange) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005871 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005872
Douglas Gregor2f599792010-04-02 18:24:57 +00005873 // C++0x [class.copy]p34:
5874 // When certain criteria are met, an implementation is allowed to
5875 // omit the copy/move construction of a class object, even if the
5876 // copy/move constructor and/or destructor for the object have
5877 // side effects. [...]
5878 // - when a temporary class object that has not been bound to a
5879 // reference (12.2) would be copied/moved to a class object
5880 // with the same cv-unqualified type, the copy/move operation
5881 // can be omitted by constructing the temporary object
5882 // directly into the target of the omitted copy/move
John McCall558d2ab2010-09-15 10:14:12 +00005883 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregor70a21de2011-01-27 23:24:55 +00005884 Constructor->isCopyOrMoveConstructor() && ExprArgs.size() >= 1) {
Douglas Gregor2f599792010-04-02 18:24:57 +00005885 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall558d2ab2010-09-15 10:14:12 +00005886 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005887 }
Mike Stump1eb44332009-09-09 15:08:12 +00005888
5889 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005890 Elidable, move(ExprArgs), RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005891 ConstructKind, ParenRange);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005892}
5893
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005894/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5895/// including handling of its default argument expressions.
John McCall60d7b3a2010-08-24 06:29:42 +00005896ExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005897Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5898 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00005899 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005900 bool RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005901 unsigned ConstructKind,
5902 SourceRange ParenRange) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00005903 unsigned NumExprs = ExprArgs.size();
5904 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00005905
Douglas Gregor7edfb692009-11-23 12:27:39 +00005906 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00005907 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00005908 Constructor, Elidable, Exprs, NumExprs,
John McCall7a1fad32010-08-24 07:32:53 +00005909 RequiresZeroInit,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005910 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
5911 ParenRange));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005912}
5913
Mike Stump1eb44332009-09-09 15:08:12 +00005914bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005915 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005916 MultiExprArg Exprs) {
Chandler Carruth428edaf2010-10-25 08:47:36 +00005917 // FIXME: Provide the correct paren SourceRange when available.
John McCall60d7b3a2010-08-24 06:29:42 +00005918 ExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00005919 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Chandler Carruth428edaf2010-10-25 08:47:36 +00005920 move(Exprs), false, CXXConstructExpr::CK_Complete,
5921 SourceRange());
Anders Carlssonfe2de492009-08-25 05:18:00 +00005922 if (TempResult.isInvalid())
5923 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00005924
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005925 Expr *Temp = TempResult.takeAs<Expr>();
John McCallb4eb64d2010-10-08 02:01:28 +00005926 CheckImplicitConversions(Temp, VD->getLocation());
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005927 MarkDeclarationReferenced(VD->getLocation(), Constructor);
John McCall4765fa02010-12-06 08:20:24 +00005928 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00005929 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00005930
Anders Carlssonfe2de492009-08-25 05:18:00 +00005931 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00005932}
5933
John McCall68c6c9a2010-02-02 09:10:11 +00005934void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5935 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor333de062010-02-25 18:11:54 +00005936 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregorfb2db462010-05-22 17:12:29 +00005937 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregordb89f282010-07-01 22:47:18 +00005938 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall4f9506a2010-02-02 08:45:54 +00005939 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall58e6f342010-03-16 05:22:47 +00005940 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005941 PDiag(diag::err_access_dtor_var)
John McCall58e6f342010-03-16 05:22:47 +00005942 << VD->getDeclName()
5943 << VD->getType());
John McCall626e96e2010-08-01 20:20:59 +00005944
John McCallae792222010-09-18 05:25:11 +00005945 // TODO: this should be re-enabled for static locals by !CXAAtExit
5946 if (!VD->isInvalidDecl() && VD->hasGlobalStorage() && !VD->isStaticLocal())
John McCall626e96e2010-08-01 20:20:59 +00005947 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall4f9506a2010-02-02 08:45:54 +00005948 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005949}
5950
Mike Stump1eb44332009-09-09 15:08:12 +00005951/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005952/// ActOnDeclarator, when a C++ direct initializer is present.
5953/// e.g: "int x(1);"
John McCalld226f652010-08-21 09:40:31 +00005954void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005955 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00005956 MultiExprArg Exprs,
Richard Smith34b41d92011-02-20 03:19:35 +00005957 SourceLocation RParenLoc,
5958 bool TypeMayContainAuto) {
Daniel Dunbar51846262009-12-24 19:19:26 +00005959 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005960
5961 // If there is no declaration, there was an error parsing it. Just ignore
5962 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005963 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005964 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005965
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005966 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5967 if (!VDecl) {
5968 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5969 RealDecl->setInvalidDecl();
5970 return;
5971 }
5972
Richard Smith34b41d92011-02-20 03:19:35 +00005973 // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
5974 if (TypeMayContainAuto && VDecl->getType()->getContainedAutoType()) {
5975 VDecl->setParsingAutoInit(false);
5976
5977 // FIXME: n3225 doesn't actually seem to indicate this is ill-formed
5978 if (Exprs.size() > 1) {
5979 Diag(Exprs.get()[1]->getSourceRange().getBegin(),
5980 diag::err_auto_var_init_multiple_expressions)
5981 << VDecl->getDeclName() << VDecl->getType()
5982 << VDecl->getSourceRange();
5983 RealDecl->setInvalidDecl();
5984 return;
5985 }
5986
5987 Expr *Init = Exprs.get()[0];
5988 QualType DeducedType;
5989 if (!DeduceAutoType(VDecl->getType(), Init, DeducedType)) {
5990 Diag(VDecl->getLocation(), diag::err_auto_var_deduction_failure)
5991 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
5992 << Init->getSourceRange();
5993 RealDecl->setInvalidDecl();
5994 return;
5995 }
5996 VDecl->setType(DeducedType);
5997
5998 // If this is a redeclaration, check that the type we just deduced matches
5999 // the previously declared type.
6000 if (VarDecl *Old = VDecl->getPreviousDeclaration())
6001 MergeVarDeclTypes(VDecl, Old);
6002 }
6003
Douglas Gregor83ddad32009-08-26 21:14:46 +00006004 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00006005 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006006 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
6007 //
6008 // Clients that want to distinguish between the two forms, can check for
6009 // direct initializer using VarDecl::hasCXXDirectInitializer().
6010 // A major benefit is that clients that don't particularly care about which
6011 // exactly form was it (like the CodeGen) can handle both cases without
6012 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006013
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006014 // C++ 8.5p11:
6015 // The form of initialization (using parentheses or '=') is generally
6016 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006017 // class type.
6018
Douglas Gregor4dffad62010-02-11 22:55:30 +00006019 if (!VDecl->getType()->isDependentType() &&
6020 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00006021 diag::err_typecheck_decl_incomplete_type)) {
6022 VDecl->setInvalidDecl();
6023 return;
6024 }
6025
Douglas Gregor90f93822009-12-22 22:17:25 +00006026 // The variable can not have an abstract class type.
6027 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
6028 diag::err_abstract_type_in_decl,
6029 AbstractVariableType))
6030 VDecl->setInvalidDecl();
6031
Sebastian Redl31310a22010-02-01 20:16:42 +00006032 const VarDecl *Def;
6033 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00006034 Diag(VDecl->getLocation(), diag::err_redefinition)
6035 << VDecl->getDeclName();
6036 Diag(Def->getLocation(), diag::note_previous_definition);
6037 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00006038 return;
6039 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00006040
Douglas Gregor3a91abf2010-08-24 05:27:49 +00006041 // C++ [class.static.data]p4
6042 // If a static data member is of const integral or const
6043 // enumeration type, its declaration in the class definition can
6044 // specify a constant-initializer which shall be an integral
6045 // constant expression (5.19). In that case, the member can appear
6046 // in integral constant expressions. The member shall still be
6047 // defined in a namespace scope if it is used in the program and the
6048 // namespace scope definition shall not contain an initializer.
6049 //
6050 // We already performed a redefinition check above, but for static
6051 // data members we also need to check whether there was an in-class
6052 // declaration with an initializer.
6053 const VarDecl* PrevInit = 0;
6054 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
6055 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
6056 Diag(PrevInit->getLocation(), diag::note_previous_definition);
6057 return;
6058 }
6059
Douglas Gregora31040f2010-12-16 01:31:22 +00006060 bool IsDependent = false;
6061 for (unsigned I = 0, N = Exprs.size(); I != N; ++I) {
6062 if (DiagnoseUnexpandedParameterPack(Exprs.get()[I], UPPC_Expression)) {
6063 VDecl->setInvalidDecl();
6064 return;
6065 }
6066
6067 if (Exprs.get()[I]->isTypeDependent())
6068 IsDependent = true;
6069 }
6070
Douglas Gregor4dffad62010-02-11 22:55:30 +00006071 // If either the declaration has a dependent type or if any of the
6072 // expressions is type-dependent, we represent the initialization
6073 // via a ParenListExpr for later use during template instantiation.
Douglas Gregora31040f2010-12-16 01:31:22 +00006074 if (VDecl->getType()->isDependentType() || IsDependent) {
Douglas Gregor4dffad62010-02-11 22:55:30 +00006075 // Let clients know that initialization was done with a direct initializer.
6076 VDecl->setCXXDirectInitializer(true);
6077
6078 // Store the initialization expressions as a ParenListExpr.
6079 unsigned NumExprs = Exprs.size();
6080 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
6081 (Expr **)Exprs.release(),
6082 NumExprs, RParenLoc));
6083 return;
6084 }
Douglas Gregor90f93822009-12-22 22:17:25 +00006085
6086 // Capture the variable that is being initialized and the style of
6087 // initialization.
6088 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
6089
6090 // FIXME: Poor source location information.
6091 InitializationKind Kind
6092 = InitializationKind::CreateDirect(VDecl->getLocation(),
6093 LParenLoc, RParenLoc);
6094
6095 InitializationSequence InitSeq(*this, Entity, Kind,
John McCall9ae2f072010-08-23 23:25:46 +00006096 Exprs.get(), Exprs.size());
John McCall60d7b3a2010-08-24 06:29:42 +00006097 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregor90f93822009-12-22 22:17:25 +00006098 if (Result.isInvalid()) {
6099 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006100 return;
6101 }
John McCallb4eb64d2010-10-08 02:01:28 +00006102
6103 CheckImplicitConversions(Result.get(), LParenLoc);
Douglas Gregor90f93822009-12-22 22:17:25 +00006104
Douglas Gregor53c374f2010-12-07 00:41:46 +00006105 Result = MaybeCreateExprWithCleanups(Result);
Douglas Gregor838db382010-02-11 01:19:42 +00006106 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006107 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00006108
John McCall2998d6b2011-01-19 11:48:09 +00006109 CheckCompleteVariableDeclaration(VDecl);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00006110}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00006111
Douglas Gregor39da0b82009-09-09 23:08:42 +00006112/// \brief Given a constructor and the set of arguments provided for the
6113/// constructor, convert the arguments and add any required default arguments
6114/// to form a proper call to this constructor.
6115///
6116/// \returns true if an error occurred, false otherwise.
6117bool
6118Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
6119 MultiExprArg ArgsPtr,
6120 SourceLocation Loc,
John McCallca0408f2010-08-23 06:44:23 +00006121 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00006122 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
6123 unsigned NumArgs = ArgsPtr.size();
6124 Expr **Args = (Expr **)ArgsPtr.get();
6125
6126 const FunctionProtoType *Proto
6127 = Constructor->getType()->getAs<FunctionProtoType>();
6128 assert(Proto && "Constructor without a prototype?");
6129 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00006130
6131 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006132 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00006133 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006134 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00006135 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00006136
6137 VariadicCallType CallType =
6138 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
6139 llvm::SmallVector<Expr *, 8> AllArgs;
6140 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
6141 Proto, 0, Args, NumArgs, AllArgs,
6142 CallType);
6143 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
6144 ConvertedArgs.push_back(AllArgs[i]);
6145 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00006146}
6147
Anders Carlsson20d45d22009-12-12 00:32:00 +00006148static inline bool
6149CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
6150 const FunctionDecl *FnDecl) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00006151 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlsson20d45d22009-12-12 00:32:00 +00006152 if (isa<NamespaceDecl>(DC)) {
6153 return SemaRef.Diag(FnDecl->getLocation(),
6154 diag::err_operator_new_delete_declared_in_namespace)
6155 << FnDecl->getDeclName();
6156 }
6157
6158 if (isa<TranslationUnitDecl>(DC) &&
John McCalld931b082010-08-26 03:08:43 +00006159 FnDecl->getStorageClass() == SC_Static) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00006160 return SemaRef.Diag(FnDecl->getLocation(),
6161 diag::err_operator_new_delete_declared_static)
6162 << FnDecl->getDeclName();
6163 }
6164
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00006165 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00006166}
6167
Anders Carlsson156c78e2009-12-13 17:53:43 +00006168static inline bool
6169CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
6170 CanQualType ExpectedResultType,
6171 CanQualType ExpectedFirstParamType,
6172 unsigned DependentParamTypeDiag,
6173 unsigned InvalidParamTypeDiag) {
6174 QualType ResultType =
6175 FnDecl->getType()->getAs<FunctionType>()->getResultType();
6176
6177 // Check that the result type is not dependent.
6178 if (ResultType->isDependentType())
6179 return SemaRef.Diag(FnDecl->getLocation(),
6180 diag::err_operator_new_delete_dependent_result_type)
6181 << FnDecl->getDeclName() << ExpectedResultType;
6182
6183 // Check that the result type is what we expect.
6184 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
6185 return SemaRef.Diag(FnDecl->getLocation(),
6186 diag::err_operator_new_delete_invalid_result_type)
6187 << FnDecl->getDeclName() << ExpectedResultType;
6188
6189 // A function template must have at least 2 parameters.
6190 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
6191 return SemaRef.Diag(FnDecl->getLocation(),
6192 diag::err_operator_new_delete_template_too_few_parameters)
6193 << FnDecl->getDeclName();
6194
6195 // The function decl must have at least 1 parameter.
6196 if (FnDecl->getNumParams() == 0)
6197 return SemaRef.Diag(FnDecl->getLocation(),
6198 diag::err_operator_new_delete_too_few_parameters)
6199 << FnDecl->getDeclName();
6200
6201 // Check the the first parameter type is not dependent.
6202 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
6203 if (FirstParamType->isDependentType())
6204 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
6205 << FnDecl->getDeclName() << ExpectedFirstParamType;
6206
6207 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00006208 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00006209 ExpectedFirstParamType)
6210 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
6211 << FnDecl->getDeclName() << ExpectedFirstParamType;
6212
6213 return false;
6214}
6215
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006216static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00006217CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00006218 // C++ [basic.stc.dynamic.allocation]p1:
6219 // A program is ill-formed if an allocation function is declared in a
6220 // namespace scope other than global scope or declared static in global
6221 // scope.
6222 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6223 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00006224
6225 CanQualType SizeTy =
6226 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
6227
6228 // C++ [basic.stc.dynamic.allocation]p1:
6229 // The return type shall be void*. The first parameter shall have type
6230 // std::size_t.
6231 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
6232 SizeTy,
6233 diag::err_operator_new_dependent_param_type,
6234 diag::err_operator_new_param_type))
6235 return true;
6236
6237 // C++ [basic.stc.dynamic.allocation]p1:
6238 // The first parameter shall not have an associated default argument.
6239 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00006240 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00006241 diag::err_operator_new_default_arg)
6242 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
6243
6244 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00006245}
6246
6247static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006248CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
6249 // C++ [basic.stc.dynamic.deallocation]p1:
6250 // A program is ill-formed if deallocation functions are declared in a
6251 // namespace scope other than global scope or declared static in global
6252 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00006253 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
6254 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006255
6256 // C++ [basic.stc.dynamic.deallocation]p2:
6257 // Each deallocation function shall return void and its first parameter
6258 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00006259 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
6260 SemaRef.Context.VoidPtrTy,
6261 diag::err_operator_delete_dependent_param_type,
6262 diag::err_operator_delete_param_type))
6263 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006264
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006265 return false;
6266}
6267
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006268/// CheckOverloadedOperatorDeclaration - Check whether the declaration
6269/// of this overloaded operator is well-formed. If so, returns false;
6270/// otherwise, emits appropriate diagnostics and returns true.
6271bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006272 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006273 "Expected an overloaded operator declaration");
6274
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006275 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
6276
Mike Stump1eb44332009-09-09 15:08:12 +00006277 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006278 // The allocation and deallocation functions, operator new,
6279 // operator new[], operator delete and operator delete[], are
6280 // described completely in 3.7.3. The attributes and restrictions
6281 // found in the rest of this subclause do not apply to them unless
6282 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00006283 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00006284 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00006285
Anders Carlssona3ccda52009-12-12 00:26:23 +00006286 if (Op == OO_New || Op == OO_Array_New)
6287 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006288
6289 // C++ [over.oper]p6:
6290 // An operator function shall either be a non-static member
6291 // function or be a non-member function and have at least one
6292 // parameter whose type is a class, a reference to a class, an
6293 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006294 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
6295 if (MethodDecl->isStatic())
6296 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006297 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006298 } else {
6299 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006300 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
6301 ParamEnd = FnDecl->param_end();
6302 Param != ParamEnd; ++Param) {
6303 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00006304 if (ParamType->isDependentType() || ParamType->isRecordType() ||
6305 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006306 ClassOrEnumParam = true;
6307 break;
6308 }
6309 }
6310
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006311 if (!ClassOrEnumParam)
6312 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006313 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006314 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006315 }
6316
6317 // C++ [over.oper]p8:
6318 // An operator function cannot have default arguments (8.3.6),
6319 // except where explicitly stated below.
6320 //
Mike Stump1eb44332009-09-09 15:08:12 +00006321 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006322 // (C++ [over.call]p1).
6323 if (Op != OO_Call) {
6324 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
6325 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00006326 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00006327 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00006328 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00006329 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006330 }
6331 }
6332
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006333 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
6334 { false, false, false }
6335#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
6336 , { Unary, Binary, MemberOnly }
6337#include "clang/Basic/OperatorKinds.def"
6338 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006339
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006340 bool CanBeUnaryOperator = OperatorUses[Op][0];
6341 bool CanBeBinaryOperator = OperatorUses[Op][1];
6342 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006343
6344 // C++ [over.oper]p8:
6345 // [...] Operator functions cannot have more or fewer parameters
6346 // than the number required for the corresponding operator, as
6347 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00006348 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006349 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006350 if (Op != OO_Call &&
6351 ((NumParams == 1 && !CanBeUnaryOperator) ||
6352 (NumParams == 2 && !CanBeBinaryOperator) ||
6353 (NumParams < 1) || (NumParams > 2))) {
6354 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00006355 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006356 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00006357 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006358 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00006359 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006360 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00006361 assert(CanBeBinaryOperator &&
6362 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00006363 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00006364 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006365
Chris Lattner416e46f2008-11-21 07:57:12 +00006366 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006367 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006368 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00006369
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006370 // Overloaded operators other than operator() cannot be variadic.
6371 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00006372 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006373 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006374 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006375 }
6376
6377 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006378 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
6379 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00006380 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006381 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006382 }
6383
6384 // C++ [over.inc]p1:
6385 // The user-defined function called operator++ implements the
6386 // prefix and postfix ++ operator. If this function is a member
6387 // function with no parameters, or a non-member function with one
6388 // parameter of class or enumeration type, it defines the prefix
6389 // increment operator ++ for objects of that type. If the function
6390 // is a member function with one parameter (which shall be of type
6391 // int) or a non-member function with two parameters (the second
6392 // of which shall be of type int), it defines the postfix
6393 // increment operator ++ for objects of that type.
6394 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
6395 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
6396 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00006397 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006398 ParamIsInt = BT->getKind() == BuiltinType::Int;
6399
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00006400 if (!ParamIsInt)
6401 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00006402 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00006403 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006404 }
6405
Douglas Gregor43c7bad2008-11-17 16:14:12 +00006406 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00006407}
Chris Lattner5a003a42008-12-17 07:09:26 +00006408
Sean Hunta6c058d2010-01-13 09:01:02 +00006409/// CheckLiteralOperatorDeclaration - Check whether the declaration
6410/// of this literal operator function is well-formed. If so, returns
6411/// false; otherwise, emits appropriate diagnostics and returns true.
6412bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
6413 DeclContext *DC = FnDecl->getDeclContext();
6414 Decl::Kind Kind = DC->getDeclKind();
6415 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
6416 Kind != Decl::LinkageSpec) {
6417 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
6418 << FnDecl->getDeclName();
6419 return true;
6420 }
6421
6422 bool Valid = false;
6423
Sean Hunt216c2782010-04-07 23:11:06 +00006424 // template <char...> type operator "" name() is the only valid template
6425 // signature, and the only valid signature with no parameters.
6426 if (FnDecl->param_size() == 0) {
6427 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
6428 // Must have only one template parameter
6429 TemplateParameterList *Params = TpDecl->getTemplateParameters();
6430 if (Params->size() == 1) {
6431 NonTypeTemplateParmDecl *PmDecl =
6432 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00006433
Sean Hunt216c2782010-04-07 23:11:06 +00006434 // The template parameter must be a char parameter pack.
Sean Hunt216c2782010-04-07 23:11:06 +00006435 if (PmDecl && PmDecl->isTemplateParameterPack() &&
6436 Context.hasSameType(PmDecl->getType(), Context.CharTy))
6437 Valid = true;
6438 }
6439 }
6440 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00006441 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00006442 FunctionDecl::param_iterator Param = FnDecl->param_begin();
6443
Sean Hunta6c058d2010-01-13 09:01:02 +00006444 QualType T = (*Param)->getType();
6445
Sean Hunt30019c02010-04-07 22:57:35 +00006446 // unsigned long long int, long double, and any character type are allowed
6447 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00006448 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
6449 Context.hasSameType(T, Context.LongDoubleTy) ||
6450 Context.hasSameType(T, Context.CharTy) ||
6451 Context.hasSameType(T, Context.WCharTy) ||
6452 Context.hasSameType(T, Context.Char16Ty) ||
6453 Context.hasSameType(T, Context.Char32Ty)) {
6454 if (++Param == FnDecl->param_end())
6455 Valid = true;
6456 goto FinishedParams;
6457 }
6458
Sean Hunt30019c02010-04-07 22:57:35 +00006459 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00006460 const PointerType *PT = T->getAs<PointerType>();
6461 if (!PT)
6462 goto FinishedParams;
6463 T = PT->getPointeeType();
6464 if (!T.isConstQualified())
6465 goto FinishedParams;
6466 T = T.getUnqualifiedType();
6467
6468 // Move on to the second parameter;
6469 ++Param;
6470
6471 // If there is no second parameter, the first must be a const char *
6472 if (Param == FnDecl->param_end()) {
6473 if (Context.hasSameType(T, Context.CharTy))
6474 Valid = true;
6475 goto FinishedParams;
6476 }
6477
6478 // const char *, const wchar_t*, const char16_t*, and const char32_t*
6479 // are allowed as the first parameter to a two-parameter function
6480 if (!(Context.hasSameType(T, Context.CharTy) ||
6481 Context.hasSameType(T, Context.WCharTy) ||
6482 Context.hasSameType(T, Context.Char16Ty) ||
6483 Context.hasSameType(T, Context.Char32Ty)))
6484 goto FinishedParams;
6485
6486 // The second and final parameter must be an std::size_t
6487 T = (*Param)->getType().getUnqualifiedType();
6488 if (Context.hasSameType(T, Context.getSizeType()) &&
6489 ++Param == FnDecl->param_end())
6490 Valid = true;
6491 }
6492
6493 // FIXME: This diagnostic is absolutely terrible.
6494FinishedParams:
6495 if (!Valid) {
6496 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6497 << FnDecl->getDeclName();
6498 return true;
6499 }
6500
6501 return false;
6502}
6503
Douglas Gregor074149e2009-01-05 19:45:36 +00006504/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6505/// linkage specification, including the language and (if present)
6506/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6507/// the location of the language string literal, which is provided
6508/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6509/// the '{' brace. Otherwise, this linkage specification does not
6510/// have any braces.
Chris Lattner7d642712010-11-09 20:15:55 +00006511Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
6512 SourceLocation LangLoc,
6513 llvm::StringRef Lang,
6514 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00006515 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00006516 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00006517 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00006518 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00006519 Language = LinkageSpecDecl::lang_cxx;
6520 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00006521 Diag(LangLoc, diag::err_bad_language);
John McCalld226f652010-08-21 09:40:31 +00006522 return 0;
Chris Lattnercc98eac2008-12-17 07:13:27 +00006523 }
Mike Stump1eb44332009-09-09 15:08:12 +00006524
Chris Lattnercc98eac2008-12-17 07:13:27 +00006525 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00006526
Douglas Gregor074149e2009-01-05 19:45:36 +00006527 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00006528 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00006529 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006530 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00006531 PushDeclContext(S, D);
John McCalld226f652010-08-21 09:40:31 +00006532 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00006533}
6534
Abramo Bagnara35f9a192010-07-30 16:47:02 +00006535/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00006536/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6537/// valid, it's the position of the closing '}' brace in a linkage
6538/// specification that uses braces.
John McCalld226f652010-08-21 09:40:31 +00006539Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6540 Decl *LinkageSpec,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006541 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00006542 if (LinkageSpec)
6543 PopDeclContext();
6544 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00006545}
6546
Douglas Gregord308e622009-05-18 20:51:54 +00006547/// \brief Perform semantic analysis for the variable declaration that
6548/// occurs within a C++ catch clause, returning the newly-created
6549/// variable.
Douglas Gregor83cb9422010-09-09 17:09:21 +00006550VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCalla93c9342009-12-07 02:54:59 +00006551 TypeSourceInfo *TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00006552 IdentifierInfo *Name,
Douglas Gregor83cb9422010-09-09 17:09:21 +00006553 SourceLocation Loc) {
Douglas Gregord308e622009-05-18 20:51:54 +00006554 bool Invalid = false;
Douglas Gregor83cb9422010-09-09 17:09:21 +00006555 QualType ExDeclType = TInfo->getType();
6556
Sebastian Redl4b07b292008-12-22 19:15:10 +00006557 // Arrays and functions decay.
6558 if (ExDeclType->isArrayType())
6559 ExDeclType = Context.getArrayDecayedType(ExDeclType);
6560 else if (ExDeclType->isFunctionType())
6561 ExDeclType = Context.getPointerType(ExDeclType);
6562
6563 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6564 // The exception-declaration shall not denote a pointer or reference to an
6565 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006566 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00006567 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor83cb9422010-09-09 17:09:21 +00006568 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006569 Invalid = true;
6570 }
Douglas Gregord308e622009-05-18 20:51:54 +00006571
Douglas Gregora2762912010-03-08 01:47:36 +00006572 // GCC allows catching pointers and references to incomplete types
6573 // as an extension; so do we, but we warn by default.
6574
Sebastian Redl4b07b292008-12-22 19:15:10 +00006575 QualType BaseType = ExDeclType;
6576 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00006577 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00006578 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00006579 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006580 BaseType = Ptr->getPointeeType();
6581 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00006582 DK = diag::ext_catch_incomplete_ptr;
6583 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00006584 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006585 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006586 BaseType = Ref->getPointeeType();
6587 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00006588 DK = diag::ext_catch_incomplete_ref;
6589 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006590 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00006591 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00006592 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6593 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00006594 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006595
Mike Stump1eb44332009-09-09 15:08:12 +00006596 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00006597 RequireNonAbstractType(Loc, ExDeclType,
6598 diag::err_abstract_type_in_decl,
6599 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00006600 Invalid = true;
6601
John McCall5a180392010-07-24 00:37:23 +00006602 // Only the non-fragile NeXT runtime currently supports C++ catches
6603 // of ObjC types, and no runtime supports catching ObjC types by value.
6604 if (!Invalid && getLangOptions().ObjC1) {
6605 QualType T = ExDeclType;
6606 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6607 T = RT->getPointeeType();
6608
6609 if (T->isObjCObjectType()) {
6610 Diag(Loc, diag::err_objc_object_catch);
6611 Invalid = true;
6612 } else if (T->isObjCObjectPointerType()) {
6613 if (!getLangOptions().NeXTRuntime) {
6614 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6615 Invalid = true;
6616 } else if (!getLangOptions().ObjCNonFragileABI) {
6617 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6618 Invalid = true;
6619 }
6620 }
6621 }
6622
Mike Stump1eb44332009-09-09 15:08:12 +00006623 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
John McCalld931b082010-08-26 03:08:43 +00006624 Name, ExDeclType, TInfo, SC_None,
6625 SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00006626 ExDecl->setExceptionVariable(true);
6627
Douglas Gregor6d182892010-03-05 23:38:39 +00006628 if (!Invalid) {
John McCalle996ffd2011-02-16 08:02:54 +00006629 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6d182892010-03-05 23:38:39 +00006630 // C++ [except.handle]p16:
6631 // The object declared in an exception-declaration or, if the
6632 // exception-declaration does not specify a name, a temporary (12.2) is
6633 // copy-initialized (8.5) from the exception object. [...]
6634 // The object is destroyed when the handler exits, after the destruction
6635 // of any automatic objects initialized within the handler.
6636 //
6637 // We just pretend to initialize the object with itself, then make sure
6638 // it can be destroyed later.
John McCalle996ffd2011-02-16 08:02:54 +00006639 QualType initType = ExDeclType;
6640
6641 InitializedEntity entity =
6642 InitializedEntity::InitializeVariable(ExDecl);
6643 InitializationKind initKind =
6644 InitializationKind::CreateCopy(Loc, SourceLocation());
6645
6646 Expr *opaqueValue =
6647 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
6648 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
6649 ExprResult result = sequence.Perform(*this, entity, initKind,
6650 MultiExprArg(&opaqueValue, 1));
6651 if (result.isInvalid())
Douglas Gregor6d182892010-03-05 23:38:39 +00006652 Invalid = true;
John McCalle996ffd2011-02-16 08:02:54 +00006653 else {
6654 // If the constructor used was non-trivial, set this as the
6655 // "initializer".
6656 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
6657 if (!construct->getConstructor()->isTrivial()) {
6658 Expr *init = MaybeCreateExprWithCleanups(construct);
6659 ExDecl->setInit(init);
6660 }
6661
6662 // And make sure it's destructable.
6663 FinalizeVarWithDestructor(ExDecl, recordType);
6664 }
Douglas Gregor6d182892010-03-05 23:38:39 +00006665 }
6666 }
6667
Douglas Gregord308e622009-05-18 20:51:54 +00006668 if (Invalid)
6669 ExDecl->setInvalidDecl();
6670
6671 return ExDecl;
6672}
6673
6674/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6675/// handler.
John McCalld226f652010-08-21 09:40:31 +00006676Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00006677 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregora669c532010-12-16 17:48:04 +00006678 bool Invalid = D.isInvalidType();
6679
6680 // Check for unexpanded parameter packs.
6681 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
6682 UPPC_ExceptionType)) {
6683 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
6684 D.getIdentifierLoc());
6685 Invalid = true;
6686 }
6687
Sebastian Redl4b07b292008-12-22 19:15:10 +00006688 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00006689 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00006690 LookupOrdinaryName,
6691 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006692 // The scope should be freshly made just for us. There is just no way
6693 // it contains any previous declaration.
John McCalld226f652010-08-21 09:40:31 +00006694 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl4b07b292008-12-22 19:15:10 +00006695 if (PrevDecl->isTemplateParameter()) {
6696 // Maybe we will complain about the shadowed template parameter.
6697 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006698 }
6699 }
6700
Chris Lattnereaaebc72009-04-25 08:06:05 +00006701 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006702 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6703 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00006704 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006705 }
6706
Douglas Gregor83cb9422010-09-09 17:09:21 +00006707 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00006708 D.getIdentifier(),
Douglas Gregor83cb9422010-09-09 17:09:21 +00006709 D.getIdentifierLoc());
Douglas Gregord308e622009-05-18 20:51:54 +00006710
Chris Lattnereaaebc72009-04-25 08:06:05 +00006711 if (Invalid)
6712 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00006713
Sebastian Redl4b07b292008-12-22 19:15:10 +00006714 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006715 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00006716 PushOnScopeChains(ExDecl, S);
6717 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006718 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006719
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00006720 ProcessDeclAttributes(S, ExDecl, D);
John McCalld226f652010-08-21 09:40:31 +00006721 return ExDecl;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006722}
Anders Carlssonfb311762009-03-14 00:25:26 +00006723
John McCalld226f652010-08-21 09:40:31 +00006724Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
John McCall9ae2f072010-08-23 23:25:46 +00006725 Expr *AssertExpr,
6726 Expr *AssertMessageExpr_) {
6727 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlssonfb311762009-03-14 00:25:26 +00006728
Anders Carlssonc3082412009-03-14 00:33:21 +00006729 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6730 llvm::APSInt Value(32);
6731 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6732 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6733 AssertExpr->getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00006734 return 0;
Anders Carlssonc3082412009-03-14 00:33:21 +00006735 }
Anders Carlssonfb311762009-03-14 00:25:26 +00006736
Anders Carlssonc3082412009-03-14 00:33:21 +00006737 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00006738 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00006739 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00006740 }
6741 }
Mike Stump1eb44332009-09-09 15:08:12 +00006742
Douglas Gregor399ad972010-12-15 23:55:21 +00006743 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
6744 return 0;
6745
Mike Stump1eb44332009-09-09 15:08:12 +00006746 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00006747 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00006748
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006749 CurContext->addDecl(Decl);
John McCalld226f652010-08-21 09:40:31 +00006750 return Decl;
Anders Carlssonfb311762009-03-14 00:25:26 +00006751}
Sebastian Redl50de12f2009-03-24 22:27:57 +00006752
Douglas Gregor1d869352010-04-07 16:53:43 +00006753/// \brief Perform semantic analysis of the given friend type declaration.
6754///
6755/// \returns A friend declaration that.
6756FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6757 TypeSourceInfo *TSInfo) {
6758 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6759
6760 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00006761 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00006762
Douglas Gregor06245bf2010-04-07 17:57:12 +00006763 if (!getLangOptions().CPlusPlus0x) {
6764 // C++03 [class.friend]p2:
6765 // An elaborated-type-specifier shall be used in a friend declaration
6766 // for a class.*
6767 //
6768 // * The class-key of the elaborated-type-specifier is required.
6769 if (!ActiveTemplateInstantiations.empty()) {
6770 // Do not complain about the form of friend template types during
6771 // template instantiation; we will already have complained when the
6772 // template was declared.
6773 } else if (!T->isElaboratedTypeSpecifier()) {
6774 // If we evaluated the type to a record type, suggest putting
6775 // a tag in front.
6776 if (const RecordType *RT = T->getAs<RecordType>()) {
6777 RecordDecl *RD = RT->getDecl();
6778
6779 std::string InsertionText = std::string(" ") + RD->getKindName();
6780
6781 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6782 << (unsigned) RD->getTagKind()
6783 << T
6784 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6785 InsertionText);
6786 } else {
6787 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6788 << T
6789 << SourceRange(FriendLoc, TypeRange.getEnd());
6790 }
6791 } else if (T->getAs<EnumType>()) {
6792 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00006793 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00006794 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00006795 }
6796 }
6797
Douglas Gregor06245bf2010-04-07 17:57:12 +00006798 // C++0x [class.friend]p3:
6799 // If the type specifier in a friend declaration designates a (possibly
6800 // cv-qualified) class type, that class is declared as a friend; otherwise,
6801 // the friend declaration is ignored.
6802
6803 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6804 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00006805
6806 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6807}
6808
John McCall9a34edb2010-10-19 01:40:49 +00006809/// Handle a friend tag declaration where the scope specifier was
6810/// templated.
6811Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
6812 unsigned TagSpec, SourceLocation TagLoc,
6813 CXXScopeSpec &SS,
6814 IdentifierInfo *Name, SourceLocation NameLoc,
6815 AttributeList *Attr,
6816 MultiTemplateParamsArg TempParamLists) {
6817 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6818
6819 bool isExplicitSpecialization = false;
6820 unsigned NumMatchedTemplateParamLists = TempParamLists.size();
6821 bool Invalid = false;
6822
6823 if (TemplateParameterList *TemplateParams
6824 = MatchTemplateParametersToScopeSpecifier(TagLoc, SS,
6825 TempParamLists.get(),
6826 TempParamLists.size(),
6827 /*friend*/ true,
6828 isExplicitSpecialization,
6829 Invalid)) {
6830 --NumMatchedTemplateParamLists;
6831
6832 if (TemplateParams->size() > 0) {
6833 // This is a declaration of a class template.
6834 if (Invalid)
6835 return 0;
6836
6837 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
6838 SS, Name, NameLoc, Attr,
6839 TemplateParams, AS_public).take();
6840 } else {
6841 // The "template<>" header is extraneous.
6842 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
6843 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
6844 isExplicitSpecialization = true;
6845 }
6846 }
6847
6848 if (Invalid) return 0;
6849
6850 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
6851
6852 bool isAllExplicitSpecializations = true;
6853 for (unsigned I = 0; I != NumMatchedTemplateParamLists; ++I) {
6854 if (TempParamLists.get()[I]->size()) {
6855 isAllExplicitSpecializations = false;
6856 break;
6857 }
6858 }
6859
6860 // FIXME: don't ignore attributes.
6861
6862 // If it's explicit specializations all the way down, just forget
6863 // about the template header and build an appropriate non-templated
6864 // friend. TODO: for source fidelity, remember the headers.
6865 if (isAllExplicitSpecializations) {
6866 ElaboratedTypeKeyword Keyword
6867 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
6868 QualType T = CheckTypenameType(Keyword, SS.getScopeRep(), *Name,
6869 TagLoc, SS.getRange(), NameLoc);
6870 if (T.isNull())
6871 return 0;
6872
6873 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6874 if (isa<DependentNameType>(T)) {
6875 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
6876 TL.setKeywordLoc(TagLoc);
6877 TL.setQualifierRange(SS.getRange());
6878 TL.setNameLoc(NameLoc);
6879 } else {
6880 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
6881 TL.setKeywordLoc(TagLoc);
6882 TL.setQualifierRange(SS.getRange());
6883 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
6884 }
6885
6886 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
6887 TSI, FriendLoc);
6888 Friend->setAccess(AS_public);
6889 CurContext->addDecl(Friend);
6890 return Friend;
6891 }
6892
6893 // Handle the case of a templated-scope friend class. e.g.
6894 // template <class T> class A<T>::B;
6895 // FIXME: we don't support these right now.
6896 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
6897 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
6898 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6899 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
6900 TL.setKeywordLoc(TagLoc);
6901 TL.setQualifierRange(SS.getRange());
6902 TL.setNameLoc(NameLoc);
6903
6904 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
6905 TSI, FriendLoc);
6906 Friend->setAccess(AS_public);
6907 Friend->setUnsupportedFriend(true);
6908 CurContext->addDecl(Friend);
6909 return Friend;
6910}
6911
6912
John McCalldd4a3b02009-09-16 22:47:08 +00006913/// Handle a friend type declaration. This works in tandem with
6914/// ActOnTag.
6915///
6916/// Notes on friend class templates:
6917///
6918/// We generally treat friend class declarations as if they were
6919/// declaring a class. So, for example, the elaborated type specifier
6920/// in a friend declaration is required to obey the restrictions of a
6921/// class-head (i.e. no typedefs in the scope chain), template
6922/// parameters are required to match up with simple template-ids, &c.
6923/// However, unlike when declaring a template specialization, it's
6924/// okay to refer to a template specialization without an empty
6925/// template parameter declaration, e.g.
6926/// friend class A<T>::B<unsigned>;
6927/// We permit this as a special case; if there are any template
6928/// parameters present at all, require proper matching, i.e.
6929/// template <> template <class T> friend class A<int>::B;
John McCalld226f652010-08-21 09:40:31 +00006930Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallbe04b6d2010-10-16 07:23:36 +00006931 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00006932 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00006933
6934 assert(DS.isFriendSpecified());
6935 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6936
John McCalldd4a3b02009-09-16 22:47:08 +00006937 // Try to convert the decl specifier to a type. This works for
6938 // friend templates because ActOnTag never produces a ClassTemplateDecl
6939 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00006940 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00006941 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6942 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00006943 if (TheDeclarator.isInvalidType())
John McCalld226f652010-08-21 09:40:31 +00006944 return 0;
John McCall67d1a672009-08-06 02:15:43 +00006945
Douglas Gregor6ccab972010-12-16 01:14:37 +00006946 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
6947 return 0;
6948
John McCalldd4a3b02009-09-16 22:47:08 +00006949 // This is definitely an error in C++98. It's probably meant to
6950 // be forbidden in C++0x, too, but the specification is just
6951 // poorly written.
6952 //
6953 // The problem is with declarations like the following:
6954 // template <T> friend A<T>::foo;
6955 // where deciding whether a class C is a friend or not now hinges
6956 // on whether there exists an instantiation of A that causes
6957 // 'foo' to equal C. There are restrictions on class-heads
6958 // (which we declare (by fiat) elaborated friend declarations to
6959 // be) that makes this tractable.
6960 //
6961 // FIXME: handle "template <> friend class A<T>;", which
6962 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00006963 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00006964 Diag(Loc, diag::err_tagless_friend_type_template)
6965 << DS.getSourceRange();
John McCalld226f652010-08-21 09:40:31 +00006966 return 0;
John McCalldd4a3b02009-09-16 22:47:08 +00006967 }
Douglas Gregor1d869352010-04-07 16:53:43 +00006968
John McCall02cace72009-08-28 07:59:38 +00006969 // C++98 [class.friend]p1: A friend of a class is a function
6970 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00006971 // This is fixed in DR77, which just barely didn't make the C++03
6972 // deadline. It's also a very silly restriction that seriously
6973 // affects inner classes and which nobody else seems to implement;
6974 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00006975 //
6976 // But note that we could warn about it: it's always useless to
6977 // friend one of your own members (it's not, however, worthless to
6978 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00006979
John McCalldd4a3b02009-09-16 22:47:08 +00006980 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00006981 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00006982 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00006983 NumTempParamLists,
John McCallbe04b6d2010-10-16 07:23:36 +00006984 TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00006985 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00006986 DS.getFriendSpecLoc());
6987 else
Douglas Gregor1d869352010-04-07 16:53:43 +00006988 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6989
6990 if (!D)
John McCalld226f652010-08-21 09:40:31 +00006991 return 0;
Douglas Gregor1d869352010-04-07 16:53:43 +00006992
John McCalldd4a3b02009-09-16 22:47:08 +00006993 D->setAccess(AS_public);
6994 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00006995
John McCalld226f652010-08-21 09:40:31 +00006996 return D;
John McCall02cace72009-08-28 07:59:38 +00006997}
6998
John McCall337ec3d2010-10-12 23:13:28 +00006999Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
7000 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00007001 const DeclSpec &DS = D.getDeclSpec();
7002
7003 assert(DS.isFriendSpecified());
7004 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
7005
7006 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00007007 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
7008 QualType T = TInfo->getType();
John McCall67d1a672009-08-06 02:15:43 +00007009
7010 // C++ [class.friend]p1
7011 // A friend of a class is a function or class....
7012 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00007013 // It *doesn't* see through dependent types, which is correct
7014 // according to [temp.arg.type]p3:
7015 // If a declaration acquires a function type through a
7016 // type dependent on a template-parameter and this causes
7017 // a declaration that does not use the syntactic form of a
7018 // function declarator to have a function type, the program
7019 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00007020 if (!T->isFunctionType()) {
7021 Diag(Loc, diag::err_unexpected_friend);
7022
7023 // It might be worthwhile to try to recover by creating an
7024 // appropriate declaration.
John McCalld226f652010-08-21 09:40:31 +00007025 return 0;
John McCall67d1a672009-08-06 02:15:43 +00007026 }
7027
7028 // C++ [namespace.memdef]p3
7029 // - If a friend declaration in a non-local class first declares a
7030 // class or function, the friend class or function is a member
7031 // of the innermost enclosing namespace.
7032 // - The name of the friend is not found by simple name lookup
7033 // until a matching declaration is provided in that namespace
7034 // scope (either before or after the class declaration granting
7035 // friendship).
7036 // - If a friend function is called, its name may be found by the
7037 // name lookup that considers functions from namespaces and
7038 // classes associated with the types of the function arguments.
7039 // - When looking for a prior declaration of a class or a function
7040 // declared as a friend, scopes outside the innermost enclosing
7041 // namespace scope are not considered.
7042
John McCall337ec3d2010-10-12 23:13:28 +00007043 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnara25777432010-08-11 22:01:17 +00007044 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7045 DeclarationName Name = NameInfo.getName();
John McCall67d1a672009-08-06 02:15:43 +00007046 assert(Name);
7047
Douglas Gregor6ccab972010-12-16 01:14:37 +00007048 // Check for unexpanded parameter packs.
7049 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
7050 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
7051 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
7052 return 0;
7053
John McCall67d1a672009-08-06 02:15:43 +00007054 // The context we found the declaration in, or in which we should
7055 // create the declaration.
7056 DeclContext *DC;
John McCall380aaa42010-10-13 06:22:15 +00007057 Scope *DCScope = S;
Abramo Bagnara25777432010-08-11 22:01:17 +00007058 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00007059 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00007060
John McCall337ec3d2010-10-12 23:13:28 +00007061 // FIXME: there are different rules in local classes
John McCall67d1a672009-08-06 02:15:43 +00007062
John McCall337ec3d2010-10-12 23:13:28 +00007063 // There are four cases here.
7064 // - There's no scope specifier, in which case we just go to the
John McCall29ae6e52010-10-13 05:45:15 +00007065 // appropriate scope and look for a function or function template
John McCall337ec3d2010-10-12 23:13:28 +00007066 // there as appropriate.
7067 // Recover from invalid scope qualifiers as if they just weren't there.
7068 if (SS.isInvalid() || !SS.isSet()) {
John McCall29ae6e52010-10-13 05:45:15 +00007069 // C++0x [namespace.memdef]p3:
7070 // If the name in a friend declaration is neither qualified nor
7071 // a template-id and the declaration is a function or an
7072 // elaborated-type-specifier, the lookup to determine whether
7073 // the entity has been previously declared shall not consider
7074 // any scopes outside the innermost enclosing namespace.
7075 // C++0x [class.friend]p11:
7076 // If a friend declaration appears in a local class and the name
7077 // specified is an unqualified name, a prior declaration is
7078 // looked up without considering scopes that are outside the
7079 // innermost enclosing non-class scope. For a friend function
7080 // declaration, if there is no prior declaration, the program is
7081 // ill-formed.
7082 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCall8a407372010-10-14 22:22:28 +00007083 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall67d1a672009-08-06 02:15:43 +00007084
John McCall29ae6e52010-10-13 05:45:15 +00007085 // Find the appropriate context according to the above.
John McCall67d1a672009-08-06 02:15:43 +00007086 DC = CurContext;
7087 while (true) {
7088 // Skip class contexts. If someone can cite chapter and verse
7089 // for this behavior, that would be nice --- it's what GCC and
7090 // EDG do, and it seems like a reasonable intent, but the spec
7091 // really only says that checks for unqualified existing
7092 // declarations should stop at the nearest enclosing namespace,
7093 // not that they should only consider the nearest enclosing
7094 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00007095 while (DC->isRecord())
7096 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00007097
John McCall68263142009-11-18 22:49:29 +00007098 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00007099
7100 // TODO: decide what we think about using declarations.
John McCall29ae6e52010-10-13 05:45:15 +00007101 if (isLocal || !Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00007102 break;
John McCall29ae6e52010-10-13 05:45:15 +00007103
John McCall8a407372010-10-14 22:22:28 +00007104 if (isTemplateId) {
7105 if (isa<TranslationUnitDecl>(DC)) break;
7106 } else {
7107 if (DC->isFileContext()) break;
7108 }
John McCall67d1a672009-08-06 02:15:43 +00007109 DC = DC->getParent();
7110 }
7111
7112 // C++ [class.friend]p1: A friend of a class is a function or
7113 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00007114 // C++0x changes this for both friend types and functions.
7115 // Most C++ 98 compilers do seem to give an error here, so
7116 // we do, too.
John McCall68263142009-11-18 22:49:29 +00007117 if (!Previous.empty() && DC->Equals(CurContext)
7118 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00007119 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
John McCall337ec3d2010-10-12 23:13:28 +00007120
John McCall380aaa42010-10-13 06:22:15 +00007121 DCScope = getScopeForDeclContext(S, DC);
John McCall29ae6e52010-10-13 05:45:15 +00007122
John McCall337ec3d2010-10-12 23:13:28 +00007123 // - There's a non-dependent scope specifier, in which case we
7124 // compute it and do a previous lookup there for a function
7125 // or function template.
7126 } else if (!SS.getScopeRep()->isDependent()) {
7127 DC = computeDeclContext(SS);
7128 if (!DC) return 0;
7129
7130 if (RequireCompleteDeclContext(SS, DC)) return 0;
7131
7132 LookupQualifiedName(Previous, DC);
7133
7134 // Ignore things found implicitly in the wrong scope.
7135 // TODO: better diagnostics for this case. Suggesting the right
7136 // qualified scope would be nice...
7137 LookupResult::Filter F = Previous.makeFilter();
7138 while (F.hasNext()) {
7139 NamedDecl *D = F.next();
7140 if (!DC->InEnclosingNamespaceSetOf(
7141 D->getDeclContext()->getRedeclContext()))
7142 F.erase();
7143 }
7144 F.done();
7145
7146 if (Previous.empty()) {
7147 D.setInvalidType();
7148 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
7149 return 0;
7150 }
7151
7152 // C++ [class.friend]p1: A friend of a class is a function or
7153 // class that is not a member of the class . . .
7154 if (DC->Equals(CurContext))
7155 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
7156
7157 // - There's a scope specifier that does not match any template
7158 // parameter lists, in which case we use some arbitrary context,
7159 // create a method or method template, and wait for instantiation.
7160 // - There's a scope specifier that does match some template
7161 // parameter lists, which we don't handle right now.
7162 } else {
7163 DC = CurContext;
7164 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall67d1a672009-08-06 02:15:43 +00007165 }
7166
John McCall29ae6e52010-10-13 05:45:15 +00007167 if (!DC->isRecord()) {
John McCall67d1a672009-08-06 02:15:43 +00007168 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00007169 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
7170 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
7171 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00007172 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00007173 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
7174 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCalld226f652010-08-21 09:40:31 +00007175 return 0;
John McCall67d1a672009-08-06 02:15:43 +00007176 }
John McCall67d1a672009-08-06 02:15:43 +00007177 }
7178
Douglas Gregor182ddf02009-09-28 00:08:27 +00007179 bool Redeclaration = false;
John McCall380aaa42010-10-13 06:22:15 +00007180 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00007181 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00007182 IsDefinition,
7183 Redeclaration);
John McCalld226f652010-08-21 09:40:31 +00007184 if (!ND) return 0;
John McCallab88d972009-08-31 22:39:49 +00007185
Douglas Gregor182ddf02009-09-28 00:08:27 +00007186 assert(ND->getDeclContext() == DC);
7187 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00007188
John McCallab88d972009-08-31 22:39:49 +00007189 // Add the function declaration to the appropriate lookup tables,
7190 // adjusting the redeclarations list as necessary. We don't
7191 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00007192 //
John McCallab88d972009-08-31 22:39:49 +00007193 // Also update the scope-based lookup if the target context's
7194 // lookup context is in lexical scope.
7195 if (!CurContext->isDependentContext()) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00007196 DC = DC->getRedeclContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00007197 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00007198 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00007199 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00007200 }
John McCall02cace72009-08-28 07:59:38 +00007201
7202 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00007203 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00007204 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00007205 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00007206 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00007207
John McCall337ec3d2010-10-12 23:13:28 +00007208 if (ND->isInvalidDecl())
7209 FrD->setInvalidDecl();
John McCall6102ca12010-10-16 06:59:13 +00007210 else {
7211 FunctionDecl *FD;
7212 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
7213 FD = FTD->getTemplatedDecl();
7214 else
7215 FD = cast<FunctionDecl>(ND);
7216
7217 // Mark templated-scope function declarations as unsupported.
7218 if (FD->getNumTemplateParameterLists())
7219 FrD->setUnsupportedFriend(true);
7220 }
John McCall337ec3d2010-10-12 23:13:28 +00007221
John McCalld226f652010-08-21 09:40:31 +00007222 return ND;
Anders Carlsson00338362009-05-11 22:55:49 +00007223}
7224
John McCalld226f652010-08-21 09:40:31 +00007225void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
7226 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00007227
Sebastian Redl50de12f2009-03-24 22:27:57 +00007228 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
7229 if (!Fn) {
7230 Diag(DelLoc, diag::err_deleted_non_function);
7231 return;
7232 }
7233 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
7234 Diag(DelLoc, diag::err_deleted_decl_not_first);
7235 Diag(Prev->getLocation(), diag::note_previous_declaration);
7236 // If the declaration wasn't the first, we delete the function anyway for
7237 // recovery.
7238 }
7239 Fn->setDeleted();
7240}
Sebastian Redl13e88542009-04-27 21:33:24 +00007241
7242static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall7502c1d2011-02-13 04:07:26 +00007243 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl13e88542009-04-27 21:33:24 +00007244 Stmt *SubStmt = *CI;
7245 if (!SubStmt)
7246 continue;
7247 if (isa<ReturnStmt>(SubStmt))
7248 Self.Diag(SubStmt->getSourceRange().getBegin(),
7249 diag::err_return_in_constructor_handler);
7250 if (!isa<Expr>(SubStmt))
7251 SearchForReturnInStmt(Self, SubStmt);
7252 }
7253}
7254
7255void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
7256 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
7257 CXXCatchStmt *Handler = TryBlock->getHandler(I);
7258 SearchForReturnInStmt(*this, Handler);
7259 }
7260}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007261
Mike Stump1eb44332009-09-09 15:08:12 +00007262bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007263 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00007264 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
7265 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007266
Chandler Carruth73857792010-02-15 11:53:20 +00007267 if (Context.hasSameType(NewTy, OldTy) ||
7268 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007269 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00007270
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007271 // Check if the return types are covariant
7272 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00007273
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007274 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007275 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
7276 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007277 NewClassTy = NewPT->getPointeeType();
7278 OldClassTy = OldPT->getPointeeType();
7279 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007280 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
7281 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
7282 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
7283 NewClassTy = NewRT->getPointeeType();
7284 OldClassTy = OldRT->getPointeeType();
7285 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007286 }
7287 }
Mike Stump1eb44332009-09-09 15:08:12 +00007288
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007289 // The return types aren't either both pointers or references to a class type.
7290 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00007291 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007292 diag::err_different_return_type_for_overriding_virtual_function)
7293 << New->getDeclName() << NewTy << OldTy;
7294 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00007295
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007296 return true;
7297 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007298
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007299 // C++ [class.virtual]p6:
7300 // If the return type of D::f differs from the return type of B::f, the
7301 // class type in the return type of D::f shall be complete at the point of
7302 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00007303 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
7304 if (!RT->isBeingDefined() &&
7305 RequireCompleteType(New->getLocation(), NewClassTy,
7306 PDiag(diag::err_covariant_return_incomplete)
7307 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007308 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00007309 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00007310
Douglas Gregora4923eb2009-11-16 21:35:15 +00007311 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007312 // Check if the new class derives from the old class.
7313 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
7314 Diag(New->getLocation(),
7315 diag::err_covariant_return_not_derived)
7316 << New->getDeclName() << NewTy << OldTy;
7317 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7318 return true;
7319 }
Mike Stump1eb44332009-09-09 15:08:12 +00007320
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007321 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00007322 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00007323 diag::err_covariant_return_inaccessible_base,
7324 diag::err_covariant_return_ambiguous_derived_to_base_conv,
7325 // FIXME: Should this point to the return type?
7326 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCalleee1d542011-02-14 07:13:47 +00007327 // FIXME: this note won't trigger for delayed access control
7328 // diagnostics, and it's impossible to get an undelayed error
7329 // here from access control during the original parse because
7330 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007331 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7332 return true;
7333 }
7334 }
Mike Stump1eb44332009-09-09 15:08:12 +00007335
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007336 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00007337 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007338 Diag(New->getLocation(),
7339 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007340 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007341 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7342 return true;
7343 };
Mike Stump1eb44332009-09-09 15:08:12 +00007344
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007345
7346 // The new class type must have the same or less qualifiers as the old type.
7347 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
7348 Diag(New->getLocation(),
7349 diag::err_covariant_return_type_class_type_more_qualified)
7350 << New->getDeclName() << NewTy << OldTy;
7351 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
7352 return true;
7353 };
Mike Stump1eb44332009-09-09 15:08:12 +00007354
Anders Carlssonc3a68b22009-05-14 19:52:19 +00007355 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00007356}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007357
Douglas Gregor4ba31362009-12-01 17:24:26 +00007358/// \brief Mark the given method pure.
7359///
7360/// \param Method the method to be marked pure.
7361///
7362/// \param InitRange the source range that covers the "0" initializer.
7363bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
7364 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
7365 Method->setPure();
Douglas Gregor4ba31362009-12-01 17:24:26 +00007366 return false;
7367 }
7368
7369 if (!Method->isInvalidDecl())
7370 Diag(Method->getLocation(), diag::err_non_virtual_pure)
7371 << Method->getDeclName() << InitRange;
7372 return true;
7373}
7374
John McCall731ad842009-12-19 09:28:58 +00007375/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
7376/// an initializer for the out-of-line declaration 'Dcl'. The scope
7377/// is a fresh scope pushed for just this purpose.
7378///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007379/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
7380/// static data member of class X, names should be looked up in the scope of
7381/// class X.
John McCalld226f652010-08-21 09:40:31 +00007382void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007383 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00007384 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007385
John McCall731ad842009-12-19 09:28:58 +00007386 // We should only get called for declarations with scope specifiers, like:
7387 // int foo::bar;
7388 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00007389 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007390}
7391
7392/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCalld226f652010-08-21 09:40:31 +00007393/// initializer for the out-of-line declaration 'D'.
7394void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007395 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00007396 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007397
John McCall731ad842009-12-19 09:28:58 +00007398 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00007399 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00007400}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007401
7402/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
7403/// C++ if/switch/while/for statement.
7404/// e.g: "if (int x = f()) {...}"
John McCalld226f652010-08-21 09:40:31 +00007405DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007406 // C++ 6.4p2:
7407 // The declarator shall not specify a function or an array.
7408 // The type-specifier-seq shall not contain typedef and shall not declare a
7409 // new class or enumeration.
7410 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
7411 "Parser allowed 'typedef' as storage class of condition decl.");
7412
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007413 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00007414 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
7415 QualType Ty = TInfo->getType();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007416
7417 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
7418 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
7419 // would be created and CXXConditionDeclExpr wants a VarDecl.
7420 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
7421 << D.getSourceRange();
7422 return DeclResult();
7423 } else if (OwnedTag && OwnedTag->isDefinition()) {
7424 // The type-specifier-seq shall not declare a new class or enumeration.
7425 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
7426 }
7427
John McCalld226f652010-08-21 09:40:31 +00007428 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007429 if (!Dcl)
7430 return DeclResult();
7431
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00007432 return Dcl;
7433}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007434
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007435void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
7436 bool DefinitionRequired) {
7437 // Ignore any vtable uses in unevaluated operands or for classes that do
7438 // not have a vtable.
7439 if (!Class->isDynamicClass() || Class->isDependentContext() ||
7440 CurContext->isDependentContext() ||
7441 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00007442 return;
7443
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007444 // Try to insert this class into the map.
7445 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7446 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
7447 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
7448 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00007449 // If we already had an entry, check to see if we are promoting this vtable
7450 // to required a definition. If so, we need to reappend to the VTableUses
7451 // list, since we may have already processed the first entry.
7452 if (DefinitionRequired && !Pos.first->second) {
7453 Pos.first->second = true;
7454 } else {
7455 // Otherwise, we can early exit.
7456 return;
7457 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007458 }
7459
7460 // Local classes need to have their virtual members marked
7461 // immediately. For all other classes, we mark their virtual members
7462 // at the end of the translation unit.
7463 if (Class->isLocalClass())
7464 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00007465 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007466 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00007467}
7468
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007469bool Sema::DefineUsedVTables() {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007470 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00007471 return false;
Chandler Carruthaee543a2010-12-12 21:36:11 +00007472
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007473 // Note: The VTableUses vector could grow as a result of marking
7474 // the members of a class as "used", so we check the size each
7475 // time through the loop and prefer indices (with are stable) to
7476 // iterators (which are not).
7477 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00007478 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007479 if (!Class)
7480 continue;
7481
7482 SourceLocation Loc = VTableUses[I].second;
7483
7484 // If this class has a key function, but that key function is
7485 // defined in another translation unit, we don't need to emit the
7486 // vtable even though we're using it.
7487 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00007488 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007489 switch (KeyFunction->getTemplateSpecializationKind()) {
7490 case TSK_Undeclared:
7491 case TSK_ExplicitSpecialization:
7492 case TSK_ExplicitInstantiationDeclaration:
7493 // The key function is in another translation unit.
7494 continue;
7495
7496 case TSK_ExplicitInstantiationDefinition:
7497 case TSK_ImplicitInstantiation:
7498 // We will be instantiating the key function.
7499 break;
7500 }
7501 } else if (!KeyFunction) {
7502 // If we have a class with no key function that is the subject
7503 // of an explicit instantiation declaration, suppress the
7504 // vtable; it will live with the explicit instantiation
7505 // definition.
7506 bool IsExplicitInstantiationDeclaration
7507 = Class->getTemplateSpecializationKind()
7508 == TSK_ExplicitInstantiationDeclaration;
7509 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
7510 REnd = Class->redecls_end();
7511 R != REnd; ++R) {
7512 TemplateSpecializationKind TSK
7513 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
7514 if (TSK == TSK_ExplicitInstantiationDeclaration)
7515 IsExplicitInstantiationDeclaration = true;
7516 else if (TSK == TSK_ExplicitInstantiationDefinition) {
7517 IsExplicitInstantiationDeclaration = false;
7518 break;
7519 }
7520 }
7521
7522 if (IsExplicitInstantiationDeclaration)
7523 continue;
7524 }
7525
7526 // Mark all of the virtual members of this class as referenced, so
7527 // that we can build a vtable. Then, tell the AST consumer that a
7528 // vtable for this class is required.
7529 MarkVirtualMembersReferenced(Loc, Class);
7530 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
7531 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
7532
7533 // Optionally warn if we're emitting a weak vtable.
7534 if (Class->getLinkage() == ExternalLinkage &&
7535 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00007536 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007537 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
7538 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007539 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00007540 VTableUses.clear();
7541
Anders Carlssond6a637f2009-12-07 08:24:59 +00007542 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00007543}
Anders Carlssond6a637f2009-12-07 08:24:59 +00007544
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007545void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
7546 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00007547 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
7548 e = RD->method_end(); i != e; ++i) {
7549 CXXMethodDecl *MD = *i;
7550
7551 // C++ [basic.def.odr]p2:
7552 // [...] A virtual member function is used if it is not pure. [...]
7553 if (MD->isVirtual() && !MD->isPure())
7554 MarkDeclarationReferenced(Loc, MD);
7555 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007556
7557 // Only classes that have virtual bases need a VTT.
7558 if (RD->getNumVBases() == 0)
7559 return;
7560
7561 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
7562 e = RD->bases_end(); i != e; ++i) {
7563 const CXXRecordDecl *Base =
7564 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +00007565 if (Base->getNumVBases() == 0)
7566 continue;
7567 MarkVirtualMembersReferenced(Loc, Base);
7568 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00007569}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007570
7571/// SetIvarInitializers - This routine builds initialization ASTs for the
7572/// Objective-C implementation whose ivars need be initialized.
7573void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
7574 if (!getLangOptions().CPlusPlus)
7575 return;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00007576 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007577 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
7578 CollectIvarsToConstructOrDestruct(OID, ivars);
7579 if (ivars.empty())
7580 return;
Sean Huntcbb67482011-01-08 20:30:50 +00007581 llvm::SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007582 for (unsigned i = 0; i < ivars.size(); i++) {
7583 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007584 if (Field->isInvalidDecl())
7585 continue;
7586
Sean Huntcbb67482011-01-08 20:30:50 +00007587 CXXCtorInitializer *Member;
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007588 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
7589 InitializationKind InitKind =
7590 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
7591
7592 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCall60d7b3a2010-08-24 06:29:42 +00007593 ExprResult MemberInit =
John McCallf312b1e2010-08-26 23:41:50 +00007594 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregor53c374f2010-12-07 00:41:46 +00007595 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007596 // Note, MemberInit could actually come back empty if no initialization
7597 // is required (e.g., because it would call a trivial default constructor)
7598 if (!MemberInit.get() || MemberInit.isInvalid())
7599 continue;
John McCallb4eb64d2010-10-08 02:01:28 +00007600
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007601 Member =
Sean Huntcbb67482011-01-08 20:30:50 +00007602 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
7603 SourceLocation(),
7604 MemberInit.takeAs<Expr>(),
7605 SourceLocation());
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007606 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007607
7608 // Be sure that the destructor is accessible and is marked as referenced.
7609 if (const RecordType *RecordTy
7610 = Context.getBaseElementType(Field->getType())
7611 ->getAs<RecordType>()) {
7612 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +00007613 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00007614 MarkDeclarationReferenced(Field->getLocation(), Destructor);
7615 CheckDestructorAccess(Field->getLocation(), Destructor,
7616 PDiag(diag::err_access_dtor_ivar)
7617 << Context.getBaseElementType(Field->getType()));
7618 }
7619 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00007620 }
7621 ObjCImplementation->setIvarInitializers(Context,
7622 AllToInit.data(), AllToInit.size());
7623 }
7624}