blob: 77f604a65361113b47975aa266211ede7055d271 [file] [log] [blame]
Chris Lattner199abbc2008-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 McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCallcc14d1f2010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000019#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000020#include "clang/AST/ASTContext.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000021#include "clang/AST/CharUnits.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000022#include "clang/AST/CXXInheritance.h"
Anders Carlssonb5a27b42009-03-24 01:19:16 +000023#include "clang/AST/DeclVisitor.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000024#include "clang/AST/RecordLayout.h"
25#include "clang/AST/StmtVisitor.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
John McCall8b0666c2010-08-20 18:27:03 +000028#include "clang/Sema/DeclSpec.h"
29#include "clang/Sema/ParsedTemplate.h"
Anders Carlssond624e162009-08-26 23:45:07 +000030#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000031#include "clang/Lex/Preprocessor.h"
John McCalla1e130b2010-08-25 07:03:20 +000032#include "llvm/ADT/DenseSet.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000033#include "llvm/ADT/STLExtras.h"
Douglas Gregor29a92472008-10-22 17:49:05 +000034#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000035#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000036
37using namespace clang;
38
Chris Lattner58258242008-04-10 02:22:51 +000039//===----------------------------------------------------------------------===//
40// CheckDefaultArgumentVisitor
41//===----------------------------------------------------------------------===//
42
Chris Lattnerb0d38442008-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 Kramer337e3a52009-11-28 19:45:26 +000049 class CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000050 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000051 Expr *DefaultArg;
52 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000053
Chris Lattnerb0d38442008-04-12 23:52:44 +000054 public:
Mike Stump11289f42009-09-09 15:08:12 +000055 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000056 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000057
Chris Lattnerb0d38442008-04-12 23:52:44 +000058 bool VisitExpr(Expr *Node);
59 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000060 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000061 };
Chris Lattner58258242008-04-10 02:22:51 +000062
Chris Lattnerb0d38442008-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;
Mike Stump11289f42009-09-09 15:08:12 +000066 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattner574dee62008-07-26 22:17:49 +000067 E = Node->child_end(); I != E; ++I)
68 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000069 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000070 }
71
Chris Lattnerb0d38442008-04-12 23:52:44 +000072 /// VisitDeclRefExpr - Visit a reference to a declaration, to
73 /// determine whether this declaration can be used in the default
74 /// argument expression.
75 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +000076 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-04-12 23:52:44 +000077 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
78 // C++ [dcl.fct.default]p9
79 // Default arguments are evaluated each time the function is
80 // called. The order of evaluation of function arguments is
81 // unspecified. Consequently, parameters of a function shall not
82 // be used in default argument expressions, even if they are not
83 // evaluated. Parameters of a function declared before a default
84 // argument expression are in scope and can hide namespace and
85 // class member names.
Mike Stump11289f42009-09-09 15:08:12 +000086 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000087 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000088 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000089 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000090 // C++ [dcl.fct.default]p7
91 // Local variables shall not be used in default argument
92 // expressions.
John McCall1c9c3fd2010-10-15 04:57:14 +000093 if (VDecl->isLocalVarDecl())
Mike Stump11289f42009-09-09 15:08:12 +000094 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000095 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +000096 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +000097 }
Chris Lattner58258242008-04-10 02:22:51 +000098
Douglas Gregor8e12c382008-11-04 13:41:56 +000099 return false;
100 }
Chris Lattnerb0d38442008-04-12 23:52:44 +0000101
Douglas Gregor97a9c812008-11-04 14:32:21 +0000102 /// VisitCXXThisExpr - Visit a C++ "this" expression.
103 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
104 // C++ [dcl.fct.default]p8:
105 // The keyword this shall not be used in a default argument of a
106 // member function.
107 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000108 diag::err_param_default_argument_references_this)
109 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000110 }
Chris Lattner58258242008-04-10 02:22:51 +0000111}
112
Anders Carlssonc80a1272009-08-25 02:29:20 +0000113bool
John McCallb268a282010-08-23 23:25:46 +0000114Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump11289f42009-09-09 15:08:12 +0000115 SourceLocation EqualLoc) {
Anders Carlsson114056f2009-08-25 13:46:13 +0000116 if (RequireCompleteType(Param->getLocation(), Param->getType(),
117 diag::err_typecheck_decl_incomplete_type)) {
118 Param->setInvalidDecl();
119 return true;
120 }
121
Anders Carlssonc80a1272009-08-25 02:29:20 +0000122 // C++ [dcl.fct.default]p5
123 // A default argument expression is implicitly converted (clause
124 // 4) to the parameter type. The default argument expression has
125 // the same semantic constraints as the initializer expression in
126 // a declaration of a variable of the parameter type, using the
127 // copy-initialization semantics (8.5).
Fariborz Jahanian8fb87ae2010-09-24 17:30:16 +0000128 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
129 Param);
Douglas Gregor85dabae2009-12-16 01:38:02 +0000130 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
131 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000132 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCalldadc5752010-08-24 06:29:42 +0000133 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +0000134 MultiExprArg(*this, &Arg, 1));
Eli Friedman5f101b92009-12-22 02:46:13 +0000135 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000136 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000137 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000138
John McCallacf0ee52010-10-08 02:01:28 +0000139 CheckImplicitConversions(Arg, EqualLoc);
Anders Carlsson6e997b22009-12-15 20:51:39 +0000140 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000141
Anders Carlssonc80a1272009-08-25 02:29:20 +0000142 // Okay: add the default argument to the parameter
143 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000144
Douglas Gregor758cb672010-10-12 18:23:32 +0000145 // We have already instantiated this parameter; provide each of the
146 // instantiations with the uninstantiated default argument.
147 UnparsedDefaultArgInstantiationsMap::iterator InstPos
148 = UnparsedDefaultArgInstantiations.find(Param);
149 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
150 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
151 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
152
153 // We're done tracking this parameter's instantiations.
154 UnparsedDefaultArgInstantiations.erase(InstPos);
155 }
156
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000157 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000158}
159
Chris Lattner58258242008-04-10 02:22:51 +0000160/// ActOnParamDefaultArgument - Check whether the default argument
161/// provided for a function parameter is well-formed. If so, attach it
162/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000163void
John McCall48871652010-08-21 09:40:31 +0000164Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000165 Expr *DefaultArg) {
166 if (!param || !DefaultArg)
Douglas Gregor71a57182009-06-22 23:20:33 +0000167 return;
Mike Stump11289f42009-09-09 15:08:12 +0000168
John McCall48871652010-08-21 09:40:31 +0000169 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000170 UnparsedDefaultArgLocs.erase(Param);
171
Chris Lattner199abbc2008-04-08 05:04:30 +0000172 // Default arguments are only permitted in C++
173 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000174 Diag(EqualLoc, diag::err_param_default_argument)
175 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000176 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000177 return;
178 }
179
Anders Carlssonf1c26952009-08-25 01:02:06 +0000180 // Check that the default argument is well-formed
John McCallb268a282010-08-23 23:25:46 +0000181 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
182 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlssonf1c26952009-08-25 01:02:06 +0000183 Param->setInvalidDecl();
184 return;
185 }
Mike Stump11289f42009-09-09 15:08:12 +0000186
John McCallb268a282010-08-23 23:25:46 +0000187 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000188}
189
Douglas Gregor58354032008-12-24 00:01:03 +0000190/// ActOnParamUnparsedDefaultArgument - We've seen a default
191/// argument for a function parameter, but we can't parse it yet
192/// because we're inside a class definition. Note that this default
193/// argument will be parsed later.
John McCall48871652010-08-21 09:40:31 +0000194void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000195 SourceLocation EqualLoc,
196 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000197 if (!param)
198 return;
Mike Stump11289f42009-09-09 15:08:12 +0000199
John McCall48871652010-08-21 09:40:31 +0000200 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor58354032008-12-24 00:01:03 +0000201 if (Param)
202 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000203
Anders Carlsson84613c42009-06-12 16:51:40 +0000204 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000205}
206
Douglas Gregor4d87df52008-12-16 21:30:33 +0000207/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
208/// the default argument for the parameter param failed.
John McCall48871652010-08-21 09:40:31 +0000209void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000210 if (!param)
211 return;
Mike Stump11289f42009-09-09 15:08:12 +0000212
John McCall48871652010-08-21 09:40:31 +0000213 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump11289f42009-09-09 15:08:12 +0000214
Anders Carlsson84613c42009-06-12 16:51:40 +0000215 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000216
Anders Carlsson84613c42009-06-12 16:51:40 +0000217 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000218}
219
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000220/// CheckExtraCXXDefaultArguments - Check for any extra default
221/// arguments in the declarator, which is not a function declaration
222/// or definition and therefore is not permitted to have default
223/// arguments. This routine should be invoked for every declarator
224/// that is not a function declaration or definition.
225void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
226 // C++ [dcl.fct.default]p3
227 // A default argument expression shall be specified only in the
228 // parameter-declaration-clause of a function declaration or in a
229 // template-parameter (14.1). It shall not be specified for a
230 // parameter pack. If it is specified in a
231 // parameter-declaration-clause, it shall not occur within a
232 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000233 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000234 DeclaratorChunk &chunk = D.getTypeObject(i);
235 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000236 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
237 ParmVarDecl *Param =
John McCall48871652010-08-21 09:40:31 +0000238 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor58354032008-12-24 00:01:03 +0000239 if (Param->hasUnparsedDefaultArg()) {
240 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000241 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
242 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
243 delete Toks;
244 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000245 } else if (Param->getDefaultArg()) {
246 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
247 << Param->getDefaultArg()->getSourceRange();
248 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000249 }
250 }
251 }
252 }
253}
254
Chris Lattner199abbc2008-04-08 05:04:30 +0000255// MergeCXXFunctionDecl - Merge two declarations of the same C++
256// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000257// type. Subroutine of MergeFunctionDecl. Returns true if there was an
258// error, false otherwise.
259bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
260 bool Invalid = false;
261
Chris Lattner199abbc2008-04-08 05:04:30 +0000262 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000263 // For non-template functions, default arguments can be added in
264 // later declarations of a function in the same
265 // scope. Declarations in different scopes have completely
266 // distinct sets of default arguments. That is, declarations in
267 // inner scopes do not acquire default arguments from
268 // declarations in outer scopes, and vice versa. In a given
269 // function declaration, all parameters subsequent to a
270 // parameter with a default argument shall have default
271 // arguments supplied in this or previous declarations. A
272 // default argument shall not be redefined by a later
273 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000274 //
275 // C++ [dcl.fct.default]p6:
276 // Except for member functions of class templates, the default arguments
277 // in a member function definition that appears outside of the class
278 // definition are added to the set of default arguments provided by the
279 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000280 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
281 ParmVarDecl *OldParam = Old->getParamDecl(p);
282 ParmVarDecl *NewParam = New->getParamDecl(p);
283
Douglas Gregorc732aba2009-09-11 18:44:32 +0000284 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor08dc5842010-01-13 00:12:48 +0000285 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
286 // hint here. Alternatively, we could walk the type-source information
287 // for NewParam to find the last source location in the type... but it
288 // isn't worth the effort right now. This is the kind of test case that
289 // is hard to get right:
290
291 // int f(int);
292 // void g(int (*fp)(int) = f);
293 // void g(int (*fp)(int) = &f);
Mike Stump11289f42009-09-09 15:08:12 +0000294 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000295 diag::err_param_default_argument_redefinition)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000296 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000297
298 // Look for the function declaration where the default argument was
299 // actually written, which may be a declaration prior to Old.
300 for (FunctionDecl *Older = Old->getPreviousDeclaration();
301 Older; Older = Older->getPreviousDeclaration()) {
302 if (!Older->getParamDecl(p)->hasDefaultArg())
303 break;
304
305 OldParam = Older->getParamDecl(p);
306 }
307
308 Diag(OldParam->getLocation(), diag::note_previous_definition)
309 << OldParam->getDefaultArgRange();
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000310 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000311 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000312 // Merge the old default argument into the new parameter.
313 // It's important to use getInit() here; getDefaultArg()
314 // strips off any top-level CXXExprWithTemporaries.
John McCallf3cd6652010-03-12 18:31:32 +0000315 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000316 if (OldParam->hasUninstantiatedDefaultArg())
317 NewParam->setUninstantiatedDefaultArg(
318 OldParam->getUninstantiatedDefaultArg());
319 else
John McCalle61b02b2010-05-04 01:53:42 +0000320 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000321 } else if (NewParam->hasDefaultArg()) {
322 if (New->getDescribedFunctionTemplate()) {
323 // Paragraph 4, quoted above, only applies to non-template functions.
324 Diag(NewParam->getLocation(),
325 diag::err_param_default_argument_template_redecl)
326 << NewParam->getDefaultArgRange();
327 Diag(Old->getLocation(), diag::note_template_prev_declaration)
328 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000329 } else if (New->getTemplateSpecializationKind()
330 != TSK_ImplicitInstantiation &&
331 New->getTemplateSpecializationKind() != TSK_Undeclared) {
332 // C++ [temp.expr.spec]p21:
333 // Default function arguments shall not be specified in a declaration
334 // or a definition for one of the following explicit specializations:
335 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000336 // - the explicit specialization of a member function template;
337 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000338 // template where the class template specialization to which the
339 // member function specialization belongs is implicitly
340 // instantiated.
341 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
342 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
343 << New->getDeclName()
344 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000345 } else if (New->getDeclContext()->isDependentContext()) {
346 // C++ [dcl.fct.default]p6 (DR217):
347 // Default arguments for a member function of a class template shall
348 // be specified on the initial declaration of the member function
349 // within the class template.
350 //
351 // Reading the tea leaves a bit in DR217 and its reference to DR205
352 // leads me to the conclusion that one cannot add default function
353 // arguments for an out-of-line definition of a member function of a
354 // dependent type.
355 int WhichKind = 2;
356 if (CXXRecordDecl *Record
357 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
358 if (Record->getDescribedClassTemplate())
359 WhichKind = 0;
360 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
361 WhichKind = 1;
362 else
363 WhichKind = 2;
364 }
365
366 Diag(NewParam->getLocation(),
367 diag::err_param_default_argument_member_template_redecl)
368 << WhichKind
369 << NewParam->getDefaultArgRange();
370 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000371 }
372 }
373
Douglas Gregorf40863c2010-02-12 07:32:17 +0000374 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000375 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000376
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000377 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000378}
379
380/// CheckCXXDefaultArguments - Verify that the default arguments for a
381/// function declaration are well-formed according to C++
382/// [dcl.fct.default].
383void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
384 unsigned NumParams = FD->getNumParams();
385 unsigned p;
386
387 // Find first parameter with a default argument
388 for (p = 0; p < NumParams; ++p) {
389 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000390 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000391 break;
392 }
393
394 // C++ [dcl.fct.default]p4:
395 // In a given function declaration, all parameters
396 // subsequent to a parameter with a default argument shall
397 // have default arguments supplied in this or previous
398 // declarations. A default argument shall not be redefined
399 // by a later declaration (not even to the same value).
400 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000401 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000402 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000403 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000404 if (Param->isInvalidDecl())
405 /* We already complained about this parameter. */;
406 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000407 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000408 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000409 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000410 else
Mike Stump11289f42009-09-09 15:08:12 +0000411 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000412 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000413
Chris Lattner199abbc2008-04-08 05:04:30 +0000414 LastMissingDefaultArg = p;
415 }
416 }
417
418 if (LastMissingDefaultArg > 0) {
419 // Some default arguments were missing. Clear out all of the
420 // default arguments up to (and including) the last missing
421 // default argument, so that we leave the function parameters
422 // in a semantically valid state.
423 for (p = 0; p <= LastMissingDefaultArg; ++p) {
424 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000425 if (Param->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000426 Param->setDefaultArg(0);
427 }
428 }
429 }
430}
Douglas Gregor556877c2008-04-13 21:30:24 +0000431
Douglas Gregor61956c42008-10-31 09:07:45 +0000432/// isCurrentClassName - Determine whether the identifier II is the
433/// name of the class type currently being defined. In the case of
434/// nested classes, this will only return true if II is the name of
435/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000436bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
437 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000438 assert(getLangOptions().CPlusPlus && "No class names in C!");
439
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000440 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000441 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000442 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000443 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
444 } else
445 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
446
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000447 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000448 return &II == CurDecl->getIdentifier();
449 else
450 return false;
451}
452
Mike Stump11289f42009-09-09 15:08:12 +0000453/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000454///
455/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
456/// and returns NULL otherwise.
457CXXBaseSpecifier *
458Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
459 SourceRange SpecifierRange,
460 bool Virtual, AccessSpecifier Access,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000461 TypeSourceInfo *TInfo) {
462 QualType BaseType = TInfo->getType();
463
Douglas Gregor463421d2009-03-03 04:44:36 +0000464 // C++ [class.union]p1:
465 // A union shall not have base classes.
466 if (Class->isUnion()) {
467 Diag(Class->getLocation(), diag::err_base_clause_on_union)
468 << SpecifierRange;
469 return 0;
470 }
471
472 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000473 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000474 Class->getTagKind() == TTK_Class,
475 Access, TInfo);
476
477 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor463421d2009-03-03 04:44:36 +0000478
479 // Base specifiers must be record types.
480 if (!BaseType->isRecordType()) {
481 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
482 return 0;
483 }
484
485 // C++ [class.union]p1:
486 // A union shall not be used as a base class.
487 if (BaseType->isUnionType()) {
488 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
489 return 0;
490 }
491
492 // C++ [class.derived]p2:
493 // The class-name in a base-specifier shall not be an incompletely
494 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000495 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000496 PDiag(diag::err_incomplete_base_class)
John McCall3696dcb2010-08-17 07:23:57 +0000497 << SpecifierRange)) {
498 Class->setInvalidDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000499 return 0;
John McCall3696dcb2010-08-17 07:23:57 +0000500 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000501
Eli Friedmanc96d4962009-08-15 21:55:26 +0000502 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000503 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000504 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000505 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000506 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000507 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
508 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000509
Alexis Hunt96d5c762009-11-21 08:43:09 +0000510 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
511 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
512 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregore7488b92009-12-01 16:58:18 +0000513 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
514 << BaseType;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000515 return 0;
516 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000517
John McCall3696dcb2010-08-17 07:23:57 +0000518 if (BaseDecl->isInvalidDecl())
519 Class->setInvalidDecl();
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000520
521 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000522 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000523 Class->getTagKind() == TTK_Class,
524 Access, TInfo);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000525}
526
Douglas Gregor556877c2008-04-13 21:30:24 +0000527/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
528/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +0000529/// example:
530/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000531/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallfaf5fb42010-08-26 23:41:50 +0000532BaseResult
John McCall48871652010-08-21 09:40:31 +0000533Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000534 bool Virtual, AccessSpecifier Access,
John McCallba7bf592010-08-24 05:47:05 +0000535 ParsedType basetype, SourceLocation BaseLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000536 if (!classdecl)
537 return true;
538
Douglas Gregorc40290e2009-03-09 23:48:35 +0000539 AdjustDeclIfTemplate(classdecl);
John McCall48871652010-08-21 09:40:31 +0000540 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000541 if (!Class)
542 return true;
543
Nick Lewycky19b9f952010-07-26 16:56:01 +0000544 TypeSourceInfo *TInfo = 0;
545 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor463421d2009-03-03 04:44:36 +0000546 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000547 Virtual, Access, TInfo))
Douglas Gregor463421d2009-03-03 04:44:36 +0000548 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000549
Douglas Gregor463421d2009-03-03 04:44:36 +0000550 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000551}
Douglas Gregor556877c2008-04-13 21:30:24 +0000552
Douglas Gregor463421d2009-03-03 04:44:36 +0000553/// \brief Performs the actual work of attaching the given base class
554/// specifiers to a C++ class.
555bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
556 unsigned NumBases) {
557 if (NumBases == 0)
558 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +0000559
560 // Used to keep track of which base types we have already seen, so
561 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000562 // that the key is always the unqualified canonical type of the base
563 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000564 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
565
566 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000567 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000568 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000569 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000570 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000571 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000572 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian2792f302010-05-20 23:34:56 +0000573 if (!Class->hasObjectMember()) {
574 if (const RecordType *FDTTy =
575 NewBaseType.getTypePtr()->getAs<RecordType>())
576 if (FDTTy->getDecl()->hasObjectMember())
577 Class->setHasObjectMember(true);
578 }
579
Douglas Gregor29a92472008-10-22 17:49:05 +0000580 if (KnownBaseTypes[NewBaseType]) {
581 // C++ [class.mi]p3:
582 // A class shall not be specified as a direct base class of a
583 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000584 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000585 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000586 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000587 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000588
589 // Delete the duplicate base class specifier; we're going to
590 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000591 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000592
593 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000594 } else {
595 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000596 KnownBaseTypes[NewBaseType] = Bases[idx];
597 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000598 }
599 }
600
601 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000602 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000603
604 // Delete the remaining (good) base class specifiers, since their
605 // data has been copied into the CXXRecordDecl.
606 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000607 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000608
609 return Invalid;
610}
611
612/// ActOnBaseSpecifiers - Attach the given base specifiers to the
613/// class, after checking whether there are any duplicate base
614/// classes.
John McCall48871652010-08-21 09:40:31 +0000615void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000616 unsigned NumBases) {
617 if (!ClassDecl || !Bases || !NumBases)
618 return;
619
620 AdjustDeclIfTemplate(ClassDecl);
John McCall48871652010-08-21 09:40:31 +0000621 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor463421d2009-03-03 04:44:36 +0000622 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000623}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000624
John McCalle78aac42010-03-10 03:28:59 +0000625static CXXRecordDecl *GetClassForType(QualType T) {
626 if (const RecordType *RT = T->getAs<RecordType>())
627 return cast<CXXRecordDecl>(RT->getDecl());
628 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
629 return ICT->getDecl();
630 else
631 return 0;
632}
633
Douglas Gregor36d1b142009-10-06 17:59:45 +0000634/// \brief Determine whether the type \p Derived is a C++ class that is
635/// derived from the type \p Base.
636bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
637 if (!getLangOptions().CPlusPlus)
638 return false;
John McCalle78aac42010-03-10 03:28:59 +0000639
640 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
641 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000642 return false;
643
John McCalle78aac42010-03-10 03:28:59 +0000644 CXXRecordDecl *BaseRD = GetClassForType(Base);
645 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000646 return false;
647
John McCall67da35c2010-02-04 22:26:26 +0000648 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
649 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000650}
651
652/// \brief Determine whether the type \p Derived is a C++ class that is
653/// derived from the type \p Base.
654bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
655 if (!getLangOptions().CPlusPlus)
656 return false;
657
John McCalle78aac42010-03-10 03:28:59 +0000658 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
659 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000660 return false;
661
John McCalle78aac42010-03-10 03:28:59 +0000662 CXXRecordDecl *BaseRD = GetClassForType(Base);
663 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000664 return false;
665
Douglas Gregor36d1b142009-10-06 17:59:45 +0000666 return DerivedRD->isDerivedFrom(BaseRD, Paths);
667}
668
Anders Carlssona70cff62010-04-24 19:06:50 +0000669void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +0000670 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000671 assert(BasePathArray.empty() && "Base path array must be empty!");
672 assert(Paths.isRecordingPaths() && "Must record paths!");
673
674 const CXXBasePath &Path = Paths.front();
675
676 // We first go backward and check if we have a virtual base.
677 // FIXME: It would be better if CXXBasePath had the base specifier for
678 // the nearest virtual base.
679 unsigned Start = 0;
680 for (unsigned I = Path.size(); I != 0; --I) {
681 if (Path[I - 1].Base->isVirtual()) {
682 Start = I - 1;
683 break;
684 }
685 }
686
687 // Now add all bases.
688 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +0000689 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +0000690}
691
Douglas Gregor88d292c2010-05-13 16:44:06 +0000692/// \brief Determine whether the given base path includes a virtual
693/// base class.
John McCallcf142162010-08-07 06:22:56 +0000694bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
695 for (CXXCastPath::const_iterator B = BasePath.begin(),
696 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000697 B != BEnd; ++B)
698 if ((*B)->isVirtual())
699 return true;
700
701 return false;
702}
703
Douglas Gregor36d1b142009-10-06 17:59:45 +0000704/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
705/// conversion (where Derived and Base are class types) is
706/// well-formed, meaning that the conversion is unambiguous (and
707/// that all of the base classes are accessible). Returns true
708/// and emits a diagnostic if the code is ill-formed, returns false
709/// otherwise. Loc is the location where this routine should point to
710/// if there is an error, and Range is the source range to highlight
711/// if there is an error.
712bool
713Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000714 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000715 unsigned AmbigiousBaseConvID,
716 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000717 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +0000718 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000719 // First, determine whether the path from Derived to Base is
720 // ambiguous. This is slightly more expensive than checking whether
721 // the Derived to Base conversion exists, because here we need to
722 // explore multiple paths to determine if there is an ambiguity.
723 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
724 /*DetectVirtual=*/false);
725 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
726 assert(DerivationOkay &&
727 "Can only be used with a derived-to-base conversion");
728 (void)DerivationOkay;
729
730 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000731 if (InaccessibleBaseID) {
732 // Check that the base class can be accessed.
733 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
734 InaccessibleBaseID)) {
735 case AR_inaccessible:
736 return true;
737 case AR_accessible:
738 case AR_dependent:
739 case AR_delayed:
740 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000741 }
John McCall5b0829a2010-02-10 09:31:12 +0000742 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000743
744 // Build a base path if necessary.
745 if (BasePath)
746 BuildBasePathArray(Paths, *BasePath);
747 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000748 }
749
750 // We know that the derived-to-base conversion is ambiguous, and
751 // we're going to produce a diagnostic. Perform the derived-to-base
752 // search just one more time to compute all of the possible paths so
753 // that we can print them out. This is more expensive than any of
754 // the previous derived-to-base checks we've done, but at this point
755 // performance isn't as much of an issue.
756 Paths.clear();
757 Paths.setRecordingPaths(true);
758 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
759 assert(StillOkay && "Can only be used with a derived-to-base conversion");
760 (void)StillOkay;
761
762 // Build up a textual representation of the ambiguous paths, e.g.,
763 // D -> B -> A, that will be used to illustrate the ambiguous
764 // conversions in the diagnostic. We only print one of the paths
765 // to each base class subobject.
766 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
767
768 Diag(Loc, AmbigiousBaseConvID)
769 << Derived << Base << PathDisplayStr << Range << Name;
770 return true;
771}
772
773bool
774Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000775 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +0000776 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000777 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000778 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000779 IgnoreAccess ? 0
780 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000781 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000782 Loc, Range, DeclarationName(),
783 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000784}
785
786
787/// @brief Builds a string representing ambiguous paths from a
788/// specific derived class to different subobjects of the same base
789/// class.
790///
791/// This function builds a string that can be used in error messages
792/// to show the different paths that one can take through the
793/// inheritance hierarchy to go from the derived class to different
794/// subobjects of a base class. The result looks something like this:
795/// @code
796/// struct D -> struct B -> struct A
797/// struct D -> struct C -> struct A
798/// @endcode
799std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
800 std::string PathDisplayStr;
801 std::set<unsigned> DisplayedPaths;
802 for (CXXBasePaths::paths_iterator Path = Paths.begin();
803 Path != Paths.end(); ++Path) {
804 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
805 // We haven't displayed a path to this particular base
806 // class subobject yet.
807 PathDisplayStr += "\n ";
808 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
809 for (CXXBasePath::const_iterator Element = Path->begin();
810 Element != Path->end(); ++Element)
811 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
812 }
813 }
814
815 return PathDisplayStr;
816}
817
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000818//===----------------------------------------------------------------------===//
819// C++ class member Handling
820//===----------------------------------------------------------------------===//
821
Abramo Bagnarad7340582010-06-05 05:09:32 +0000822/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCall48871652010-08-21 09:40:31 +0000823Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
824 SourceLocation ASLoc,
825 SourceLocation ColonLoc) {
Abramo Bagnarad7340582010-06-05 05:09:32 +0000826 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCall48871652010-08-21 09:40:31 +0000827 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnarad7340582010-06-05 05:09:32 +0000828 ASLoc, ColonLoc);
829 CurContext->addHiddenDecl(ASDecl);
John McCall48871652010-08-21 09:40:31 +0000830 return ASDecl;
Abramo Bagnarad7340582010-06-05 05:09:32 +0000831}
832
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000833/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
834/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
835/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000836/// any.
John McCall48871652010-08-21 09:40:31 +0000837Decl *
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000838Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000839 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000840 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
841 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000842 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000843 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
844 DeclarationName Name = NameInfo.getName();
845 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor23ab7452010-11-09 03:31:16 +0000846
847 // For anonymous bitfields, the location should point to the type.
848 if (Loc.isInvalid())
849 Loc = D.getSourceRange().getBegin();
850
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000851 Expr *BitWidth = static_cast<Expr*>(BW);
852 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000853
John McCallb1cd7da2010-06-04 08:34:12 +0000854 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +0000855 assert(!DS.isFriendSpecified());
856
John McCallb1cd7da2010-06-04 08:34:12 +0000857 bool isFunc = false;
858 if (D.isFunctionDeclarator())
859 isFunc = true;
860 else if (D.getNumTypeObjects() == 0 &&
861 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
John McCallba7bf592010-08-24 05:47:05 +0000862 QualType TDType = GetTypeFromParser(DS.getRepAsType());
John McCallb1cd7da2010-06-04 08:34:12 +0000863 isFunc = TDType->isFunctionType();
864 }
865
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000866 // C++ 9.2p6: A member shall not be declared to have automatic storage
867 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000868 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
869 // data members and cannot be applied to names declared const or static,
870 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000871 switch (DS.getStorageClassSpec()) {
872 case DeclSpec::SCS_unspecified:
873 case DeclSpec::SCS_typedef:
874 case DeclSpec::SCS_static:
875 // FALL THROUGH.
876 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000877 case DeclSpec::SCS_mutable:
878 if (isFunc) {
879 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000880 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000881 else
Chris Lattner3b054132008-11-19 05:08:23 +0000882 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000883
Sebastian Redl8071edb2008-11-17 23:24:37 +0000884 // FIXME: It would be nicer if the keyword was ignored only for this
885 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000886 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000887 }
888 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000889 default:
890 if (DS.getStorageClassSpecLoc().isValid())
891 Diag(DS.getStorageClassSpecLoc(),
892 diag::err_storageclass_invalid_for_member);
893 else
894 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
895 D.getMutableDeclSpec().ClearStorageClassSpecs();
896 }
897
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000898 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
899 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000900 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000901
902 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000903 if (isInstField) {
Douglas Gregora007d362010-10-13 22:19:53 +0000904 CXXScopeSpec &SS = D.getCXXScopeSpec();
905
906
907 if (SS.isSet() && !SS.isInvalid()) {
908 // The user provided a superfluous scope specifier inside a class
909 // definition:
910 //
911 // class X {
912 // int X::member;
913 // };
914 DeclContext *DC = 0;
915 if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
916 Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
917 << Name << FixItHint::CreateRemoval(SS.getRange());
918 else
919 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
920 << Name << SS.getRange();
921
922 SS.clear();
923 }
924
Douglas Gregor3447e762009-08-20 22:52:58 +0000925 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000926 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
927 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000928 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000929 } else {
John McCall48871652010-08-21 09:40:31 +0000930 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner97e277e2009-03-05 23:03:49 +0000931 if (!Member) {
John McCall48871652010-08-21 09:40:31 +0000932 return 0;
Chris Lattner97e277e2009-03-05 23:03:49 +0000933 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000934
935 // Non-instance-fields can't have a bitfield.
936 if (BitWidth) {
937 if (Member->isInvalidDecl()) {
938 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000939 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000940 // C++ 9.6p3: A bit-field shall not be a static member.
941 // "static member 'A' cannot be a bit-field"
942 Diag(Loc, diag::err_static_not_bitfield)
943 << Name << BitWidth->getSourceRange();
944 } else if (isa<TypedefDecl>(Member)) {
945 // "typedef member 'x' cannot be a bit-field"
946 Diag(Loc, diag::err_typedef_not_bitfield)
947 << Name << BitWidth->getSourceRange();
948 } else {
949 // A function typedef ("typedef int f(); f a;").
950 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
951 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000952 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000953 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000954 }
Mike Stump11289f42009-09-09 15:08:12 +0000955
Chris Lattnerd26760a2009-03-05 23:01:03 +0000956 BitWidth = 0;
957 Member->setInvalidDecl();
958 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000959
960 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000961
Douglas Gregor3447e762009-08-20 22:52:58 +0000962 // If we have declared a member function template, set the access of the
963 // templated declaration as well.
964 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
965 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +0000966 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000967
Douglas Gregor92751d42008-11-17 22:58:34 +0000968 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000969
Douglas Gregor0c880302009-03-11 23:00:04 +0000970 if (Init)
John McCallb268a282010-08-23 23:25:46 +0000971 AddInitializerToDecl(Member, Init, false);
Sebastian Redl42e92c42009-04-12 17:16:29 +0000972 if (Deleted) // FIXME: Source location is not very good.
John McCall48871652010-08-21 09:40:31 +0000973 SetDeclDeleted(Member, D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000974
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000975 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +0000976 FieldCollector->Add(cast<FieldDecl>(Member));
John McCall48871652010-08-21 09:40:31 +0000977 return 0;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000978 }
John McCall48871652010-08-21 09:40:31 +0000979 return Member;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000980}
981
Douglas Gregor15e77a22009-12-31 09:10:24 +0000982/// \brief Find the direct and/or virtual base specifiers that
983/// correspond to the given base type, for use in base initialization
984/// within a constructor.
985static bool FindBaseInitializer(Sema &SemaRef,
986 CXXRecordDecl *ClassDecl,
987 QualType BaseType,
988 const CXXBaseSpecifier *&DirectBaseSpec,
989 const CXXBaseSpecifier *&VirtualBaseSpec) {
990 // First, check for a direct base class.
991 DirectBaseSpec = 0;
992 for (CXXRecordDecl::base_class_const_iterator Base
993 = ClassDecl->bases_begin();
994 Base != ClassDecl->bases_end(); ++Base) {
995 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
996 // We found a direct base of this type. That's what we're
997 // initializing.
998 DirectBaseSpec = &*Base;
999 break;
1000 }
1001 }
1002
1003 // Check for a virtual base class.
1004 // FIXME: We might be able to short-circuit this if we know in advance that
1005 // there are no virtual bases.
1006 VirtualBaseSpec = 0;
1007 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1008 // We haven't found a base yet; search the class hierarchy for a
1009 // virtual base class.
1010 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1011 /*DetectVirtual=*/false);
1012 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1013 BaseType, Paths)) {
1014 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1015 Path != Paths.end(); ++Path) {
1016 if (Path->back().Base->isVirtual()) {
1017 VirtualBaseSpec = Path->back().Base;
1018 break;
1019 }
1020 }
1021 }
1022 }
1023
1024 return DirectBaseSpec || VirtualBaseSpec;
1025}
1026
Douglas Gregore8381c02008-11-05 04:29:56 +00001027/// ActOnMemInitializer - Handle a C++ member initializer.
John McCallfaf5fb42010-08-26 23:41:50 +00001028MemInitResult
John McCall48871652010-08-21 09:40:31 +00001029Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001030 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001031 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001032 IdentifierInfo *MemberOrBase,
John McCallba7bf592010-08-24 05:47:05 +00001033 ParsedType TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001034 SourceLocation IdLoc,
1035 SourceLocation LParenLoc,
1036 ExprTy **Args, unsigned NumArgs,
Douglas Gregore8381c02008-11-05 04:29:56 +00001037 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001038 if (!ConstructorD)
1039 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001040
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001041 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001042
1043 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00001044 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregore8381c02008-11-05 04:29:56 +00001045 if (!Constructor) {
1046 // The user wrote a constructor initializer on a function that is
1047 // not a C++ constructor. Ignore the error for now, because we may
1048 // have more member initializers coming; we'll diagnose it just
1049 // once in ActOnMemInitializers.
1050 return true;
1051 }
1052
1053 CXXRecordDecl *ClassDecl = Constructor->getParent();
1054
1055 // C++ [class.base.init]p2:
1056 // Names in a mem-initializer-id are looked up in the scope of the
1057 // constructor’s class and, if not found in that scope, are looked
1058 // up in the scope containing the constructor’s
1059 // definition. [Note: if the constructor’s class contains a member
1060 // with the same name as a direct or virtual base class of the
1061 // class, a mem-initializer-id naming the member or base class and
1062 // composed of a single identifier refers to the class member. A
1063 // mem-initializer-id for the hidden base class may be specified
1064 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001065 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001066 // Look for a member, first.
1067 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001068 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001069 = ClassDecl->lookup(MemberOrBase);
1070 if (Result.first != Result.second)
1071 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001072
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001073 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001074
Eli Friedman8e1433b2009-07-29 19:44:27 +00001075 if (Member)
1076 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001077 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001078 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001079 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001080 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001081 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001082
1083 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001084 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001085 } else {
1086 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1087 LookupParsedName(R, S, &SS);
1088
1089 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1090 if (!TyD) {
1091 if (R.isAmbiguous()) return true;
1092
John McCallda6841b2010-04-09 19:01:14 +00001093 // We don't want access-control diagnostics here.
1094 R.suppressDiagnostics();
1095
Douglas Gregora3b624a2010-01-19 06:46:48 +00001096 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1097 bool NotUnknownSpecialization = false;
1098 DeclContext *DC = computeDeclContext(SS, false);
1099 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1100 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1101
1102 if (!NotUnknownSpecialization) {
1103 // When the scope specifier can refer to a member of an unknown
1104 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001105 BaseType = CheckTypenameType(ETK_None,
1106 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00001107 *MemberOrBase, SourceLocation(),
1108 SS.getRange(), IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001109 if (BaseType.isNull())
1110 return true;
1111
Douglas Gregora3b624a2010-01-19 06:46:48 +00001112 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00001113 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001114 }
1115 }
1116
Douglas Gregor15e77a22009-12-31 09:10:24 +00001117 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001118 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001119 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1120 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001121 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00001122 if (Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl)) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001123 // We have found a non-static data member with a similar
1124 // name to what was typed; complain and initialize that
1125 // member.
1126 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1127 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001128 << FixItHint::CreateReplacement(R.getNameLoc(),
1129 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001130 Diag(Member->getLocation(), diag::note_previous_decl)
1131 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001132
1133 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1134 LParenLoc, RParenLoc);
1135 }
1136 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1137 const CXXBaseSpecifier *DirectBaseSpec;
1138 const CXXBaseSpecifier *VirtualBaseSpec;
1139 if (FindBaseInitializer(*this, ClassDecl,
1140 Context.getTypeDeclType(Type),
1141 DirectBaseSpec, VirtualBaseSpec)) {
1142 // We have found a direct or virtual base class with a
1143 // similar name to what was typed; complain and initialize
1144 // that base class.
1145 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1146 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001147 << FixItHint::CreateReplacement(R.getNameLoc(),
1148 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001149
1150 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1151 : VirtualBaseSpec;
1152 Diag(BaseSpec->getSourceRange().getBegin(),
1153 diag::note_base_class_specified_here)
1154 << BaseSpec->getType()
1155 << BaseSpec->getSourceRange();
1156
Douglas Gregor15e77a22009-12-31 09:10:24 +00001157 TyD = Type;
1158 }
1159 }
1160 }
1161
Douglas Gregora3b624a2010-01-19 06:46:48 +00001162 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001163 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1164 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1165 return true;
1166 }
John McCallb5a0d312009-12-21 10:41:20 +00001167 }
1168
Douglas Gregora3b624a2010-01-19 06:46:48 +00001169 if (BaseType.isNull()) {
1170 BaseType = Context.getTypeDeclType(TyD);
1171 if (SS.isSet()) {
1172 NestedNameSpecifier *Qualifier =
1173 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001174
Douglas Gregora3b624a2010-01-19 06:46:48 +00001175 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001176 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001177 }
John McCallb5a0d312009-12-21 10:41:20 +00001178 }
1179 }
Mike Stump11289f42009-09-09 15:08:12 +00001180
John McCallbcd03502009-12-07 02:54:59 +00001181 if (!TInfo)
1182 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001183
John McCallbcd03502009-12-07 02:54:59 +00001184 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001185 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001186}
1187
John McCalle22a04a2009-11-04 23:02:40 +00001188/// Checks an initializer expression for use of uninitialized fields, such as
1189/// containing the field that is being initialized. Returns true if there is an
1190/// uninitialized field was used an updates the SourceLocation parameter; false
1191/// otherwise.
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001192static bool InitExprContainsUninitializedFields(const Stmt *S,
1193 const FieldDecl *LhsField,
1194 SourceLocation *L) {
1195 if (isa<CallExpr>(S)) {
1196 // Do not descend into function calls or constructors, as the use
1197 // of an uninitialized field may be valid. One would have to inspect
1198 // the contents of the function/ctor to determine if it is safe or not.
1199 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1200 // may be safe, depending on what the function/ctor does.
1201 return false;
1202 }
1203 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1204 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson0f7e94f2010-10-06 02:43:25 +00001205
1206 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
1207 // The member expression points to a static data member.
1208 assert(VD->isStaticDataMember() &&
1209 "Member points to non-static data member!");
Nick Lewycky300524242010-10-06 18:37:39 +00001210 (void)VD;
Anders Carlsson0f7e94f2010-10-06 02:43:25 +00001211 return false;
1212 }
1213
1214 if (isa<EnumConstantDecl>(RhsField)) {
1215 // The member expression points to an enum.
1216 return false;
1217 }
1218
John McCalle22a04a2009-11-04 23:02:40 +00001219 if (RhsField == LhsField) {
1220 // Initializing a field with itself. Throw a warning.
1221 // But wait; there are exceptions!
1222 // Exception #1: The field may not belong to this record.
1223 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001224 const Expr *base = ME->getBase();
John McCalle22a04a2009-11-04 23:02:40 +00001225 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1226 // Even though the field matches, it does not belong to this record.
1227 return false;
1228 }
1229 // None of the exceptions triggered; return true to indicate an
1230 // uninitialized field was used.
1231 *L = ME->getMemberLoc();
1232 return true;
1233 }
Argyrios Kyrtzidis03f0e2b2010-09-21 10:47:20 +00001234 } else if (isa<SizeOfAlignOfExpr>(S)) {
1235 // sizeof/alignof doesn't reference contents, do not warn.
1236 return false;
1237 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
1238 // address-of doesn't reference contents (the pointer may be dereferenced
1239 // in the same expression but it would be rare; and weird).
1240 if (UOE->getOpcode() == UO_AddrOf)
1241 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001242 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001243 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1244 it != e; ++it) {
1245 if (!*it) {
1246 // An expression such as 'member(arg ?: "")' may trigger this.
John McCalle22a04a2009-11-04 23:02:40 +00001247 continue;
1248 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001249 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1250 return true;
John McCalle22a04a2009-11-04 23:02:40 +00001251 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001252 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001253}
1254
John McCallfaf5fb42010-08-26 23:41:50 +00001255MemInitResult
Eli Friedman8e1433b2009-07-29 19:44:27 +00001256Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1257 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001258 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001259 SourceLocation RParenLoc) {
Douglas Gregor266bb5f2010-11-05 22:21:31 +00001260 if (Member->isInvalidDecl())
1261 return true;
1262
John McCalle22a04a2009-11-04 23:02:40 +00001263 // Diagnose value-uses of fields to initialize themselves, e.g.
1264 // foo(foo)
1265 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001266 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001267 for (unsigned i = 0; i < NumArgs; ++i) {
1268 SourceLocation L;
1269 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1270 // FIXME: Return true in the case when other fields are used before being
1271 // uninitialized. For example, let this field be the i'th field. When
1272 // initializing the i'th field, throw a warning if any of the >= i'th
1273 // fields are used, as they are not yet initialized.
1274 // Right now we are only handling the case where the i'th field uses
1275 // itself in its initializer.
1276 Diag(L, diag::warn_field_is_uninit);
1277 }
1278 }
1279
Eli Friedman8e1433b2009-07-29 19:44:27 +00001280 bool HasDependentArg = false;
1281 for (unsigned i = 0; i < NumArgs; i++)
1282 HasDependentArg |= Args[i]->isTypeDependent();
1283
Eli Friedman9255adf2010-07-24 21:19:15 +00001284 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001285 // Can't check initialization for a member of dependent type or when
1286 // any of the arguments are type-dependent expressions.
John McCallb268a282010-08-23 23:25:46 +00001287 Expr *Init
1288 = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1289 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001290
1291 // Erase any temporaries within this evaluation context; we're not
1292 // going to track them in the AST, since we'll be rebuilding the
1293 // ASTs during template instantiation.
1294 ExprTemporaries.erase(
1295 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1296 ExprTemporaries.end());
1297
1298 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1299 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001300 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001301 RParenLoc);
1302
Douglas Gregore8381c02008-11-05 04:29:56 +00001303 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001304
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001305 // Initialize the member.
1306 InitializedEntity MemberEntity =
1307 InitializedEntity::InitializeMember(Member, 0);
1308 InitializationKind Kind =
1309 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1310
1311 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1312
John McCalldadc5752010-08-24 06:29:42 +00001313 ExprResult MemberInit =
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001314 InitSeq.Perform(*this, MemberEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001315 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001316 if (MemberInit.isInvalid())
1317 return true;
John McCallacf0ee52010-10-08 02:01:28 +00001318
1319 CheckImplicitConversions(MemberInit.get(), LParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001320
1321 // C++0x [class.base.init]p7:
1322 // The initialization of each base and member constitutes a
1323 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001324 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001325 if (MemberInit.isInvalid())
1326 return true;
1327
1328 // If we are in a dependent context, template instantiation will
1329 // perform this type-checking again. Just save the arguments that we
1330 // received in a ParenListExpr.
1331 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1332 // of the information that we have about the member
1333 // initializer. However, deconstructing the ASTs is a dicey process,
1334 // and this approach is far more likely to get the corner cases right.
1335 if (CurContext->isDependentContext()) {
John McCallb268a282010-08-23 23:25:46 +00001336 Expr *Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1337 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001338 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1339 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001340 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001341 RParenLoc);
1342 }
1343
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001344 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001345 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001346 MemberInit.get(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001347 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001348}
1349
John McCallfaf5fb42010-08-26 23:41:50 +00001350MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001351Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001352 Expr **Args, unsigned NumArgs,
1353 SourceLocation LParenLoc, SourceLocation RParenLoc,
1354 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001355 bool HasDependentArg = false;
1356 for (unsigned i = 0; i < NumArgs; i++)
1357 HasDependentArg |= Args[i]->isTypeDependent();
1358
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001359 SourceLocation BaseLoc
1360 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1361
1362 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1363 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1364 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1365
1366 // C++ [class.base.init]p2:
1367 // [...] Unless the mem-initializer-id names a nonstatic data
1368 // member of the constructor’s class or a direct or virtual base
1369 // of that class, the mem-initializer is ill-formed. A
1370 // mem-initializer-list can initialize a base class using any
1371 // name that denotes that base class type.
1372 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1373
1374 // Check for direct and virtual base classes.
1375 const CXXBaseSpecifier *DirectBaseSpec = 0;
1376 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1377 if (!Dependent) {
1378 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1379 VirtualBaseSpec);
1380
1381 // C++ [base.class.init]p2:
1382 // Unless the mem-initializer-id names a nonstatic data member of the
1383 // constructor's class or a direct or virtual base of that class, the
1384 // mem-initializer is ill-formed.
1385 if (!DirectBaseSpec && !VirtualBaseSpec) {
1386 // If the class has any dependent bases, then it's possible that
1387 // one of those types will resolve to the same type as
1388 // BaseType. Therefore, just treat this as a dependent base
1389 // class initialization. FIXME: Should we try to check the
1390 // initialization anyway? It seems odd.
1391 if (ClassDecl->hasAnyDependentBases())
1392 Dependent = true;
1393 else
1394 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1395 << BaseType << Context.getTypeDeclType(ClassDecl)
1396 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1397 }
1398 }
1399
1400 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001401 // Can't check initialization for a base of dependent type or when
1402 // any of the arguments are type-dependent expressions.
John McCalldadc5752010-08-24 06:29:42 +00001403 ExprResult BaseInit
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001404 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1405 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001406
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001407 // Erase any temporaries within this evaluation context; we're not
1408 // going to track them in the AST, since we'll be rebuilding the
1409 // ASTs during template instantiation.
1410 ExprTemporaries.erase(
1411 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1412 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001413
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001414 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001415 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001416 LParenLoc,
1417 BaseInit.takeAs<Expr>(),
1418 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001419 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001420
1421 // C++ [base.class.init]p2:
1422 // If a mem-initializer-id is ambiguous because it designates both
1423 // a direct non-virtual base class and an inherited virtual base
1424 // class, the mem-initializer is ill-formed.
1425 if (DirectBaseSpec && VirtualBaseSpec)
1426 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001427 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001428
1429 CXXBaseSpecifier *BaseSpec
1430 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1431 if (!BaseSpec)
1432 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1433
1434 // Initialize the base.
1435 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001436 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001437 InitializationKind Kind =
1438 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1439
1440 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1441
John McCalldadc5752010-08-24 06:29:42 +00001442 ExprResult BaseInit =
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001443 InitSeq.Perform(*this, BaseEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001444 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001445 if (BaseInit.isInvalid())
1446 return true;
John McCallacf0ee52010-10-08 02:01:28 +00001447
1448 CheckImplicitConversions(BaseInit.get(), LParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001449
1450 // C++0x [class.base.init]p7:
1451 // The initialization of each base and member constitutes a
1452 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001453 BaseInit = MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001454 if (BaseInit.isInvalid())
1455 return true;
1456
1457 // If we are in a dependent context, template instantiation will
1458 // perform this type-checking again. Just save the arguments that we
1459 // received in a ParenListExpr.
1460 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1461 // of the information that we have about the base
1462 // initializer. However, deconstructing the ASTs is a dicey process,
1463 // and this approach is far more likely to get the corner cases right.
1464 if (CurContext->isDependentContext()) {
John McCalldadc5752010-08-24 06:29:42 +00001465 ExprResult Init
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001466 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1467 RParenLoc));
1468 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001469 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001470 LParenLoc,
1471 Init.takeAs<Expr>(),
1472 RParenLoc);
1473 }
1474
1475 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001476 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001477 LParenLoc,
1478 BaseInit.takeAs<Expr>(),
1479 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001480}
1481
Anders Carlsson1b00e242010-04-23 03:10:23 +00001482/// ImplicitInitializerKind - How an implicit base or member initializer should
1483/// initialize its base or member.
1484enum ImplicitInitializerKind {
1485 IIK_Default,
1486 IIK_Copy,
1487 IIK_Move
1488};
1489
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001490static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001491BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001492 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001493 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001494 bool IsInheritedVirtualBase,
1495 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001496 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001497 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1498 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001499
John McCalldadc5752010-08-24 06:29:42 +00001500 ExprResult BaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001501
1502 switch (ImplicitInitKind) {
1503 case IIK_Default: {
1504 InitializationKind InitKind
1505 = InitializationKind::CreateDefault(Constructor->getLocation());
1506 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1507 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001508 MultiExprArg(SemaRef, 0, 0));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001509 break;
1510 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001511
Anders Carlsson1b00e242010-04-23 03:10:23 +00001512 case IIK_Copy: {
1513 ParmVarDecl *Param = Constructor->getParamDecl(0);
1514 QualType ParamType = Param->getType().getNonReferenceType();
1515
1516 Expr *CopyCtorArg =
1517 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
John McCall7decc9e2010-11-18 06:31:45 +00001518 Constructor->getLocation(), ParamType,
1519 VK_LValue, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001520
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001521 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001522 QualType ArgTy =
1523 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1524 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001525
1526 CXXCastPath BasePath;
1527 BasePath.push_back(BaseSpec);
Sebastian Redlc57d34b2010-07-20 04:20:21 +00001528 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
John McCalle3027922010-08-25 11:45:40 +00001529 CK_UncheckedDerivedToBase,
John McCall2536c6d2010-08-25 10:28:54 +00001530 VK_LValue, &BasePath);
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001531
Anders Carlsson1b00e242010-04-23 03:10:23 +00001532 InitializationKind InitKind
1533 = InitializationKind::CreateDirect(Constructor->getLocation(),
1534 SourceLocation(), SourceLocation());
1535 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1536 &CopyCtorArg, 1);
1537 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001538 MultiExprArg(&CopyCtorArg, 1));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001539 break;
1540 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001541
Anders Carlsson1b00e242010-04-23 03:10:23 +00001542 case IIK_Move:
1543 assert(false && "Unhandled initializer kind!");
1544 }
John McCallb268a282010-08-23 23:25:46 +00001545
1546 if (BaseInit.isInvalid())
1547 return true;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001548
John McCallb268a282010-08-23 23:25:46 +00001549 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001550 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001551 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001552
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001553 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001554 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1555 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1556 SourceLocation()),
1557 BaseSpec->isVirtual(),
1558 SourceLocation(),
1559 BaseInit.takeAs<Expr>(),
1560 SourceLocation());
1561
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001562 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001563}
1564
Anders Carlsson3c1db572010-04-23 02:15:47 +00001565static bool
1566BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001567 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001568 FieldDecl *Field,
1569 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001570 if (Field->isInvalidDecl())
1571 return true;
1572
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001573 SourceLocation Loc = Constructor->getLocation();
1574
Anders Carlsson423f5d82010-04-23 16:04:08 +00001575 if (ImplicitInitKind == IIK_Copy) {
1576 ParmVarDecl *Param = Constructor->getParamDecl(0);
1577 QualType ParamType = Param->getType().getNonReferenceType();
1578
1579 Expr *MemberExprBase =
1580 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
John McCall7decc9e2010-11-18 06:31:45 +00001581 Loc, ParamType, VK_LValue, 0);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001582
1583 // Build a reference to this field within the parameter.
1584 CXXScopeSpec SS;
1585 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1586 Sema::LookupMemberName);
1587 MemberLookup.addDecl(Field, AS_public);
1588 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00001589 ExprResult CopyCtorArg
John McCallb268a282010-08-23 23:25:46 +00001590 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001591 ParamType, Loc,
1592 /*IsArrow=*/false,
1593 SS,
1594 /*FirstQualifierInScope=*/0,
1595 MemberLookup,
1596 /*TemplateArgs=*/0);
1597 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001598 return true;
1599
Douglas Gregor94f9a482010-05-05 05:51:00 +00001600 // When the field we are copying is an array, create index variables for
1601 // each dimension of the array. We use these index variables to subscript
1602 // the source array, and other clients (e.g., CodeGen) will perform the
1603 // necessary iteration with these index variables.
1604 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1605 QualType BaseType = Field->getType();
1606 QualType SizeType = SemaRef.Context.getSizeType();
1607 while (const ConstantArrayType *Array
1608 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1609 // Create the iteration variable for this array index.
1610 IdentifierInfo *IterationVarName = 0;
1611 {
1612 llvm::SmallString<8> Str;
1613 llvm::raw_svector_ostream OS(Str);
1614 OS << "__i" << IndexVariables.size();
1615 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1616 }
1617 VarDecl *IterationVar
1618 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1619 IterationVarName, SizeType,
1620 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00001621 SC_None, SC_None);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001622 IndexVariables.push_back(IterationVar);
1623
1624 // Create a reference to the iteration variable.
John McCalldadc5752010-08-24 06:29:42 +00001625 ExprResult IterationVarRef
John McCall7decc9e2010-11-18 06:31:45 +00001626 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001627 assert(!IterationVarRef.isInvalid() &&
1628 "Reference to invented variable cannot fail!");
1629
1630 // Subscript the array with this iteration variable.
John McCallb268a282010-08-23 23:25:46 +00001631 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001632 Loc,
John McCallb268a282010-08-23 23:25:46 +00001633 IterationVarRef.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001634 Loc);
1635 if (CopyCtorArg.isInvalid())
1636 return true;
1637
1638 BaseType = Array->getElementType();
1639 }
1640
1641 // Construct the entity that we will be initializing. For an array, this
1642 // will be first element in the array, which may require several levels
1643 // of array-subscript entities.
1644 llvm::SmallVector<InitializedEntity, 4> Entities;
1645 Entities.reserve(1 + IndexVariables.size());
1646 Entities.push_back(InitializedEntity::InitializeMember(Field));
1647 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1648 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1649 0,
1650 Entities.back()));
1651
1652 // Direct-initialize to use the copy constructor.
1653 InitializationKind InitKind =
1654 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1655
1656 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1657 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1658 &CopyCtorArgE, 1);
1659
John McCalldadc5752010-08-24 06:29:42 +00001660 ExprResult MemberInit
Douglas Gregor94f9a482010-05-05 05:51:00 +00001661 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001662 MultiExprArg(&CopyCtorArgE, 1));
John McCallb268a282010-08-23 23:25:46 +00001663 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor94f9a482010-05-05 05:51:00 +00001664 if (MemberInit.isInvalid())
1665 return true;
1666
1667 CXXMemberInit
1668 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1669 MemberInit.takeAs<Expr>(), Loc,
1670 IndexVariables.data(),
1671 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001672 return false;
1673 }
1674
Anders Carlsson423f5d82010-04-23 16:04:08 +00001675 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1676
Anders Carlsson3c1db572010-04-23 02:15:47 +00001677 QualType FieldBaseElementType =
1678 SemaRef.Context.getBaseElementType(Field->getType());
1679
Anders Carlsson3c1db572010-04-23 02:15:47 +00001680 if (FieldBaseElementType->isRecordType()) {
1681 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001682 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001683 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001684
1685 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00001686 ExprResult MemberInit =
John McCallfaf5fb42010-08-26 23:41:50 +00001687 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCallb268a282010-08-23 23:25:46 +00001688 if (MemberInit.isInvalid())
1689 return true;
1690
1691 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001692 if (MemberInit.isInvalid())
1693 return true;
1694
1695 CXXMemberInit =
1696 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001697 Field, Loc, Loc,
John McCallb268a282010-08-23 23:25:46 +00001698 MemberInit.get(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001699 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001700 return false;
1701 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001702
1703 if (FieldBaseElementType->isReferenceType()) {
1704 SemaRef.Diag(Constructor->getLocation(),
1705 diag::err_uninitialized_member_in_ctor)
1706 << (int)Constructor->isImplicit()
1707 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1708 << 0 << Field->getDeclName();
1709 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1710 return true;
1711 }
1712
1713 if (FieldBaseElementType.isConstQualified()) {
1714 SemaRef.Diag(Constructor->getLocation(),
1715 diag::err_uninitialized_member_in_ctor)
1716 << (int)Constructor->isImplicit()
1717 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1718 << 1 << Field->getDeclName();
1719 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1720 return true;
1721 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001722
1723 // Nothing to initialize.
1724 CXXMemberInit = 0;
1725 return false;
1726}
John McCallbc83b3f2010-05-20 23:23:51 +00001727
1728namespace {
1729struct BaseAndFieldInfo {
1730 Sema &S;
1731 CXXConstructorDecl *Ctor;
1732 bool AnyErrorsInInits;
1733 ImplicitInitializerKind IIK;
1734 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1735 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1736
1737 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1738 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1739 // FIXME: Handle implicit move constructors.
1740 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1741 IIK = IIK_Copy;
1742 else
1743 IIK = IIK_Default;
1744 }
1745};
1746}
1747
Chandler Carruth139e9622010-06-30 02:59:29 +00001748static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1749 FieldDecl *Top, FieldDecl *Field,
1750 CXXBaseOrMemberInitializer *Init) {
1751 // If the member doesn't need to be initialized, Init will still be null.
1752 if (!Init)
1753 return;
1754
1755 Info.AllToInit.push_back(Init);
1756 if (Field != Top) {
1757 Init->setMember(Top);
1758 Init->setAnonUnionMember(Field);
1759 }
1760}
1761
John McCallbc83b3f2010-05-20 23:23:51 +00001762static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1763 FieldDecl *Top, FieldDecl *Field) {
1764
Chandler Carruth139e9622010-06-30 02:59:29 +00001765 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001766 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001767 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001768 return false;
1769 }
1770
1771 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1772 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1773 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001774 CXXRecordDecl *FieldClassDecl
1775 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001776
1777 // Even though union members never have non-trivial default
1778 // constructions in C++03, we still build member initializers for aggregate
1779 // record types which can be union members, and C++0x allows non-trivial
1780 // default constructors for union members, so we ensure that only one
1781 // member is initialized for these.
1782 if (FieldClassDecl->isUnion()) {
1783 // First check for an explicit initializer for one field.
1784 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1785 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1786 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1787 RecordFieldInitializer(Info, Top, *FA, Init);
1788
1789 // Once we've initialized a field of an anonymous union, the union
1790 // field in the class is also initialized, so exit immediately.
1791 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00001792 } else if ((*FA)->isAnonymousStructOrUnion()) {
1793 if (CollectFieldInitializer(Info, Top, *FA))
1794 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00001795 }
1796 }
1797
1798 // Fallthrough and construct a default initializer for the union as
1799 // a whole, which can call its default constructor if such a thing exists
1800 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1801 // behavior going forward with C++0x, when anonymous unions there are
1802 // finalized, we should revisit this.
1803 } else {
1804 // For structs, we simply descend through to initialize all members where
1805 // necessary.
1806 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1807 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1808 if (CollectFieldInitializer(Info, Top, *FA))
1809 return true;
1810 }
1811 }
John McCallbc83b3f2010-05-20 23:23:51 +00001812 }
1813
1814 // Don't try to build an implicit initializer if there were semantic
1815 // errors in any of the initializers (and therefore we might be
1816 // missing some that the user actually wrote).
1817 if (Info.AnyErrorsInInits)
1818 return false;
1819
1820 CXXBaseOrMemberInitializer *Init = 0;
1821 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1822 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001823
Chandler Carruth139e9622010-06-30 02:59:29 +00001824 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001825 return false;
1826}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001827
Eli Friedman9cf6b592009-11-09 19:20:36 +00001828bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001829Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001830 CXXBaseOrMemberInitializer **Initializers,
1831 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001832 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001833 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001834 // Just store the initializers as written, they will be checked during
1835 // instantiation.
1836 if (NumInitializers > 0) {
1837 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1838 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1839 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1840 memcpy(baseOrMemberInitializers, Initializers,
1841 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1842 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1843 }
1844
1845 return false;
1846 }
1847
John McCallbc83b3f2010-05-20 23:23:51 +00001848 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001849
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001850 // We need to build the initializer AST according to order of construction
1851 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001852 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001853 if (!ClassDecl)
1854 return true;
1855
Eli Friedman9cf6b592009-11-09 19:20:36 +00001856 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001857
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001858 for (unsigned i = 0; i < NumInitializers; i++) {
1859 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001860
1861 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001862 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001863 else
John McCallbc83b3f2010-05-20 23:23:51 +00001864 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001865 }
1866
Anders Carlsson43c64af2010-04-21 19:52:01 +00001867 // Keep track of the direct virtual bases.
1868 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1869 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1870 E = ClassDecl->bases_end(); I != E; ++I) {
1871 if (I->isVirtual())
1872 DirectVBases.insert(I);
1873 }
1874
Anders Carlssondb0a9652010-04-02 06:26:44 +00001875 // Push virtual bases before others.
1876 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1877 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1878
1879 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001880 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1881 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001882 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001883 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001884 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001885 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001886 VBase, IsInheritedVirtualBase,
1887 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001888 HadError = true;
1889 continue;
1890 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001891
John McCallbc83b3f2010-05-20 23:23:51 +00001892 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001893 }
1894 }
Mike Stump11289f42009-09-09 15:08:12 +00001895
John McCallbc83b3f2010-05-20 23:23:51 +00001896 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001897 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1898 E = ClassDecl->bases_end(); Base != E; ++Base) {
1899 // Virtuals are in the virtual base list and already constructed.
1900 if (Base->isVirtual())
1901 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001902
Anders Carlssondb0a9652010-04-02 06:26:44 +00001903 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001904 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1905 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001906 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001907 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001908 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001909 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001910 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001911 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001912 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001913 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001914
John McCallbc83b3f2010-05-20 23:23:51 +00001915 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001916 }
1917 }
Mike Stump11289f42009-09-09 15:08:12 +00001918
John McCallbc83b3f2010-05-20 23:23:51 +00001919 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001920 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001921 E = ClassDecl->field_end(); Field != E; ++Field) {
1922 if ((*Field)->getType()->isIncompleteArrayType()) {
1923 assert(ClassDecl->hasFlexibleArrayMember() &&
1924 "Incomplete array type is not valid");
1925 continue;
1926 }
John McCallbc83b3f2010-05-20 23:23:51 +00001927 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001928 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001929 }
Mike Stump11289f42009-09-09 15:08:12 +00001930
John McCallbc83b3f2010-05-20 23:23:51 +00001931 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001932 if (NumInitializers > 0) {
1933 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1934 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1935 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001936 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001937 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001938 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001939
John McCalla6309952010-03-16 21:39:52 +00001940 // Constructors implicitly reference the base and member
1941 // destructors.
1942 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1943 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001944 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001945
1946 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001947}
1948
Eli Friedman952c15d2009-07-21 19:28:10 +00001949static void *GetKeyForTopLevelField(FieldDecl *Field) {
1950 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001951 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001952 if (RT->getDecl()->isAnonymousStructOrUnion())
1953 return static_cast<void *>(RT->getDecl());
1954 }
1955 return static_cast<void *>(Field);
1956}
1957
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001958static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1959 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001960}
1961
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001962static void *GetKeyForMember(ASTContext &Context,
1963 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001964 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001965 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001966 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001967
Eli Friedman952c15d2009-07-21 19:28:10 +00001968 // For fields injected into the class via declaration of an anonymous union,
1969 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001970 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001971
Anders Carlssona942dcd2010-03-30 15:39:27 +00001972 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1973 // data member of the class. Data member used in the initializer list is
1974 // in AnonUnionMember field.
1975 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1976 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001977
John McCall23eebd92010-04-10 09:28:51 +00001978 // If the field is a member of an anonymous struct or union, our key
1979 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001980 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001981 if (RD->isAnonymousStructOrUnion()) {
1982 while (true) {
1983 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1984 if (Parent->isAnonymousStructOrUnion())
1985 RD = Parent;
1986 else
1987 break;
1988 }
1989
Anders Carlsson83ac3122010-03-30 16:19:37 +00001990 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00001991 }
Mike Stump11289f42009-09-09 15:08:12 +00001992
Anders Carlssona942dcd2010-03-30 15:39:27 +00001993 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00001994}
1995
Anders Carlssone857b292010-04-02 03:37:03 +00001996static void
1997DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001998 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00001999 CXXBaseOrMemberInitializer **Inits,
2000 unsigned NumInits) {
2001 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002002 return;
Mike Stump11289f42009-09-09 15:08:12 +00002003
John McCallbb7b6582010-04-10 07:37:23 +00002004 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2005 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002006 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002007
John McCallbb7b6582010-04-10 07:37:23 +00002008 // Build the list of bases and members in the order that they'll
2009 // actually be initialized. The explicit initializers should be in
2010 // this same order but may be missing things.
2011 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002012
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002013 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2014
John McCallbb7b6582010-04-10 07:37:23 +00002015 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002016 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002017 ClassDecl->vbases_begin(),
2018 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002019 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002020
John McCallbb7b6582010-04-10 07:37:23 +00002021 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002022 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002023 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002024 if (Base->isVirtual())
2025 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002026 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002027 }
Mike Stump11289f42009-09-09 15:08:12 +00002028
John McCallbb7b6582010-04-10 07:37:23 +00002029 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002030 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2031 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002032 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002033
John McCallbb7b6582010-04-10 07:37:23 +00002034 unsigned NumIdealInits = IdealInitKeys.size();
2035 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002036
John McCallbb7b6582010-04-10 07:37:23 +00002037 CXXBaseOrMemberInitializer *PrevInit = 0;
2038 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2039 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2040 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2041
2042 // Scan forward to try to find this initializer in the idealized
2043 // initializers list.
2044 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2045 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002046 break;
John McCallbb7b6582010-04-10 07:37:23 +00002047
2048 // If we didn't find this initializer, it must be because we
2049 // scanned past it on a previous iteration. That can only
2050 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002051 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002052 Sema::SemaDiagnosticBuilder D =
2053 SemaRef.Diag(PrevInit->getSourceLocation(),
2054 diag::warn_initializer_out_of_order);
2055
2056 if (PrevInit->isMemberInitializer())
2057 D << 0 << PrevInit->getMember()->getDeclName();
2058 else
2059 D << 1 << PrevInit->getBaseClassInfo()->getType();
2060
2061 if (Init->isMemberInitializer())
2062 D << 0 << Init->getMember()->getDeclName();
2063 else
2064 D << 1 << Init->getBaseClassInfo()->getType();
2065
2066 // Move back to the initializer's location in the ideal list.
2067 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2068 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002069 break;
John McCallbb7b6582010-04-10 07:37:23 +00002070
2071 assert(IdealIndex != NumIdealInits &&
2072 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002073 }
John McCallbb7b6582010-04-10 07:37:23 +00002074
2075 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002076 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002077}
2078
John McCall23eebd92010-04-10 09:28:51 +00002079namespace {
2080bool CheckRedundantInit(Sema &S,
2081 CXXBaseOrMemberInitializer *Init,
2082 CXXBaseOrMemberInitializer *&PrevInit) {
2083 if (!PrevInit) {
2084 PrevInit = Init;
2085 return false;
2086 }
2087
2088 if (FieldDecl *Field = Init->getMember())
2089 S.Diag(Init->getSourceLocation(),
2090 diag::err_multiple_mem_initialization)
2091 << Field->getDeclName()
2092 << Init->getSourceRange();
2093 else {
2094 Type *BaseClass = Init->getBaseClass();
2095 assert(BaseClass && "neither field nor base");
2096 S.Diag(Init->getSourceLocation(),
2097 diag::err_multiple_base_initialization)
2098 << QualType(BaseClass, 0)
2099 << Init->getSourceRange();
2100 }
2101 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2102 << 0 << PrevInit->getSourceRange();
2103
2104 return true;
2105}
2106
2107typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2108typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2109
2110bool CheckRedundantUnionInit(Sema &S,
2111 CXXBaseOrMemberInitializer *Init,
2112 RedundantUnionMap &Unions) {
2113 FieldDecl *Field = Init->getMember();
2114 RecordDecl *Parent = Field->getParent();
2115 if (!Parent->isAnonymousStructOrUnion())
2116 return false;
2117
2118 NamedDecl *Child = Field;
2119 do {
2120 if (Parent->isUnion()) {
2121 UnionEntry &En = Unions[Parent];
2122 if (En.first && En.first != Child) {
2123 S.Diag(Init->getSourceLocation(),
2124 diag::err_multiple_mem_union_initialization)
2125 << Field->getDeclName()
2126 << Init->getSourceRange();
2127 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2128 << 0 << En.second->getSourceRange();
2129 return true;
2130 } else if (!En.first) {
2131 En.first = Child;
2132 En.second = Init;
2133 }
2134 }
2135
2136 Child = Parent;
2137 Parent = cast<RecordDecl>(Parent->getDeclContext());
2138 } while (Parent->isAnonymousStructOrUnion());
2139
2140 return false;
2141}
2142}
2143
Anders Carlssone857b292010-04-02 03:37:03 +00002144/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00002145void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00002146 SourceLocation ColonLoc,
2147 MemInitTy **meminits, unsigned NumMemInits,
2148 bool AnyErrors) {
2149 if (!ConstructorDecl)
2150 return;
2151
2152 AdjustDeclIfTemplate(ConstructorDecl);
2153
2154 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002155 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00002156
2157 if (!Constructor) {
2158 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2159 return;
2160 }
2161
2162 CXXBaseOrMemberInitializer **MemInits =
2163 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002164
2165 // Mapping for the duplicate initializers check.
2166 // For member initializers, this is keyed with a FieldDecl*.
2167 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002168 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002169
2170 // Mapping for the inconsistent anonymous-union initializers check.
2171 RedundantUnionMap MemberUnions;
2172
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002173 bool HadError = false;
2174 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002175 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002176
Abramo Bagnara341d7832010-05-26 18:09:23 +00002177 // Set the source order index.
2178 Init->setSourceOrder(i);
2179
John McCall23eebd92010-04-10 09:28:51 +00002180 if (Init->isMemberInitializer()) {
2181 FieldDecl *Field = Init->getMember();
2182 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2183 CheckRedundantUnionInit(*this, Init, MemberUnions))
2184 HadError = true;
2185 } else {
2186 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2187 if (CheckRedundantInit(*this, Init, Members[Key]))
2188 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002189 }
Anders Carlssone857b292010-04-02 03:37:03 +00002190 }
2191
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002192 if (HadError)
2193 return;
2194
Anders Carlssone857b292010-04-02 03:37:03 +00002195 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002196
2197 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002198}
2199
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002200void
John McCalla6309952010-03-16 21:39:52 +00002201Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2202 CXXRecordDecl *ClassDecl) {
2203 // Ignore dependent contexts.
2204 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002205 return;
John McCall1064d7e2010-03-16 05:22:47 +00002206
2207 // FIXME: all the access-control diagnostics are positioned on the
2208 // field/base declaration. That's probably good; that said, the
2209 // user might reasonably want to know why the destructor is being
2210 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002211
Anders Carlssondee9a302009-11-17 04:44:12 +00002212 // Non-static data members.
2213 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2214 E = ClassDecl->field_end(); I != E; ++I) {
2215 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002216 if (Field->isInvalidDecl())
2217 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002218 QualType FieldType = Context.getBaseElementType(Field->getType());
2219
2220 const RecordType* RT = FieldType->getAs<RecordType>();
2221 if (!RT)
2222 continue;
2223
2224 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2225 if (FieldClassDecl->hasTrivialDestructor())
2226 continue;
2227
Douglas Gregore71edda2010-07-01 22:47:18 +00002228 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002229 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002230 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002231 << Field->getDeclName()
2232 << FieldType);
2233
John McCalla6309952010-03-16 21:39:52 +00002234 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002235 }
2236
John McCall1064d7e2010-03-16 05:22:47 +00002237 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2238
Anders Carlssondee9a302009-11-17 04:44:12 +00002239 // Bases.
2240 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2241 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002242 // Bases are always records in a well-formed non-dependent class.
2243 const RecordType *RT = Base->getType()->getAs<RecordType>();
2244
2245 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002246 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002247 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002248
2249 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002250 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002251 if (BaseClassDecl->hasTrivialDestructor())
2252 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002253
Douglas Gregore71edda2010-07-01 22:47:18 +00002254 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002255
2256 // FIXME: caret should be on the start of the class name
2257 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002258 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002259 << Base->getType()
2260 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002261
John McCalla6309952010-03-16 21:39:52 +00002262 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002263 }
2264
2265 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002266 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2267 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002268
2269 // Bases are always records in a well-formed non-dependent class.
2270 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2271
2272 // Ignore direct virtual bases.
2273 if (DirectVirtualBases.count(RT))
2274 continue;
2275
Anders Carlssondee9a302009-11-17 04:44:12 +00002276 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002277 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002278 if (BaseClassDecl->hasTrivialDestructor())
2279 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002280
Douglas Gregore71edda2010-07-01 22:47:18 +00002281 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002282 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002283 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002284 << VBase->getType());
2285
John McCalla6309952010-03-16 21:39:52 +00002286 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002287 }
2288}
2289
John McCall48871652010-08-21 09:40:31 +00002290void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002291 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002292 return;
Mike Stump11289f42009-09-09 15:08:12 +00002293
Mike Stump11289f42009-09-09 15:08:12 +00002294 if (CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002295 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002296 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002297}
2298
Mike Stump11289f42009-09-09 15:08:12 +00002299bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002300 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002301 if (SelID == -1)
John McCall02db245d2010-08-18 09:41:07 +00002302 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssoneabf7702009-08-27 00:13:57 +00002303 else
John McCall02db245d2010-08-18 09:41:07 +00002304 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump11289f42009-09-09 15:08:12 +00002305}
2306
Anders Carlssoneabf7702009-08-27 00:13:57 +00002307bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002308 const PartialDiagnostic &PD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002309 if (!getLangOptions().CPlusPlus)
2310 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002311
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002312 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall02db245d2010-08-18 09:41:07 +00002313 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump11289f42009-09-09 15:08:12 +00002314
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002315 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002316 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002317 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002318 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002319
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002320 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall02db245d2010-08-18 09:41:07 +00002321 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002322 }
Mike Stump11289f42009-09-09 15:08:12 +00002323
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002324 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002325 if (!RT)
2326 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002327
John McCall67da35c2010-02-04 22:26:26 +00002328 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002329
John McCall02db245d2010-08-18 09:41:07 +00002330 // We can't answer whether something is abstract until it has a
2331 // definition. If it's currently being defined, we'll walk back
2332 // over all the declarations when we have a full definition.
2333 const CXXRecordDecl *Def = RD->getDefinition();
2334 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00002335 return false;
2336
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002337 if (!RD->isAbstract())
2338 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002339
Anders Carlssoneabf7702009-08-27 00:13:57 +00002340 Diag(Loc, PD) << RD->getDeclName();
John McCall02db245d2010-08-18 09:41:07 +00002341 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002342
John McCall02db245d2010-08-18 09:41:07 +00002343 return true;
2344}
2345
2346void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2347 // Check if we've already emitted the list of pure virtual functions
2348 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002349 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00002350 return;
Mike Stump11289f42009-09-09 15:08:12 +00002351
Douglas Gregor4165bd62010-03-23 23:47:56 +00002352 CXXFinalOverriderMap FinalOverriders;
2353 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002354
Anders Carlssona2f74f32010-06-03 01:00:02 +00002355 // Keep a set of seen pure methods so we won't diagnose the same method
2356 // more than once.
2357 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2358
Douglas Gregor4165bd62010-03-23 23:47:56 +00002359 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2360 MEnd = FinalOverriders.end();
2361 M != MEnd;
2362 ++M) {
2363 for (OverridingMethods::iterator SO = M->second.begin(),
2364 SOEnd = M->second.end();
2365 SO != SOEnd; ++SO) {
2366 // C++ [class.abstract]p4:
2367 // A class is abstract if it contains or inherits at least one
2368 // pure virtual function for which the final overrider is pure
2369 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002370
Douglas Gregor4165bd62010-03-23 23:47:56 +00002371 //
2372 if (SO->second.size() != 1)
2373 continue;
2374
2375 if (!SO->second.front().Method->isPure())
2376 continue;
2377
Anders Carlssona2f74f32010-06-03 01:00:02 +00002378 if (!SeenPureMethods.insert(SO->second.front().Method))
2379 continue;
2380
Douglas Gregor4165bd62010-03-23 23:47:56 +00002381 Diag(SO->second.front().Method->getLocation(),
2382 diag::note_pure_virtual_function)
2383 << SO->second.front().Method->getDeclName();
2384 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002385 }
2386
2387 if (!PureVirtualClassDiagSet)
2388 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2389 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002390}
2391
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002392namespace {
John McCall02db245d2010-08-18 09:41:07 +00002393struct AbstractUsageInfo {
2394 Sema &S;
2395 CXXRecordDecl *Record;
2396 CanQualType AbstractType;
2397 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00002398
John McCall02db245d2010-08-18 09:41:07 +00002399 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2400 : S(S), Record(Record),
2401 AbstractType(S.Context.getCanonicalType(
2402 S.Context.getTypeDeclType(Record))),
2403 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002404
John McCall02db245d2010-08-18 09:41:07 +00002405 void DiagnoseAbstractType() {
2406 if (Invalid) return;
2407 S.DiagnoseAbstractType(Record);
2408 Invalid = true;
2409 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00002410
John McCall02db245d2010-08-18 09:41:07 +00002411 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2412};
2413
2414struct CheckAbstractUsage {
2415 AbstractUsageInfo &Info;
2416 const NamedDecl *Ctx;
2417
2418 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2419 : Info(Info), Ctx(Ctx) {}
2420
2421 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2422 switch (TL.getTypeLocClass()) {
2423#define ABSTRACT_TYPELOC(CLASS, PARENT)
2424#define TYPELOC(CLASS, PARENT) \
2425 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2426#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002427 }
John McCall02db245d2010-08-18 09:41:07 +00002428 }
Mike Stump11289f42009-09-09 15:08:12 +00002429
John McCall02db245d2010-08-18 09:41:07 +00002430 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2431 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2432 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2433 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2434 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002435 }
John McCall02db245d2010-08-18 09:41:07 +00002436 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002437
John McCall02db245d2010-08-18 09:41:07 +00002438 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2439 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2440 }
Mike Stump11289f42009-09-09 15:08:12 +00002441
John McCall02db245d2010-08-18 09:41:07 +00002442 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2443 // Visit the type parameters from a permissive context.
2444 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2445 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2446 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2447 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2448 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2449 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002450 }
John McCall02db245d2010-08-18 09:41:07 +00002451 }
Mike Stump11289f42009-09-09 15:08:12 +00002452
John McCall02db245d2010-08-18 09:41:07 +00002453 // Visit pointee types from a permissive context.
2454#define CheckPolymorphic(Type) \
2455 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2456 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2457 }
2458 CheckPolymorphic(PointerTypeLoc)
2459 CheckPolymorphic(ReferenceTypeLoc)
2460 CheckPolymorphic(MemberPointerTypeLoc)
2461 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00002462
John McCall02db245d2010-08-18 09:41:07 +00002463 /// Handle all the types we haven't given a more specific
2464 /// implementation for above.
2465 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2466 // Every other kind of type that we haven't called out already
2467 // that has an inner type is either (1) sugar or (2) contains that
2468 // inner type in some way as a subobject.
2469 if (TypeLoc Next = TL.getNextTypeLoc())
2470 return Visit(Next, Sel);
2471
2472 // If there's no inner type and we're in a permissive context,
2473 // don't diagnose.
2474 if (Sel == Sema::AbstractNone) return;
2475
2476 // Check whether the type matches the abstract type.
2477 QualType T = TL.getType();
2478 if (T->isArrayType()) {
2479 Sel = Sema::AbstractArrayType;
2480 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002481 }
John McCall02db245d2010-08-18 09:41:07 +00002482 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2483 if (CT != Info.AbstractType) return;
2484
2485 // It matched; do some magic.
2486 if (Sel == Sema::AbstractArrayType) {
2487 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2488 << T << TL.getSourceRange();
2489 } else {
2490 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2491 << Sel << T << TL.getSourceRange();
2492 }
2493 Info.DiagnoseAbstractType();
2494 }
2495};
2496
2497void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2498 Sema::AbstractDiagSelID Sel) {
2499 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2500}
2501
2502}
2503
2504/// Check for invalid uses of an abstract type in a method declaration.
2505static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2506 CXXMethodDecl *MD) {
2507 // No need to do the check on definitions, which require that
2508 // the return/param types be complete.
2509 if (MD->isThisDeclarationADefinition())
2510 return;
2511
2512 // For safety's sake, just ignore it if we don't have type source
2513 // information. This should never happen for non-implicit methods,
2514 // but...
2515 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2516 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2517}
2518
2519/// Check for invalid uses of an abstract type within a class definition.
2520static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2521 CXXRecordDecl *RD) {
2522 for (CXXRecordDecl::decl_iterator
2523 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2524 Decl *D = *I;
2525 if (D->isImplicit()) continue;
2526
2527 // Methods and method templates.
2528 if (isa<CXXMethodDecl>(D)) {
2529 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2530 } else if (isa<FunctionTemplateDecl>(D)) {
2531 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2532 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2533
2534 // Fields and static variables.
2535 } else if (isa<FieldDecl>(D)) {
2536 FieldDecl *FD = cast<FieldDecl>(D);
2537 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2538 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2539 } else if (isa<VarDecl>(D)) {
2540 VarDecl *VD = cast<VarDecl>(D);
2541 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2542 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2543
2544 // Nested classes and class templates.
2545 } else if (isa<CXXRecordDecl>(D)) {
2546 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2547 } else if (isa<ClassTemplateDecl>(D)) {
2548 CheckAbstractClassUsage(Info,
2549 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2550 }
2551 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002552}
2553
Douglas Gregorc99f1552009-12-03 18:33:45 +00002554/// \brief Perform semantic checks on a class definition that has been
2555/// completing, introducing implicitly-declared members, checking for
2556/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002557void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor8fb95122010-09-29 00:15:42 +00002558 if (!Record)
Douglas Gregorc99f1552009-12-03 18:33:45 +00002559 return;
2560
John McCall02db245d2010-08-18 09:41:07 +00002561 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2562 AbstractUsageInfo Info(*this, Record);
2563 CheckAbstractClassUsage(Info, Record);
2564 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00002565
2566 // If this is not an aggregate type and has no user-declared constructor,
2567 // complain about any non-static data members of reference or const scalar
2568 // type, since they will never get initializers.
2569 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2570 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2571 bool Complained = false;
2572 for (RecordDecl::field_iterator F = Record->field_begin(),
2573 FEnd = Record->field_end();
2574 F != FEnd; ++F) {
2575 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002576 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002577 if (!Complained) {
2578 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2579 << Record->getTagKind() << Record;
2580 Complained = true;
2581 }
2582
2583 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2584 << F->getType()->isReferenceType()
2585 << F->getDeclName();
2586 }
2587 }
2588 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002589
2590 if (Record->isDynamicClass())
2591 DynamicClasses.push_back(Record);
Douglas Gregor36c22a22010-10-15 13:21:21 +00002592
2593 if (Record->getIdentifier()) {
2594 // C++ [class.mem]p13:
2595 // If T is the name of a class, then each of the following shall have a
2596 // name different from T:
2597 // - every member of every anonymous union that is a member of class T.
2598 //
2599 // C++ [class.mem]p14:
2600 // In addition, if class T has a user-declared constructor (12.1), every
2601 // non-static data member of class T shall have a name different from T.
2602 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
2603 R.first != R.second; ++R.first)
2604 if (FieldDecl *Field = dyn_cast<FieldDecl>(*R.first)) {
2605 if (Record->hasUserDeclaredConstructor() ||
2606 !Field->getDeclContext()->Equals(Record)) {
2607 Diag(Field->getLocation(), diag::err_member_name_of_class)
2608 << Field->getDeclName();
2609 break;
2610 }
2611 }
2612 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002613}
2614
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002615void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00002616 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002617 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002618 SourceLocation RBrac,
2619 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002620 if (!TagDecl)
2621 return;
Mike Stump11289f42009-09-09 15:08:12 +00002622
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002623 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002624
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002625 ActOnFields(S, RLoc, TagDecl,
John McCall48871652010-08-21 09:40:31 +00002626 // strict aliasing violation!
2627 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002628 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002629
Douglas Gregor0be31a22010-07-02 17:43:08 +00002630 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00002631 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002632}
2633
Douglas Gregor95755162010-07-01 05:10:53 +00002634namespace {
2635 /// \brief Helper class that collects exception specifications for
2636 /// implicitly-declared special member functions.
2637 class ImplicitExceptionSpecification {
2638 ASTContext &Context;
2639 bool AllowsAllExceptions;
2640 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2641 llvm::SmallVector<QualType, 4> Exceptions;
2642
2643 public:
2644 explicit ImplicitExceptionSpecification(ASTContext &Context)
2645 : Context(Context), AllowsAllExceptions(false) { }
2646
2647 /// \brief Whether the special member function should have any
2648 /// exception specification at all.
2649 bool hasExceptionSpecification() const {
2650 return !AllowsAllExceptions;
2651 }
2652
2653 /// \brief Whether the special member function should have a
2654 /// throw(...) exception specification (a Microsoft extension).
2655 bool hasAnyExceptionSpecification() const {
2656 return false;
2657 }
2658
2659 /// \brief The number of exceptions in the exception specification.
2660 unsigned size() const { return Exceptions.size(); }
2661
2662 /// \brief The set of exceptions in the exception specification.
2663 const QualType *data() const { return Exceptions.data(); }
2664
2665 /// \brief Note that
2666 void CalledDecl(CXXMethodDecl *Method) {
2667 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002668 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002669 return;
2670
2671 const FunctionProtoType *Proto
2672 = Method->getType()->getAs<FunctionProtoType>();
2673
2674 // If this function can throw any exceptions, make a note of that.
2675 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2676 AllowsAllExceptions = true;
2677 ExceptionsSeen.clear();
2678 Exceptions.clear();
2679 return;
2680 }
2681
2682 // Record the exceptions in this function's exception specification.
2683 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2684 EEnd = Proto->exception_end();
2685 E != EEnd; ++E)
2686 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2687 Exceptions.push_back(*E);
2688 }
2689 };
2690}
2691
2692
Douglas Gregor05379422008-11-03 17:51:48 +00002693/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2694/// special functions, such as the default constructor, copy
2695/// constructor, or destructor, to the given C++ class (C++
2696/// [special]p1). This routine can only be executed just before the
2697/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002698void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002699 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00002700 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002701
Douglas Gregor54be3392010-07-01 17:57:27 +00002702 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00002703 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002704
Douglas Gregor330b9cf2010-07-02 21:50:04 +00002705 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2706 ++ASTContext::NumImplicitCopyAssignmentOperators;
2707
2708 // If we have a dynamic class, then the copy assignment operator may be
2709 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2710 // it shows up in the right place in the vtable and that we diagnose
2711 // problems with the implicit exception specification.
2712 if (ClassDecl->isDynamicClass())
2713 DeclareImplicitCopyAssignment(ClassDecl);
2714 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002715
Douglas Gregor7454c562010-07-02 20:37:36 +00002716 if (!ClassDecl->hasUserDeclaredDestructor()) {
2717 ++ASTContext::NumImplicitDestructors;
2718
2719 // If we have a dynamic class, then the destructor may be virtual, so we
2720 // have to declare the destructor immediately. This ensures that, e.g., it
2721 // shows up in the right place in the vtable and that we diagnose problems
2722 // with the implicit exception specification.
2723 if (ClassDecl->isDynamicClass())
2724 DeclareImplicitDestructor(ClassDecl);
2725 }
Douglas Gregor05379422008-11-03 17:51:48 +00002726}
2727
John McCall48871652010-08-21 09:40:31 +00002728void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002729 if (!D)
2730 return;
2731
2732 TemplateParameterList *Params = 0;
2733 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2734 Params = Template->getTemplateParameters();
2735 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2736 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2737 Params = PartialSpec->getTemplateParameters();
2738 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002739 return;
2740
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002741 for (TemplateParameterList::iterator Param = Params->begin(),
2742 ParamEnd = Params->end();
2743 Param != ParamEnd; ++Param) {
2744 NamedDecl *Named = cast<NamedDecl>(*Param);
2745 if (Named->getDeclName()) {
John McCall48871652010-08-21 09:40:31 +00002746 S->AddDecl(Named);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002747 IdResolver.AddDecl(Named);
2748 }
2749 }
2750}
2751
John McCall48871652010-08-21 09:40:31 +00002752void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002753 if (!RecordD) return;
2754 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00002755 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00002756 PushDeclContext(S, Record);
2757}
2758
John McCall48871652010-08-21 09:40:31 +00002759void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002760 if (!RecordD) return;
2761 PopDeclContext();
2762}
2763
Douglas Gregor4d87df52008-12-16 21:30:33 +00002764/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2765/// parsing a top-level (non-nested) C++ class, and we are now
2766/// parsing those parts of the given Method declaration that could
2767/// not be parsed earlier (C++ [class.mem]p2), such as default
2768/// arguments. This action should enter the scope of the given
2769/// Method declaration as if we had just parsed the qualified method
2770/// name. However, it should not bring the parameters into scope;
2771/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00002772void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002773}
2774
2775/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2776/// C++ method declaration. We're (re-)introducing the given
2777/// function parameter into scope for use in parsing later parts of
2778/// the method declaration. For example, we could see an
2779/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00002780void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002781 if (!ParamD)
2782 return;
Mike Stump11289f42009-09-09 15:08:12 +00002783
John McCall48871652010-08-21 09:40:31 +00002784 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00002785
2786 // If this parameter has an unparsed default argument, clear it out
2787 // to make way for the parsed default argument.
2788 if (Param->hasUnparsedDefaultArg())
2789 Param->setDefaultArg(0);
2790
John McCall48871652010-08-21 09:40:31 +00002791 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002792 if (Param->getDeclName())
2793 IdResolver.AddDecl(Param);
2794}
2795
2796/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2797/// processing the delayed method declaration for Method. The method
2798/// declaration is now considered finished. There may be a separate
2799/// ActOnStartOfFunctionDef action later (not necessarily
2800/// immediately!) for this method, if it was also defined inside the
2801/// class body.
John McCall48871652010-08-21 09:40:31 +00002802void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002803 if (!MethodD)
2804 return;
Mike Stump11289f42009-09-09 15:08:12 +00002805
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002806 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002807
John McCall48871652010-08-21 09:40:31 +00002808 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002809
2810 // Now that we have our default arguments, check the constructor
2811 // again. It could produce additional diagnostics or affect whether
2812 // the class has implicitly-declared destructors, among other
2813 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002814 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2815 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002816
2817 // Check the default arguments, which we may have added.
2818 if (!Method->isInvalidDecl())
2819 CheckCXXDefaultArguments(Method);
2820}
2821
Douglas Gregor831c93f2008-11-05 20:51:48 +00002822/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002823/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002824/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002825/// emit diagnostics and set the invalid bit to true. In any case, the type
2826/// will be updated to reflect a well-formed type for the constructor and
2827/// returned.
2828QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00002829 StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002830 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002831
2832 // C++ [class.ctor]p3:
2833 // A constructor shall not be virtual (10.3) or static (9.4). A
2834 // constructor can be invoked for a const, volatile or const
2835 // volatile object. A constructor shall not be declared const,
2836 // volatile, or const volatile (9.3.2).
2837 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002838 if (!D.isInvalidType())
2839 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2840 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2841 << SourceRange(D.getIdentifierLoc());
2842 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002843 }
John McCall8e7d6562010-08-26 03:08:43 +00002844 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002845 if (!D.isInvalidType())
2846 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2847 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2848 << SourceRange(D.getIdentifierLoc());
2849 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00002850 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002851 }
Mike Stump11289f42009-09-09 15:08:12 +00002852
Chris Lattner38378bf2009-04-25 08:28:21 +00002853 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2854 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002855 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002856 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2857 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002858 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002859 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2860 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002861 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002862 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2863 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002864 }
Mike Stump11289f42009-09-09 15:08:12 +00002865
Douglas Gregor831c93f2008-11-05 20:51:48 +00002866 // Rebuild the function type "R" without any type qualifiers (in
2867 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002868 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002869 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002870 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2871 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002872 Proto->isVariadic(), 0,
2873 Proto->hasExceptionSpec(),
2874 Proto->hasAnyExceptionSpec(),
2875 Proto->getNumExceptions(),
2876 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002877 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002878}
2879
Douglas Gregor4d87df52008-12-16 21:30:33 +00002880/// CheckConstructor - Checks a fully-formed constructor for
2881/// well-formedness, issuing any diagnostics required. Returns true if
2882/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002883void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002884 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002885 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2886 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002887 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002888
2889 // C++ [class.copy]p3:
2890 // A declaration of a constructor for a class X is ill-formed if
2891 // its first parameter is of type (optionally cv-qualified) X and
2892 // either there are no other parameters or else all other
2893 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002894 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002895 ((Constructor->getNumParams() == 1) ||
2896 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002897 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2898 Constructor->getTemplateSpecializationKind()
2899 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002900 QualType ParamType = Constructor->getParamDecl(0)->getType();
2901 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2902 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002903 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002904 const char *ConstRef
2905 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2906 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002907 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002908 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002909
2910 // FIXME: Rather that making the constructor invalid, we should endeavor
2911 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002912 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002913 }
2914 }
Douglas Gregor4d87df52008-12-16 21:30:33 +00002915}
2916
John McCalldeb646e2010-08-04 01:04:25 +00002917/// CheckDestructor - Checks a fully-formed destructor definition for
2918/// well-formedness, issuing any diagnostics required. Returns true
2919/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002920bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002921 CXXRecordDecl *RD = Destructor->getParent();
2922
2923 if (Destructor->isVirtual()) {
2924 SourceLocation Loc;
2925
2926 if (!Destructor->isImplicit())
2927 Loc = Destructor->getLocation();
2928 else
2929 Loc = RD->getLocation();
2930
2931 // If we have a virtual destructor, look up the deallocation function
2932 FunctionDecl *OperatorDelete = 0;
2933 DeclarationName Name =
2934 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00002935 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00002936 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00002937
2938 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00002939
2940 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00002941 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00002942
2943 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00002944}
2945
Mike Stump11289f42009-09-09 15:08:12 +00002946static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002947FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2948 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2949 FTI.ArgInfo[0].Param &&
John McCall48871652010-08-21 09:40:31 +00002950 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson5e965472009-04-30 23:18:11 +00002951}
2952
Douglas Gregor831c93f2008-11-05 20:51:48 +00002953/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2954/// the well-formednes of the destructor declarator @p D with type @p
2955/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002956/// emit diagnostics and set the declarator to invalid. Even if this happens,
2957/// will be updated to reflect a well-formed type for the destructor and
2958/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00002959QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00002960 StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002961 // C++ [class.dtor]p1:
2962 // [...] A typedef-name that names a class is a class-name
2963 // (7.1.3); however, a typedef-name that names a class shall not
2964 // be used as the identifier in the declarator for a destructor
2965 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00002966 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00002967 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00002968 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002969 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002970
2971 // C++ [class.dtor]p2:
2972 // A destructor is used to destroy objects of its class type. A
2973 // destructor takes no parameters, and no return type can be
2974 // specified for it (not even void). The address of a destructor
2975 // shall not be taken. A destructor shall not be static. A
2976 // destructor can be invoked for a const, volatile or const
2977 // volatile object. A destructor shall not be declared const,
2978 // volatile or const volatile (9.3.2).
John McCall8e7d6562010-08-26 03:08:43 +00002979 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002980 if (!D.isInvalidType())
2981 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2982 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00002983 << SourceRange(D.getIdentifierLoc())
2984 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2985
John McCall8e7d6562010-08-26 03:08:43 +00002986 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002987 }
Chris Lattner38378bf2009-04-25 08:28:21 +00002988 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002989 // Destructors don't have return types, but the parser will
2990 // happily parse something like:
2991 //
2992 // class X {
2993 // float ~X();
2994 // };
2995 //
2996 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00002997 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2998 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2999 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003000 }
Mike Stump11289f42009-09-09 15:08:12 +00003001
Chris Lattner38378bf2009-04-25 08:28:21 +00003002 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3003 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003004 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003005 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3006 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003007 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003008 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3009 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003010 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003011 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3012 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003013 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003014 }
3015
3016 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003017 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003018 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3019
3020 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003021 FTI.freeArgs();
3022 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003023 }
3024
Mike Stump11289f42009-09-09 15:08:12 +00003025 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003026 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003027 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003028 D.setInvalidType();
3029 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003030
3031 // Rebuild the function type "R" without any type qualifiers or
3032 // parameters (in case any of the errors above fired) and with
3033 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00003034 // types.
3035 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3036 if (!Proto)
3037 return QualType();
3038
Douglas Gregor36c569f2010-02-21 22:15:06 +00003039 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00003040 Proto->hasExceptionSpec(),
3041 Proto->hasAnyExceptionSpec(),
3042 Proto->getNumExceptions(),
3043 Proto->exception_begin(),
3044 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003045}
3046
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003047/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3048/// well-formednes of the conversion function declarator @p D with
3049/// type @p R. If there are any errors in the declarator, this routine
3050/// will emit diagnostics and return true. Otherwise, it will return
3051/// false. Either way, the type @p R will be updated to reflect a
3052/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003053void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCall8e7d6562010-08-26 03:08:43 +00003054 StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003055 // C++ [class.conv.fct]p1:
3056 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003057 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003058 // parameter returning conversion-type-id."
John McCall8e7d6562010-08-26 03:08:43 +00003059 if (SC == SC_Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003060 if (!D.isInvalidType())
3061 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3062 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3063 << SourceRange(D.getIdentifierLoc());
3064 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00003065 SC = SC_None;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003066 }
John McCall212fa2e2010-04-13 00:04:31 +00003067
3068 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3069
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003070 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003071 // Conversion functions don't have return types, but the parser will
3072 // happily parse something like:
3073 //
3074 // class X {
3075 // float operator bool();
3076 // };
3077 //
3078 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003079 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3080 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3081 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003082 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003083 }
3084
John McCall212fa2e2010-04-13 00:04:31 +00003085 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3086
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003087 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003088 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003089 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3090
3091 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003092 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003093 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003094 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003095 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003096 D.setInvalidType();
3097 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003098
John McCall212fa2e2010-04-13 00:04:31 +00003099 // Diagnose "&operator bool()" and other such nonsense. This
3100 // is actually a gcc extension which we don't support.
3101 if (Proto->getResultType() != ConvType) {
3102 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3103 << Proto->getResultType();
3104 D.setInvalidType();
3105 ConvType = Proto->getResultType();
3106 }
3107
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003108 // C++ [class.conv.fct]p4:
3109 // The conversion-type-id shall not represent a function type nor
3110 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003111 if (ConvType->isArrayType()) {
3112 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3113 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003114 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003115 } else if (ConvType->isFunctionType()) {
3116 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3117 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003118 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003119 }
3120
3121 // Rebuild the function type "R" without any parameters (in case any
3122 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003123 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003124 if (D.isInvalidType()) {
3125 R = Context.getFunctionType(ConvType, 0, 0, false,
3126 Proto->getTypeQuals(),
3127 Proto->hasExceptionSpec(),
3128 Proto->hasAnyExceptionSpec(),
3129 Proto->getNumExceptions(),
3130 Proto->exception_begin(),
3131 Proto->getExtInfo());
3132 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003133
Douglas Gregor5fb53972009-01-14 15:45:31 +00003134 // C++0x explicit conversion operators.
3135 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003136 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003137 diag::warn_explicit_conversion_functions)
3138 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003139}
3140
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003141/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3142/// the declaration of the given C++ conversion function. This routine
3143/// is responsible for recording the conversion function in the C++
3144/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00003145Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003146 assert(Conversion && "Expected to receive a conversion function declaration");
3147
Douglas Gregor4287b372008-12-12 08:25:50 +00003148 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003149
3150 // Make sure we aren't redeclaring the conversion function.
3151 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003152
3153 // C++ [class.conv.fct]p1:
3154 // [...] A conversion function is never used to convert a
3155 // (possibly cv-qualified) object to the (possibly cv-qualified)
3156 // same object type (or a reference to it), to a (possibly
3157 // cv-qualified) base class of that type (or a reference to it),
3158 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003159 // FIXME: Suppress this warning if the conversion function ends up being a
3160 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003161 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003162 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003163 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003164 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregor6309e3d2010-09-12 07:22:28 +00003165 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3166 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregore47191c2010-09-13 16:44:26 +00003167 /* Suppress diagnostics for instantiations. */;
Douglas Gregor6309e3d2010-09-12 07:22:28 +00003168 else if (ConvType->isRecordType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003169 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3170 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003171 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003172 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003173 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003174 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003175 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003176 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003177 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003178 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003179 }
3180
Douglas Gregor457104e2010-09-29 04:25:11 +00003181 if (FunctionTemplateDecl *ConversionTemplate
3182 = Conversion->getDescribedFunctionTemplate())
3183 return ConversionTemplate;
3184
John McCall48871652010-08-21 09:40:31 +00003185 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003186}
3187
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003188//===----------------------------------------------------------------------===//
3189// Namespace Handling
3190//===----------------------------------------------------------------------===//
3191
John McCallb1be5232010-08-26 09:15:37 +00003192
3193
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003194/// ActOnStartNamespaceDef - This is called at the start of a namespace
3195/// definition.
John McCall48871652010-08-21 09:40:31 +00003196Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redl67667942010-08-27 23:12:46 +00003197 SourceLocation InlineLoc,
John McCallb1be5232010-08-26 09:15:37 +00003198 SourceLocation IdentLoc,
3199 IdentifierInfo *II,
3200 SourceLocation LBrace,
3201 AttributeList *AttrList) {
Douglas Gregor086cae62010-08-19 20:55:47 +00003202 // anonymous namespace starts at its left brace
3203 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3204 (II ? IdentLoc : LBrace) , II);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003205 Namespc->setLBracLoc(LBrace);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003206 Namespc->setInline(InlineLoc.isValid());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003207
3208 Scope *DeclRegionScope = NamespcScope->getParent();
3209
Anders Carlssona7bcade2010-02-07 01:09:23 +00003210 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3211
Eli Friedman570024a2010-08-05 06:57:20 +00003212 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
John McCallb1be5232010-08-26 09:15:37 +00003213 PushVisibilityAttr(attr);
Eli Friedman570024a2010-08-05 06:57:20 +00003214
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003215 if (II) {
3216 // C++ [namespace.def]p2:
Douglas Gregor412c3622010-10-22 15:24:46 +00003217 // The identifier in an original-namespace-definition shall not
3218 // have been previously defined in the declarative region in
3219 // which the original-namespace-definition appears. The
3220 // identifier in an original-namespace-definition is the name of
3221 // the namespace. Subsequently in that declarative region, it is
3222 // treated as an original-namespace-name.
3223 //
3224 // Since namespace names are unique in their scope, and we don't
3225 // look through using directives, just
3226 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3227 NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
Mike Stump11289f42009-09-09 15:08:12 +00003228
Douglas Gregor91f84212008-12-11 16:49:14 +00003229 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3230 // This is an extended namespace definition.
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003231 if (Namespc->isInline() != OrigNS->isInline()) {
3232 // inline-ness must match
3233 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3234 << Namespc->isInline();
3235 Diag(OrigNS->getLocation(), diag::note_previous_definition);
3236 Namespc->setInvalidDecl();
3237 // Recover by ignoring the new namespace's inline status.
3238 Namespc->setInline(OrigNS->isInline());
3239 }
3240
Douglas Gregor91f84212008-12-11 16:49:14 +00003241 // Attach this namespace decl to the chain of extended namespace
3242 // definitions.
3243 OrigNS->setNextNamespace(Namespc);
3244 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003245
Mike Stump11289f42009-09-09 15:08:12 +00003246 // Remove the previous declaration from the scope.
John McCall48871652010-08-21 09:40:31 +00003247 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003248 IdResolver.RemoveDecl(OrigNS);
John McCall48871652010-08-21 09:40:31 +00003249 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003250 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003251 } else if (PrevDecl) {
3252 // This is an invalid name redefinition.
3253 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3254 << Namespc->getDeclName();
3255 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3256 Namespc->setInvalidDecl();
3257 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003258 } else if (II->isStr("std") &&
Sebastian Redl50c68252010-08-31 00:36:30 +00003259 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003260 // This is the first "real" definition of the namespace "std", so update
3261 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003262 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003263 // We had already defined a dummy namespace "std". Link this new
3264 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003265 StdNS->setNextNamespace(Namespc);
3266 StdNS->setLocation(IdentLoc);
3267 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00003268 }
3269
3270 // Make our StdNamespace cache point at the first real definition of the
3271 // "std" namespace.
3272 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003273 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003274
3275 PushOnScopeChains(Namespc, DeclRegionScope);
3276 } else {
John McCall4fa53422009-10-01 00:25:31 +00003277 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003278 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003279
3280 // Link the anonymous namespace into its parent.
3281 NamespaceDecl *PrevDecl;
Sebastian Redl50c68252010-08-31 00:36:30 +00003282 DeclContext *Parent = CurContext->getRedeclContext();
John McCall0db42252009-12-16 02:06:49 +00003283 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3284 PrevDecl = TU->getAnonymousNamespace();
3285 TU->setAnonymousNamespace(Namespc);
3286 } else {
3287 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3288 PrevDecl = ND->getAnonymousNamespace();
3289 ND->setAnonymousNamespace(Namespc);
3290 }
3291
3292 // Link the anonymous namespace with its previous declaration.
3293 if (PrevDecl) {
3294 assert(PrevDecl->isAnonymousNamespace());
3295 assert(!PrevDecl->getNextNamespace());
3296 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3297 PrevDecl->setNextNamespace(Namespc);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003298
3299 if (Namespc->isInline() != PrevDecl->isInline()) {
3300 // inline-ness must match
3301 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3302 << Namespc->isInline();
3303 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3304 Namespc->setInvalidDecl();
3305 // Recover by ignoring the new namespace's inline status.
3306 Namespc->setInline(PrevDecl->isInline());
3307 }
John McCall0db42252009-12-16 02:06:49 +00003308 }
John McCall4fa53422009-10-01 00:25:31 +00003309
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003310 CurContext->addDecl(Namespc);
3311
John McCall4fa53422009-10-01 00:25:31 +00003312 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3313 // behaves as if it were replaced by
3314 // namespace unique { /* empty body */ }
3315 // using namespace unique;
3316 // namespace unique { namespace-body }
3317 // where all occurrences of 'unique' in a translation unit are
3318 // replaced by the same identifier and this identifier differs
3319 // from all other identifiers in the entire program.
3320
3321 // We just create the namespace with an empty name and then add an
3322 // implicit using declaration, just like the standard suggests.
3323 //
3324 // CodeGen enforces the "universally unique" aspect by giving all
3325 // declarations semantically contained within an anonymous
3326 // namespace internal linkage.
3327
John McCall0db42252009-12-16 02:06:49 +00003328 if (!PrevDecl) {
3329 UsingDirectiveDecl* UD
3330 = UsingDirectiveDecl::Create(Context, CurContext,
3331 /* 'using' */ LBrace,
3332 /* 'namespace' */ SourceLocation(),
3333 /* qualifier */ SourceRange(),
3334 /* NNS */ NULL,
3335 /* identifier */ SourceLocation(),
3336 Namespc,
3337 /* Ancestor */ CurContext);
3338 UD->setImplicit();
3339 CurContext->addDecl(UD);
3340 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003341 }
3342
3343 // Although we could have an invalid decl (i.e. the namespace name is a
3344 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003345 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3346 // for the namespace has the declarations that showed up in that particular
3347 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003348 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00003349 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003350}
3351
Sebastian Redla6602e92009-11-23 15:34:23 +00003352/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3353/// is a namespace alias, returns the namespace it points to.
3354static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3355 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3356 return AD->getNamespace();
3357 return dyn_cast_or_null<NamespaceDecl>(D);
3358}
3359
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003360/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3361/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00003362void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003363 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3364 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3365 Namespc->setRBracLoc(RBrace);
3366 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00003367 if (Namespc->hasAttr<VisibilityAttr>())
3368 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003369}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003370
John McCall28a0cf72010-08-25 07:42:41 +00003371CXXRecordDecl *Sema::getStdBadAlloc() const {
3372 return cast_or_null<CXXRecordDecl>(
3373 StdBadAlloc.get(Context.getExternalSource()));
3374}
3375
3376NamespaceDecl *Sema::getStdNamespace() const {
3377 return cast_or_null<NamespaceDecl>(
3378 StdNamespace.get(Context.getExternalSource()));
3379}
3380
Douglas Gregorcdf87022010-06-29 17:53:46 +00003381/// \brief Retrieve the special "std" namespace, which may require us to
3382/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003383NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00003384 if (!StdNamespace) {
3385 // The "std" namespace has not yet been defined, so build one implicitly.
3386 StdNamespace = NamespaceDecl::Create(Context,
3387 Context.getTranslationUnitDecl(),
3388 SourceLocation(),
3389 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003390 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003391 }
3392
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003393 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00003394}
3395
John McCall48871652010-08-21 09:40:31 +00003396Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00003397 SourceLocation UsingLoc,
3398 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003399 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003400 SourceLocation IdentLoc,
3401 IdentifierInfo *NamespcName,
3402 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003403 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3404 assert(NamespcName && "Invalid NamespcName.");
3405 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall9b72f892010-11-10 02:40:36 +00003406
3407 // This can only happen along a recovery path.
3408 while (S->getFlags() & Scope::TemplateParamScope)
3409 S = S->getParent();
Douglas Gregor889ceb72009-02-03 19:21:40 +00003410 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003411
Douglas Gregor889ceb72009-02-03 19:21:40 +00003412 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003413 NestedNameSpecifier *Qualifier = 0;
3414 if (SS.isSet())
3415 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3416
Douglas Gregor34074322009-01-14 22:20:51 +00003417 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003418 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3419 LookupParsedName(R, S, &SS);
3420 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00003421 return 0;
John McCall27b18f82009-11-17 02:14:36 +00003422
Douglas Gregorcdf87022010-06-29 17:53:46 +00003423 if (R.empty()) {
3424 // Allow "using namespace std;" or "using namespace ::std;" even if
3425 // "std" hasn't been defined yet, for GCC compatibility.
3426 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3427 NamespcName->isStr("std")) {
3428 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003429 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00003430 R.resolveKind();
3431 }
3432 // Otherwise, attempt typo correction.
3433 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3434 CTC_NoKeywords, 0)) {
3435 if (R.getAsSingle<NamespaceDecl>() ||
3436 R.getAsSingle<NamespaceAliasDecl>()) {
3437 if (DeclContext *DC = computeDeclContext(SS, false))
3438 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3439 << NamespcName << DC << Corrected << SS.getRange()
3440 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3441 else
3442 Diag(IdentLoc, diag::err_using_directive_suggest)
3443 << NamespcName << Corrected
3444 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3445 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3446 << Corrected;
3447
3448 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003449 } else {
3450 R.clear();
3451 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003452 }
3453 }
3454 }
3455
John McCall9f3059a2009-10-09 21:13:30 +00003456 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003457 NamedDecl *Named = R.getFoundDecl();
3458 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3459 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003460 // C++ [namespace.udir]p1:
3461 // A using-directive specifies that the names in the nominated
3462 // namespace can be used in the scope in which the
3463 // using-directive appears after the using-directive. During
3464 // unqualified name lookup (3.4.1), the names appear as if they
3465 // were declared in the nearest enclosing namespace which
3466 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003467 // namespace. [Note: in this context, "contains" means "contains
3468 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003469
3470 // Find enclosing context containing both using-directive and
3471 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003472 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003473 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3474 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3475 CommonAncestor = CommonAncestor->getParent();
3476
Sebastian Redla6602e92009-11-23 15:34:23 +00003477 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003478 SS.getRange(),
3479 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003480 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003481 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003482 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003483 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003484 }
3485
Douglas Gregor889ceb72009-02-03 19:21:40 +00003486 // FIXME: We ignore attributes for now.
John McCall48871652010-08-21 09:40:31 +00003487 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00003488}
3489
3490void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3491 // If scope has associated entity, then using directive is at namespace
3492 // or translation unit scope. We add UsingDirectiveDecls, into
3493 // it's lookup structure.
3494 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003495 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003496 else
3497 // Otherwise it is block-sope. using-directives will affect lookup
3498 // only to the end of scope.
John McCall48871652010-08-21 09:40:31 +00003499 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003500}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003501
Douglas Gregorfec52632009-06-20 00:51:54 +00003502
John McCall48871652010-08-21 09:40:31 +00003503Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall9b72f892010-11-10 02:40:36 +00003504 AccessSpecifier AS,
3505 bool HasUsingKeyword,
3506 SourceLocation UsingLoc,
3507 CXXScopeSpec &SS,
3508 UnqualifiedId &Name,
3509 AttributeList *AttrList,
3510 bool IsTypeName,
3511 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003512 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003513
Douglas Gregor220f4272009-11-04 16:30:06 +00003514 switch (Name.getKind()) {
3515 case UnqualifiedId::IK_Identifier:
3516 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003517 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003518 case UnqualifiedId::IK_ConversionFunctionId:
3519 break;
3520
3521 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003522 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003523 // C++0x inherited constructors.
3524 if (getLangOptions().CPlusPlus0x) break;
3525
Douglas Gregor220f4272009-11-04 16:30:06 +00003526 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3527 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003528 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003529
3530 case UnqualifiedId::IK_DestructorName:
3531 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3532 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003533 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003534
3535 case UnqualifiedId::IK_TemplateId:
3536 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3537 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCall48871652010-08-21 09:40:31 +00003538 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003539 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003540
3541 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3542 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00003543 if (!TargetName)
John McCall48871652010-08-21 09:40:31 +00003544 return 0;
John McCall3969e302009-12-08 07:46:18 +00003545
John McCalla0097262009-12-11 02:10:03 +00003546 // Warn about using declarations.
3547 // TODO: store that the declaration was written without 'using' and
3548 // talk about access decls instead of using decls in the
3549 // diagnostics.
3550 if (!HasUsingKeyword) {
3551 UsingLoc = Name.getSourceRange().getBegin();
3552
3553 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003554 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003555 }
3556
John McCall3f746822009-11-17 05:59:44 +00003557 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003558 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003559 /* IsInstantiation */ false,
3560 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003561 if (UD)
3562 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003563
John McCall48871652010-08-21 09:40:31 +00003564 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00003565}
3566
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003567/// \brief Determine whether a using declaration considers the given
3568/// declarations as "equivalent", e.g., if they are redeclarations of
3569/// the same entity or are both typedefs of the same type.
3570static bool
3571IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3572 bool &SuppressRedeclaration) {
3573 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3574 SuppressRedeclaration = false;
3575 return true;
3576 }
3577
3578 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3579 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3580 SuppressRedeclaration = true;
3581 return Context.hasSameType(TD1->getUnderlyingType(),
3582 TD2->getUnderlyingType());
3583 }
3584
3585 return false;
3586}
3587
3588
John McCall84d87672009-12-10 09:41:52 +00003589/// Determines whether to create a using shadow decl for a particular
3590/// decl, given the set of decls existing prior to this using lookup.
3591bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3592 const LookupResult &Previous) {
3593 // Diagnose finding a decl which is not from a base class of the
3594 // current class. We do this now because there are cases where this
3595 // function will silently decide not to build a shadow decl, which
3596 // will pre-empt further diagnostics.
3597 //
3598 // We don't need to do this in C++0x because we do the check once on
3599 // the qualifier.
3600 //
3601 // FIXME: diagnose the following if we care enough:
3602 // struct A { int foo; };
3603 // struct B : A { using A::foo; };
3604 // template <class T> struct C : A {};
3605 // template <class T> struct D : C<T> { using B::foo; } // <---
3606 // This is invalid (during instantiation) in C++03 because B::foo
3607 // resolves to the using decl in B, which is not a base class of D<T>.
3608 // We can't diagnose it immediately because C<T> is an unknown
3609 // specialization. The UsingShadowDecl in D<T> then points directly
3610 // to A::foo, which will look well-formed when we instantiate.
3611 // The right solution is to not collapse the shadow-decl chain.
3612 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3613 DeclContext *OrigDC = Orig->getDeclContext();
3614
3615 // Handle enums and anonymous structs.
3616 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3617 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3618 while (OrigRec->isAnonymousStructOrUnion())
3619 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3620
3621 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3622 if (OrigDC == CurContext) {
3623 Diag(Using->getLocation(),
3624 diag::err_using_decl_nested_name_specifier_is_current_class)
3625 << Using->getNestedNameRange();
3626 Diag(Orig->getLocation(), diag::note_using_decl_target);
3627 return true;
3628 }
3629
3630 Diag(Using->getNestedNameRange().getBegin(),
3631 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3632 << Using->getTargetNestedNameDecl()
3633 << cast<CXXRecordDecl>(CurContext)
3634 << Using->getNestedNameRange();
3635 Diag(Orig->getLocation(), diag::note_using_decl_target);
3636 return true;
3637 }
3638 }
3639
3640 if (Previous.empty()) return false;
3641
3642 NamedDecl *Target = Orig;
3643 if (isa<UsingShadowDecl>(Target))
3644 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3645
John McCalla17e83e2009-12-11 02:33:26 +00003646 // If the target happens to be one of the previous declarations, we
3647 // don't have a conflict.
3648 //
3649 // FIXME: but we might be increasing its access, in which case we
3650 // should redeclare it.
3651 NamedDecl *NonTag = 0, *Tag = 0;
3652 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3653 I != E; ++I) {
3654 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003655 bool Result;
3656 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3657 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00003658
3659 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3660 }
3661
John McCall84d87672009-12-10 09:41:52 +00003662 if (Target->isFunctionOrFunctionTemplate()) {
3663 FunctionDecl *FD;
3664 if (isa<FunctionTemplateDecl>(Target))
3665 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3666 else
3667 FD = cast<FunctionDecl>(Target);
3668
3669 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003670 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003671 case Ovl_Overload:
3672 return false;
3673
3674 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003675 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003676 break;
3677
3678 // We found a decl with the exact signature.
3679 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003680 // If we're in a record, we want to hide the target, so we
3681 // return true (without a diagnostic) to tell the caller not to
3682 // build a shadow decl.
3683 if (CurContext->isRecord())
3684 return true;
3685
3686 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003687 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003688 break;
3689 }
3690
3691 Diag(Target->getLocation(), diag::note_using_decl_target);
3692 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3693 return true;
3694 }
3695
3696 // Target is not a function.
3697
John McCall84d87672009-12-10 09:41:52 +00003698 if (isa<TagDecl>(Target)) {
3699 // No conflict between a tag and a non-tag.
3700 if (!Tag) return false;
3701
John McCalle29c5cd2009-12-10 19:51:03 +00003702 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003703 Diag(Target->getLocation(), diag::note_using_decl_target);
3704 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3705 return true;
3706 }
3707
3708 // No conflict between a tag and a non-tag.
3709 if (!NonTag) return false;
3710
John McCalle29c5cd2009-12-10 19:51:03 +00003711 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003712 Diag(Target->getLocation(), diag::note_using_decl_target);
3713 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3714 return true;
3715}
3716
John McCall3f746822009-11-17 05:59:44 +00003717/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003718UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003719 UsingDecl *UD,
3720 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003721
3722 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003723 NamedDecl *Target = Orig;
3724 if (isa<UsingShadowDecl>(Target)) {
3725 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3726 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003727 }
3728
3729 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003730 = UsingShadowDecl::Create(Context, CurContext,
3731 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003732 UD->addShadowDecl(Shadow);
Douglas Gregor457104e2010-09-29 04:25:11 +00003733
3734 Shadow->setAccess(UD->getAccess());
3735 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3736 Shadow->setInvalidDecl();
3737
John McCall3f746822009-11-17 05:59:44 +00003738 if (S)
John McCall3969e302009-12-08 07:46:18 +00003739 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003740 else
John McCall3969e302009-12-08 07:46:18 +00003741 CurContext->addDecl(Shadow);
John McCall3f746822009-11-17 05:59:44 +00003742
John McCall3969e302009-12-08 07:46:18 +00003743
John McCall84d87672009-12-10 09:41:52 +00003744 return Shadow;
3745}
John McCall3969e302009-12-08 07:46:18 +00003746
John McCall84d87672009-12-10 09:41:52 +00003747/// Hides a using shadow declaration. This is required by the current
3748/// using-decl implementation when a resolvable using declaration in a
3749/// class is followed by a declaration which would hide or override
3750/// one or more of the using decl's targets; for example:
3751///
3752/// struct Base { void foo(int); };
3753/// struct Derived : Base {
3754/// using Base::foo;
3755/// void foo(int);
3756/// };
3757///
3758/// The governing language is C++03 [namespace.udecl]p12:
3759///
3760/// When a using-declaration brings names from a base class into a
3761/// derived class scope, member functions in the derived class
3762/// override and/or hide member functions with the same name and
3763/// parameter types in a base class (rather than conflicting).
3764///
3765/// There are two ways to implement this:
3766/// (1) optimistically create shadow decls when they're not hidden
3767/// by existing declarations, or
3768/// (2) don't create any shadow decls (or at least don't make them
3769/// visible) until we've fully parsed/instantiated the class.
3770/// The problem with (1) is that we might have to retroactively remove
3771/// a shadow decl, which requires several O(n) operations because the
3772/// decl structures are (very reasonably) not designed for removal.
3773/// (2) avoids this but is very fiddly and phase-dependent.
3774void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003775 if (Shadow->getDeclName().getNameKind() ==
3776 DeclarationName::CXXConversionFunctionName)
3777 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3778
John McCall84d87672009-12-10 09:41:52 +00003779 // Remove it from the DeclContext...
3780 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003781
John McCall84d87672009-12-10 09:41:52 +00003782 // ...and the scope, if applicable...
3783 if (S) {
John McCall48871652010-08-21 09:40:31 +00003784 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003785 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003786 }
3787
John McCall84d87672009-12-10 09:41:52 +00003788 // ...and the using decl.
3789 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3790
3791 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003792 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003793}
3794
John McCalle61f2ba2009-11-18 02:36:19 +00003795/// Builds a using declaration.
3796///
3797/// \param IsInstantiation - Whether this call arises from an
3798/// instantiation of an unresolved using declaration. We treat
3799/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003800NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3801 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003802 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003803 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003804 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003805 bool IsInstantiation,
3806 bool IsTypeName,
3807 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003808 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003809 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00003810 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003811
Anders Carlssonf038fc22009-08-28 05:49:21 +00003812 // FIXME: We ignore attributes for now.
Mike Stump11289f42009-09-09 15:08:12 +00003813
Anders Carlsson59140b32009-08-28 03:16:11 +00003814 if (SS.isEmpty()) {
3815 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003816 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003817 }
Mike Stump11289f42009-09-09 15:08:12 +00003818
John McCall84d87672009-12-10 09:41:52 +00003819 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003820 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00003821 ForRedeclaration);
3822 Previous.setHideTags(false);
3823 if (S) {
3824 LookupName(Previous, S);
3825
3826 // It is really dumb that we have to do this.
3827 LookupResult::Filter F = Previous.makeFilter();
3828 while (F.hasNext()) {
3829 NamedDecl *D = F.next();
3830 if (!isDeclInScope(D, CurContext, S))
3831 F.erase();
3832 }
3833 F.done();
3834 } else {
3835 assert(IsInstantiation && "no scope in non-instantiation");
3836 assert(CurContext->isRecord() && "scope not record in instantiation");
3837 LookupQualifiedName(Previous, CurContext);
3838 }
3839
Mike Stump11289f42009-09-09 15:08:12 +00003840 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003841 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3842
John McCall84d87672009-12-10 09:41:52 +00003843 // Check for invalid redeclarations.
3844 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3845 return 0;
3846
3847 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003848 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3849 return 0;
3850
John McCall84c16cf2009-11-12 03:15:40 +00003851 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003852 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003853 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003854 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003855 // FIXME: not all declaration name kinds are legal here
3856 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3857 UsingLoc, TypenameLoc,
3858 SS.getRange(), NNS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003859 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00003860 } else {
3861 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003862 UsingLoc, SS.getRange(),
3863 NNS, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00003864 }
John McCallb96ec562009-12-04 22:46:56 +00003865 } else {
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003866 D = UsingDecl::Create(Context, CurContext,
3867 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00003868 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003869 }
John McCallb96ec562009-12-04 22:46:56 +00003870 D->setAccess(AS);
3871 CurContext->addDecl(D);
3872
3873 if (!LookupContext) return D;
3874 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003875
John McCall0b66eb32010-05-01 00:40:08 +00003876 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003877 UD->setInvalidDecl();
3878 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003879 }
3880
John McCall3969e302009-12-08 07:46:18 +00003881 // Look up the target name.
3882
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003883 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003884
John McCall3969e302009-12-08 07:46:18 +00003885 // Unlike most lookups, we don't always want to hide tag
3886 // declarations: tag names are visible through the using declaration
3887 // even if hidden by ordinary names, *except* in a dependent context
3888 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003889 if (!IsInstantiation)
3890 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003891
John McCall27b18f82009-11-17 02:14:36 +00003892 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003893
John McCall9f3059a2009-10-09 21:13:30 +00003894 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003895 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003896 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003897 UD->setInvalidDecl();
3898 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003899 }
3900
John McCallb96ec562009-12-04 22:46:56 +00003901 if (R.isAmbiguous()) {
3902 UD->setInvalidDecl();
3903 return UD;
3904 }
Mike Stump11289f42009-09-09 15:08:12 +00003905
John McCalle61f2ba2009-11-18 02:36:19 +00003906 if (IsTypeName) {
3907 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003908 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003909 Diag(IdentLoc, diag::err_using_typename_non_type);
3910 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3911 Diag((*I)->getUnderlyingDecl()->getLocation(),
3912 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003913 UD->setInvalidDecl();
3914 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003915 }
3916 } else {
3917 // If we asked for a non-typename and we got a type, error out,
3918 // but only if this is an instantiation of an unresolved using
3919 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003920 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003921 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3922 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003923 UD->setInvalidDecl();
3924 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003925 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003926 }
3927
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003928 // C++0x N2914 [namespace.udecl]p6:
3929 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003930 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003931 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3932 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003933 UD->setInvalidDecl();
3934 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003935 }
Mike Stump11289f42009-09-09 15:08:12 +00003936
John McCall84d87672009-12-10 09:41:52 +00003937 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3938 if (!CheckUsingShadowDecl(UD, *I, Previous))
3939 BuildUsingShadowDecl(S, UD, *I);
3940 }
John McCall3f746822009-11-17 05:59:44 +00003941
3942 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003943}
3944
John McCall84d87672009-12-10 09:41:52 +00003945/// Checks that the given using declaration is not an invalid
3946/// redeclaration. Note that this is checking only for the using decl
3947/// itself, not for any ill-formedness among the UsingShadowDecls.
3948bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3949 bool isTypeName,
3950 const CXXScopeSpec &SS,
3951 SourceLocation NameLoc,
3952 const LookupResult &Prev) {
3953 // C++03 [namespace.udecl]p8:
3954 // C++0x [namespace.udecl]p10:
3955 // A using-declaration is a declaration and can therefore be used
3956 // repeatedly where (and only where) multiple declarations are
3957 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003958 //
3959 // That's in non-member contexts.
Sebastian Redl50c68252010-08-31 00:36:30 +00003960 if (!CurContext->getRedeclContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003961 return false;
3962
3963 NestedNameSpecifier *Qual
3964 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3965
3966 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3967 NamedDecl *D = *I;
3968
3969 bool DTypename;
3970 NestedNameSpecifier *DQual;
3971 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3972 DTypename = UD->isTypeName();
3973 DQual = UD->getTargetNestedNameDecl();
3974 } else if (UnresolvedUsingValueDecl *UD
3975 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3976 DTypename = false;
3977 DQual = UD->getTargetNestedNameSpecifier();
3978 } else if (UnresolvedUsingTypenameDecl *UD
3979 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3980 DTypename = true;
3981 DQual = UD->getTargetNestedNameSpecifier();
3982 } else continue;
3983
3984 // using decls differ if one says 'typename' and the other doesn't.
3985 // FIXME: non-dependent using decls?
3986 if (isTypeName != DTypename) continue;
3987
3988 // using decls differ if they name different scopes (but note that
3989 // template instantiation can cause this check to trigger when it
3990 // didn't before instantiation).
3991 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3992 Context.getCanonicalNestedNameSpecifier(DQual))
3993 continue;
3994
3995 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003996 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003997 return true;
3998 }
3999
4000 return false;
4001}
4002
John McCall3969e302009-12-08 07:46:18 +00004003
John McCallb96ec562009-12-04 22:46:56 +00004004/// Checks that the given nested-name qualifier used in a using decl
4005/// in the current context is appropriately related to the current
4006/// scope. If an error is found, diagnoses it and returns true.
4007bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4008 const CXXScopeSpec &SS,
4009 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00004010 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00004011
John McCall3969e302009-12-08 07:46:18 +00004012 if (!CurContext->isRecord()) {
4013 // C++03 [namespace.udecl]p3:
4014 // C++0x [namespace.udecl]p8:
4015 // A using-declaration for a class member shall be a member-declaration.
4016
4017 // If we weren't able to compute a valid scope, it must be a
4018 // dependent class scope.
4019 if (!NamedContext || NamedContext->isRecord()) {
4020 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4021 << SS.getRange();
4022 return true;
4023 }
4024
4025 // Otherwise, everything is known to be fine.
4026 return false;
4027 }
4028
4029 // The current scope is a record.
4030
4031 // If the named context is dependent, we can't decide much.
4032 if (!NamedContext) {
4033 // FIXME: in C++0x, we can diagnose if we can prove that the
4034 // nested-name-specifier does not refer to a base class, which is
4035 // still possible in some cases.
4036
4037 // Otherwise we have to conservatively report that things might be
4038 // okay.
4039 return false;
4040 }
4041
4042 if (!NamedContext->isRecord()) {
4043 // Ideally this would point at the last name in the specifier,
4044 // but we don't have that level of source info.
4045 Diag(SS.getRange().getBegin(),
4046 diag::err_using_decl_nested_name_specifier_is_not_class)
4047 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4048 return true;
4049 }
4050
4051 if (getLangOptions().CPlusPlus0x) {
4052 // C++0x [namespace.udecl]p3:
4053 // In a using-declaration used as a member-declaration, the
4054 // nested-name-specifier shall name a base class of the class
4055 // being defined.
4056
4057 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4058 cast<CXXRecordDecl>(NamedContext))) {
4059 if (CurContext == NamedContext) {
4060 Diag(NameLoc,
4061 diag::err_using_decl_nested_name_specifier_is_current_class)
4062 << SS.getRange();
4063 return true;
4064 }
4065
4066 Diag(SS.getRange().getBegin(),
4067 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4068 << (NestedNameSpecifier*) SS.getScopeRep()
4069 << cast<CXXRecordDecl>(CurContext)
4070 << SS.getRange();
4071 return true;
4072 }
4073
4074 return false;
4075 }
4076
4077 // C++03 [namespace.udecl]p4:
4078 // A using-declaration used as a member-declaration shall refer
4079 // to a member of a base class of the class being defined [etc.].
4080
4081 // Salient point: SS doesn't have to name a base class as long as
4082 // lookup only finds members from base classes. Therefore we can
4083 // diagnose here only if we can prove that that can't happen,
4084 // i.e. if the class hierarchies provably don't intersect.
4085
4086 // TODO: it would be nice if "definitely valid" results were cached
4087 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4088 // need to be repeated.
4089
4090 struct UserData {
4091 llvm::DenseSet<const CXXRecordDecl*> Bases;
4092
4093 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4094 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4095 Data->Bases.insert(Base);
4096 return true;
4097 }
4098
4099 bool hasDependentBases(const CXXRecordDecl *Class) {
4100 return !Class->forallBases(collect, this);
4101 }
4102
4103 /// Returns true if the base is dependent or is one of the
4104 /// accumulated base classes.
4105 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4106 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4107 return !Data->Bases.count(Base);
4108 }
4109
4110 bool mightShareBases(const CXXRecordDecl *Class) {
4111 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4112 }
4113 };
4114
4115 UserData Data;
4116
4117 // Returns false if we find a dependent base.
4118 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4119 return false;
4120
4121 // Returns false if the class has a dependent base or if it or one
4122 // of its bases is present in the base set of the current context.
4123 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4124 return false;
4125
4126 Diag(SS.getRange().getBegin(),
4127 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4128 << (NestedNameSpecifier*) SS.getScopeRep()
4129 << cast<CXXRecordDecl>(CurContext)
4130 << SS.getRange();
4131
4132 return true;
John McCallb96ec562009-12-04 22:46:56 +00004133}
4134
John McCall48871652010-08-21 09:40:31 +00004135Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004136 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004137 SourceLocation AliasLoc,
4138 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004139 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004140 SourceLocation IdentLoc,
4141 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004142
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004143 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004144 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4145 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004146
Anders Carlssondca83c42009-03-28 06:23:46 +00004147 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004148 NamedDecl *PrevDecl
4149 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4150 ForRedeclaration);
4151 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4152 PrevDecl = 0;
4153
4154 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004155 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004156 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004157 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004158 // FIXME: At some point, we'll want to create the (redundant)
4159 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004160 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004161 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCall48871652010-08-21 09:40:31 +00004162 return 0;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004163 }
Mike Stump11289f42009-09-09 15:08:12 +00004164
Anders Carlssondca83c42009-03-28 06:23:46 +00004165 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4166 diag::err_redefinition_different_kind;
4167 Diag(AliasLoc, DiagID) << Alias;
4168 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCall48871652010-08-21 09:40:31 +00004169 return 0;
Anders Carlssondca83c42009-03-28 06:23:46 +00004170 }
4171
John McCall27b18f82009-11-17 02:14:36 +00004172 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00004173 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00004174
John McCall9f3059a2009-10-09 21:13:30 +00004175 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004176 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4177 CTC_NoKeywords, 0)) {
4178 if (R.getAsSingle<NamespaceDecl>() ||
4179 R.getAsSingle<NamespaceAliasDecl>()) {
4180 if (DeclContext *DC = computeDeclContext(SS, false))
4181 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4182 << Ident << DC << Corrected << SS.getRange()
4183 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4184 else
4185 Diag(IdentLoc, diag::err_using_directive_suggest)
4186 << Ident << Corrected
4187 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4188
4189 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4190 << Corrected;
4191
4192 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004193 } else {
4194 R.clear();
4195 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004196 }
4197 }
4198
4199 if (R.empty()) {
4200 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004201 return 0;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004202 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004203 }
Mike Stump11289f42009-09-09 15:08:12 +00004204
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004205 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004206 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4207 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004208 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004209 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004210
John McCalld8d0d432010-02-16 06:53:13 +00004211 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00004212 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00004213}
4214
Douglas Gregora57478e2010-05-01 15:04:51 +00004215namespace {
4216 /// \brief Scoped object used to handle the state changes required in Sema
4217 /// to implicitly define the body of a C++ member function;
4218 class ImplicitlyDefinedFunctionScope {
4219 Sema &S;
4220 DeclContext *PreviousContext;
4221
4222 public:
4223 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4224 : S(S), PreviousContext(S.CurContext)
4225 {
4226 S.CurContext = Method;
4227 S.PushFunctionScope();
4228 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4229 }
4230
4231 ~ImplicitlyDefinedFunctionScope() {
4232 S.PopExpressionEvaluationContext();
4233 S.PopFunctionOrBlockScope();
4234 S.CurContext = PreviousContext;
4235 }
4236 };
4237}
4238
Sebastian Redlc15c3262010-09-13 22:02:47 +00004239static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4240 CXXRecordDecl *D) {
4241 ASTContext &Context = Self.Context;
4242 QualType ClassType = Context.getTypeDeclType(D);
4243 DeclarationName ConstructorName
4244 = Context.DeclarationNames.getCXXConstructorName(
4245 Context.getCanonicalType(ClassType.getUnqualifiedType()));
4246
4247 DeclContext::lookup_const_iterator Con, ConEnd;
4248 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4249 Con != ConEnd; ++Con) {
4250 // FIXME: In C++0x, a constructor template can be a default constructor.
4251 if (isa<FunctionTemplateDecl>(*Con))
4252 continue;
4253
4254 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4255 if (Constructor->isDefaultConstructor())
4256 return Constructor;
4257 }
4258 return 0;
4259}
4260
Douglas Gregor0be31a22010-07-02 17:43:08 +00004261CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4262 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004263 // C++ [class.ctor]p5:
4264 // A default constructor for a class X is a constructor of class X
4265 // that can be called without an argument. If there is no
4266 // user-declared constructor for class X, a default constructor is
4267 // implicitly declared. An implicitly-declared default constructor
4268 // is an inline public member of its class.
Douglas Gregor9672f922010-07-03 00:47:00 +00004269 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4270 "Should not build implicit default constructor!");
4271
Douglas Gregor6d880b12010-07-01 22:31:05 +00004272 // C++ [except.spec]p14:
4273 // An implicitly declared special member function (Clause 12) shall have an
4274 // exception-specification. [...]
4275 ImplicitExceptionSpecification ExceptSpec(Context);
4276
4277 // Direct base-class destructors.
4278 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4279 BEnd = ClassDecl->bases_end();
4280 B != BEnd; ++B) {
4281 if (B->isVirtual()) // Handled below.
4282 continue;
4283
Douglas Gregor9672f922010-07-03 00:47:00 +00004284 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4285 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4286 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4287 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
Sebastian Redlc15c3262010-09-13 22:02:47 +00004288 else if (CXXConstructorDecl *Constructor
4289 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004290 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004291 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004292 }
4293
4294 // Virtual base-class destructors.
4295 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4296 BEnd = ClassDecl->vbases_end();
4297 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00004298 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4299 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4300 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4301 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4302 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00004303 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004304 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004305 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004306 }
4307
4308 // Field destructors.
4309 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4310 FEnd = ClassDecl->field_end();
4311 F != FEnd; ++F) {
4312 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00004313 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4314 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4315 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4316 ExceptSpec.CalledDecl(
4317 DeclareImplicitDefaultConstructor(FieldClassDecl));
4318 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00004319 = getDefaultConstructorUnsafe(*this, FieldClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004320 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004321 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004322 }
4323
4324
4325 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004326 CanQualType ClassType
4327 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4328 DeclarationName Name
4329 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004330 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004331 CXXConstructorDecl *DefaultCon
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004332 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004333 Context.getFunctionType(Context.VoidTy,
4334 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004335 ExceptSpec.hasExceptionSpecification(),
4336 ExceptSpec.hasAnyExceptionSpecification(),
4337 ExceptSpec.size(),
4338 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004339 FunctionType::ExtInfo()),
4340 /*TInfo=*/0,
4341 /*isExplicit=*/false,
4342 /*isInline=*/true,
4343 /*isImplicitlyDeclared=*/true);
4344 DefaultCon->setAccess(AS_public);
4345 DefaultCon->setImplicit();
4346 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00004347
4348 // Note that we have declared this constructor.
Douglas Gregor9672f922010-07-03 00:47:00 +00004349 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4350
Douglas Gregor0be31a22010-07-02 17:43:08 +00004351 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00004352 PushOnScopeChains(DefaultCon, S, false);
4353 ClassDecl->addDecl(DefaultCon);
4354
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004355 return DefaultCon;
4356}
4357
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004358void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4359 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004360 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004361 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004362 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004363
Anders Carlsson423f5d82010-04-23 16:04:08 +00004364 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004365 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004366
Douglas Gregora57478e2010-05-01 15:04:51 +00004367 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004368 ErrorTrap Trap(*this);
4369 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4370 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004371 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004372 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004373 Constructor->setInvalidDecl();
Douglas Gregor73193272010-09-20 16:48:21 +00004374 return;
Eli Friedman9cf6b592009-11-09 19:20:36 +00004375 }
Douglas Gregor73193272010-09-20 16:48:21 +00004376
4377 SourceLocation Loc = Constructor->getLocation();
4378 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4379
4380 Constructor->setUsed();
4381 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004382}
4383
Douglas Gregor0be31a22010-07-02 17:43:08 +00004384CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004385 // C++ [class.dtor]p2:
4386 // If a class has no user-declared destructor, a destructor is
4387 // declared implicitly. An implicitly-declared destructor is an
4388 // inline public member of its class.
4389
4390 // C++ [except.spec]p14:
4391 // An implicitly declared special member function (Clause 12) shall have
4392 // an exception-specification.
4393 ImplicitExceptionSpecification ExceptSpec(Context);
4394
4395 // Direct base-class destructors.
4396 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4397 BEnd = ClassDecl->bases_end();
4398 B != BEnd; ++B) {
4399 if (B->isVirtual()) // Handled below.
4400 continue;
4401
4402 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4403 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004404 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004405 }
4406
4407 // Virtual base-class destructors.
4408 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4409 BEnd = ClassDecl->vbases_end();
4410 B != BEnd; ++B) {
4411 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4412 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004413 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004414 }
4415
4416 // Field destructors.
4417 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4418 FEnd = ClassDecl->field_end();
4419 F != FEnd; ++F) {
4420 if (const RecordType *RecordTy
4421 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4422 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004423 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004424 }
4425
Douglas Gregor7454c562010-07-02 20:37:36 +00004426 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00004427 QualType Ty = Context.getFunctionType(Context.VoidTy,
4428 0, 0, false, 0,
4429 ExceptSpec.hasExceptionSpecification(),
4430 ExceptSpec.hasAnyExceptionSpecification(),
4431 ExceptSpec.size(),
4432 ExceptSpec.data(),
4433 FunctionType::ExtInfo());
4434
4435 CanQualType ClassType
4436 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4437 DeclarationName Name
4438 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004439 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf1203042010-07-01 19:09:28 +00004440 CXXDestructorDecl *Destructor
Craig Silversteinaf8808d2010-10-21 00:44:50 +00004441 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty, 0,
Douglas Gregorf1203042010-07-01 19:09:28 +00004442 /*isInline=*/true,
4443 /*isImplicitlyDeclared=*/true);
4444 Destructor->setAccess(AS_public);
4445 Destructor->setImplicit();
4446 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00004447
4448 // Note that we have declared this destructor.
Douglas Gregor7454c562010-07-02 20:37:36 +00004449 ++ASTContext::NumImplicitDestructorsDeclared;
4450
4451 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004452 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00004453 PushOnScopeChains(Destructor, S, false);
4454 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00004455
4456 // This could be uniqued if it ever proves significant.
4457 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4458
4459 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00004460
Douglas Gregorf1203042010-07-01 19:09:28 +00004461 return Destructor;
4462}
4463
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004464void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004465 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004466 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004467 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004468 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004469 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004470
Douglas Gregor54818f02010-05-12 16:39:35 +00004471 if (Destructor->isInvalidDecl())
4472 return;
4473
Douglas Gregora57478e2010-05-01 15:04:51 +00004474 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004475
Douglas Gregor54818f02010-05-12 16:39:35 +00004476 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004477 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4478 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004479
Douglas Gregor54818f02010-05-12 16:39:35 +00004480 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004481 Diag(CurrentLocation, diag::note_member_synthesized_at)
4482 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4483
4484 Destructor->setInvalidDecl();
4485 return;
4486 }
4487
Douglas Gregor73193272010-09-20 16:48:21 +00004488 SourceLocation Loc = Destructor->getLocation();
4489 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4490
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004491 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004492 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004493}
4494
Douglas Gregorb139cd52010-05-01 20:49:11 +00004495/// \brief Builds a statement that copies the given entity from \p From to
4496/// \c To.
4497///
4498/// This routine is used to copy the members of a class with an
4499/// implicitly-declared copy assignment operator. When the entities being
4500/// copied are arrays, this routine builds for loops to copy them.
4501///
4502/// \param S The Sema object used for type-checking.
4503///
4504/// \param Loc The location where the implicit copy is being generated.
4505///
4506/// \param T The type of the expressions being copied. Both expressions must
4507/// have this type.
4508///
4509/// \param To The expression we are copying to.
4510///
4511/// \param From The expression we are copying from.
4512///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004513/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4514/// Otherwise, it's a non-static member subobject.
4515///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004516/// \param Depth Internal parameter recording the depth of the recursion.
4517///
4518/// \returns A statement or a loop that copies the expressions.
John McCalldadc5752010-08-24 06:29:42 +00004519static StmtResult
Douglas Gregorb139cd52010-05-01 20:49:11 +00004520BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCallb268a282010-08-23 23:25:46 +00004521 Expr *To, Expr *From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004522 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004523 // C++0x [class.copy]p30:
4524 // Each subobject is assigned in the manner appropriate to its type:
4525 //
4526 // - if the subobject is of class type, the copy assignment operator
4527 // for the class is used (as if by explicit qualification; that is,
4528 // ignoring any possible virtual overriding functions in more derived
4529 // classes);
4530 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4531 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4532
4533 // Look for operator=.
4534 DeclarationName Name
4535 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4536 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4537 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4538
4539 // Filter out any result that isn't a copy-assignment operator.
4540 LookupResult::Filter F = OpLookup.makeFilter();
4541 while (F.hasNext()) {
4542 NamedDecl *D = F.next();
4543 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4544 if (Method->isCopyAssignmentOperator())
4545 continue;
4546
4547 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004548 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004549 F.done();
4550
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004551 // Suppress the protected check (C++ [class.protected]) for each of the
4552 // assignment operators we found. This strange dance is required when
4553 // we're assigning via a base classes's copy-assignment operator. To
4554 // ensure that we're getting the right base class subobject (without
4555 // ambiguities), we need to cast "this" to that subobject type; to
4556 // ensure that we don't go through the virtual call mechanism, we need
4557 // to qualify the operator= name with the base class (see below). However,
4558 // this means that if the base class has a protected copy assignment
4559 // operator, the protected member access check will fail. So, we
4560 // rewrite "protected" access to "public" access in this case, since we
4561 // know by construction that we're calling from a derived class.
4562 if (CopyingBaseSubobject) {
4563 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4564 L != LEnd; ++L) {
4565 if (L.getAccess() == AS_protected)
4566 L.setAccess(AS_public);
4567 }
4568 }
4569
Douglas Gregorb139cd52010-05-01 20:49:11 +00004570 // Create the nested-name-specifier that will be used to qualify the
4571 // reference to operator=; this is required to suppress the virtual
4572 // call mechanism.
4573 CXXScopeSpec SS;
4574 SS.setRange(Loc);
4575 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4576 T.getTypePtr()));
4577
4578 // Create the reference to operator=.
John McCalldadc5752010-08-24 06:29:42 +00004579 ExprResult OpEqualRef
John McCallb268a282010-08-23 23:25:46 +00004580 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004581 /*FirstQualifierInScope=*/0, OpLookup,
4582 /*TemplateArgs=*/0,
4583 /*SuppressQualifierCheck=*/true);
4584 if (OpEqualRef.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004585 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004586
4587 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00004588
John McCalldadc5752010-08-24 06:29:42 +00004589 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregorce5aa332010-09-09 16:33:13 +00004590 OpEqualRef.takeAs<Expr>(),
4591 Loc, &From, 1, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004592 if (Call.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004593 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004594
4595 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004596 }
John McCallab8c2732010-03-16 06:11:48 +00004597
Douglas Gregorb139cd52010-05-01 20:49:11 +00004598 // - if the subobject is of scalar type, the built-in assignment
4599 // operator is used.
4600 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4601 if (!ArrayTy) {
John McCalle3027922010-08-25 11:45:40 +00004602 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004603 if (Assignment.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004604 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004605
4606 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004607 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004608
4609 // - if the subobject is an array, each element is assigned, in the
4610 // manner appropriate to the element type;
4611
4612 // Construct a loop over the array bounds, e.g.,
4613 //
4614 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4615 //
4616 // that will copy each of the array elements.
4617 QualType SizeType = S.Context.getSizeType();
4618
4619 // Create the iteration variable.
4620 IdentifierInfo *IterationVarName = 0;
4621 {
4622 llvm::SmallString<8> Str;
4623 llvm::raw_svector_ostream OS(Str);
4624 OS << "__i" << Depth;
4625 IterationVarName = &S.Context.Idents.get(OS.str());
4626 }
4627 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4628 IterationVarName, SizeType,
4629 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00004630 SC_None, SC_None);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004631
4632 // Initialize the iteration variable to zero.
4633 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00004634 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004635
4636 // Create a reference to the iteration variable; we'll use this several
4637 // times throughout.
4638 Expr *IterationVarRef
John McCall7decc9e2010-11-18 06:31:45 +00004639 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004640 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4641
4642 // Create the DeclStmt that holds the iteration variable.
4643 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4644
4645 // Create the comparison against the array bound.
4646 llvm::APInt Upper = ArrayTy->getSize();
4647 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCallb268a282010-08-23 23:25:46 +00004648 Expr *Comparison
John McCallc3007a22010-10-26 07:05:15 +00004649 = new (S.Context) BinaryOperator(IterationVarRef,
John McCall7decc9e2010-11-18 06:31:45 +00004650 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
4651 BO_NE, S.Context.BoolTy,
4652 VK_RValue, OK_Ordinary, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004653
4654 // Create the pre-increment of the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004655 Expr *Increment
John McCall7decc9e2010-11-18 06:31:45 +00004656 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
4657 VK_LValue, OK_Ordinary, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004658
4659 // Subscript the "from" and "to" expressions with the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004660 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
4661 IterationVarRef, Loc));
4662 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
4663 IterationVarRef, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004664
4665 // Build the copy for an individual element of the array.
John McCall7decc9e2010-11-18 06:31:45 +00004666 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
4667 To, From, CopyingBaseSubobject,
4668 Depth + 1);
Douglas Gregorb412e172010-07-25 18:17:45 +00004669 if (Copy.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004670 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004671
4672 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00004673 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004674 S.MakeFullExpr(Comparison),
John McCall48871652010-08-21 09:40:31 +00004675 0, S.MakeFullExpr(Increment),
John McCallb268a282010-08-23 23:25:46 +00004676 Loc, Copy.take());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004677}
4678
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004679/// \brief Determine whether the given class has a copy assignment operator
4680/// that accepts a const-qualified argument.
4681static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4682 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4683
4684 if (!Class->hasDeclaredCopyAssignment())
4685 S.DeclareImplicitCopyAssignment(Class);
4686
4687 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4688 DeclarationName OpName
4689 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4690
4691 DeclContext::lookup_const_iterator Op, OpEnd;
4692 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4693 // C++ [class.copy]p9:
4694 // A user-declared copy assignment operator is a non-static non-template
4695 // member function of class X with exactly one parameter of type X, X&,
4696 // const X&, volatile X& or const volatile X&.
4697 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4698 if (!Method)
4699 continue;
4700
4701 if (Method->isStatic())
4702 continue;
4703 if (Method->getPrimaryTemplate())
4704 continue;
4705 const FunctionProtoType *FnType =
4706 Method->getType()->getAs<FunctionProtoType>();
4707 assert(FnType && "Overloaded operator has no prototype.");
4708 // Don't assert on this; an invalid decl might have been left in the AST.
4709 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4710 continue;
4711 bool AcceptsConst = true;
4712 QualType ArgType = FnType->getArgType(0);
4713 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4714 ArgType = Ref->getPointeeType();
4715 // Is it a non-const lvalue reference?
4716 if (!ArgType.isConstQualified())
4717 AcceptsConst = false;
4718 }
4719 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4720 continue;
4721
4722 // We have a single argument of type cv X or cv X&, i.e. we've found the
4723 // copy assignment operator. Return whether it accepts const arguments.
4724 return AcceptsConst;
4725 }
4726 assert(Class->isInvalidDecl() &&
4727 "No copy assignment operator declared in valid code.");
4728 return false;
4729}
4730
Douglas Gregor0be31a22010-07-02 17:43:08 +00004731CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004732 // Note: The following rules are largely analoguous to the copy
4733 // constructor rules. Note that virtual bases are not taken into account
4734 // for determining the argument type of the operator. Note also that
4735 // operators taking an object instead of a reference are allowed.
Douglas Gregor9672f922010-07-03 00:47:00 +00004736
4737
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004738 // C++ [class.copy]p10:
4739 // If the class definition does not explicitly declare a copy
4740 // assignment operator, one is declared implicitly.
4741 // The implicitly-defined copy assignment operator for a class X
4742 // will have the form
4743 //
4744 // X& X::operator=(const X&)
4745 //
4746 // if
4747 bool HasConstCopyAssignment = true;
4748
4749 // -- each direct base class B of X has a copy assignment operator
4750 // whose parameter is of type const B&, const volatile B& or B,
4751 // and
4752 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4753 BaseEnd = ClassDecl->bases_end();
4754 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4755 assert(!Base->getType()->isDependentType() &&
4756 "Cannot generate implicit members for class with dependent bases.");
4757 const CXXRecordDecl *BaseClassDecl
4758 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004759 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004760 }
4761
4762 // -- for all the nonstatic data members of X that are of a class
4763 // type M (or array thereof), each such class type has a copy
4764 // assignment operator whose parameter is of type const M&,
4765 // const volatile M& or M.
4766 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4767 FieldEnd = ClassDecl->field_end();
4768 HasConstCopyAssignment && Field != FieldEnd;
4769 ++Field) {
4770 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4771 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4772 const CXXRecordDecl *FieldClassDecl
4773 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004774 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004775 }
4776 }
4777
4778 // Otherwise, the implicitly declared copy assignment operator will
4779 // have the form
4780 //
4781 // X& X::operator=(X&)
4782 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4783 QualType RetType = Context.getLValueReferenceType(ArgType);
4784 if (HasConstCopyAssignment)
4785 ArgType = ArgType.withConst();
4786 ArgType = Context.getLValueReferenceType(ArgType);
4787
Douglas Gregor68e11362010-07-01 17:48:08 +00004788 // C++ [except.spec]p14:
4789 // An implicitly declared special member function (Clause 12) shall have an
4790 // exception-specification. [...]
4791 ImplicitExceptionSpecification ExceptSpec(Context);
4792 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4793 BaseEnd = ClassDecl->bases_end();
4794 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004795 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004796 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004797
4798 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4799 DeclareImplicitCopyAssignment(BaseClassDecl);
4800
Douglas Gregor68e11362010-07-01 17:48:08 +00004801 if (CXXMethodDecl *CopyAssign
4802 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4803 ExceptSpec.CalledDecl(CopyAssign);
4804 }
4805 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4806 FieldEnd = ClassDecl->field_end();
4807 Field != FieldEnd;
4808 ++Field) {
4809 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4810 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004811 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004812 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004813
4814 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4815 DeclareImplicitCopyAssignment(FieldClassDecl);
4816
Douglas Gregor68e11362010-07-01 17:48:08 +00004817 if (CXXMethodDecl *CopyAssign
4818 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4819 ExceptSpec.CalledDecl(CopyAssign);
4820 }
4821 }
4822
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004823 // An implicitly-declared copy assignment operator is an inline public
4824 // member of its class.
4825 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004826 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004827 CXXMethodDecl *CopyAssignment
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004828 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004829 Context.getFunctionType(RetType, &ArgType, 1,
4830 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004831 ExceptSpec.hasExceptionSpecification(),
4832 ExceptSpec.hasAnyExceptionSpecification(),
4833 ExceptSpec.size(),
4834 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004835 FunctionType::ExtInfo()),
4836 /*TInfo=*/0, /*isStatic=*/false,
John McCall8e7d6562010-08-26 03:08:43 +00004837 /*StorageClassAsWritten=*/SC_None,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004838 /*isInline=*/true);
4839 CopyAssignment->setAccess(AS_public);
4840 CopyAssignment->setImplicit();
4841 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004842
4843 // Add the parameter to the operator.
4844 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4845 ClassDecl->getLocation(),
4846 /*Id=*/0,
4847 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00004848 SC_None,
4849 SC_None, 0);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004850 CopyAssignment->setParams(&FromParam, 1);
4851
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004852 // Note that we have added this copy-assignment operator.
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004853 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4854
Douglas Gregor0be31a22010-07-02 17:43:08 +00004855 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004856 PushOnScopeChains(CopyAssignment, S, false);
4857 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004858
4859 AddOverriddenMethods(ClassDecl, CopyAssignment);
4860 return CopyAssignment;
4861}
4862
Douglas Gregorb139cd52010-05-01 20:49:11 +00004863void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4864 CXXMethodDecl *CopyAssignOperator) {
4865 assert((CopyAssignOperator->isImplicit() &&
4866 CopyAssignOperator->isOverloadedOperator() &&
4867 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004868 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004869 "DefineImplicitCopyAssignment called for wrong function");
4870
4871 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4872
4873 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4874 CopyAssignOperator->setInvalidDecl();
4875 return;
4876 }
4877
4878 CopyAssignOperator->setUsed();
4879
4880 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004881 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004882
4883 // C++0x [class.copy]p30:
4884 // The implicitly-defined or explicitly-defaulted copy assignment operator
4885 // for a non-union class X performs memberwise copy assignment of its
4886 // subobjects. The direct base classes of X are assigned first, in the
4887 // order of their declaration in the base-specifier-list, and then the
4888 // immediate non-static data members of X are assigned, in the order in
4889 // which they were declared in the class definition.
4890
4891 // The statements that form the synthesized function body.
John McCall37ad5512010-08-23 06:44:23 +00004892 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004893
4894 // The parameter for the "other" object, which we are copying from.
4895 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4896 Qualifiers OtherQuals = Other->getType().getQualifiers();
4897 QualType OtherRefType = Other->getType();
4898 if (const LValueReferenceType *OtherRef
4899 = OtherRefType->getAs<LValueReferenceType>()) {
4900 OtherRefType = OtherRef->getPointeeType();
4901 OtherQuals = OtherRefType.getQualifiers();
4902 }
4903
4904 // Our location for everything implicitly-generated.
4905 SourceLocation Loc = CopyAssignOperator->getLocation();
4906
4907 // Construct a reference to the "other" object. We'll be using this
4908 // throughout the generated ASTs.
John McCall7decc9e2010-11-18 06:31:45 +00004909 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_RValue, Loc).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004910 assert(OtherRef && "Reference to parameter cannot fail!");
4911
4912 // Construct the "this" pointer. We'll be using this throughout the generated
4913 // ASTs.
4914 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4915 assert(This && "Reference to this cannot fail!");
4916
4917 // Assign base classes.
4918 bool Invalid = false;
4919 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4920 E = ClassDecl->bases_end(); Base != E; ++Base) {
4921 // Form the assignment:
4922 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4923 QualType BaseType = Base->getType().getUnqualifiedType();
4924 CXXRecordDecl *BaseClassDecl = 0;
4925 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4926 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4927 else {
4928 Invalid = true;
4929 continue;
4930 }
4931
John McCallcf142162010-08-07 06:22:56 +00004932 CXXCastPath BasePath;
4933 BasePath.push_back(Base);
4934
Douglas Gregorb139cd52010-05-01 20:49:11 +00004935 // Construct the "from" expression, which is an implicit cast to the
4936 // appropriately-qualified base type.
John McCallc3007a22010-10-26 07:05:15 +00004937 Expr *From = OtherRef;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004938 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
John McCall2536c6d2010-08-25 10:28:54 +00004939 CK_UncheckedDerivedToBase,
4940 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004941
4942 // Dereference "this".
John McCall2536c6d2010-08-25 10:28:54 +00004943 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004944
4945 // Implicitly cast "this" to the appropriately-qualified base type.
4946 Expr *ToE = To.takeAs<Expr>();
4947 ImpCastExprToType(ToE,
4948 Context.getCVRQualifiedType(BaseType,
4949 CopyAssignOperator->getTypeQualifiers()),
John McCall2536c6d2010-08-25 10:28:54 +00004950 CK_UncheckedDerivedToBase,
4951 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004952 To = Owned(ToE);
4953
4954 // Build the copy.
John McCalldadc5752010-08-24 06:29:42 +00004955 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall2536c6d2010-08-25 10:28:54 +00004956 To.get(), From,
4957 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004958 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004959 Diag(CurrentLocation, diag::note_member_synthesized_at)
4960 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4961 CopyAssignOperator->setInvalidDecl();
4962 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004963 }
4964
4965 // Success! Record the copy.
4966 Statements.push_back(Copy.takeAs<Expr>());
4967 }
4968
4969 // \brief Reference to the __builtin_memcpy function.
4970 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004971 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004972 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004973
4974 // Assign non-static members.
4975 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4976 FieldEnd = ClassDecl->field_end();
4977 Field != FieldEnd; ++Field) {
4978 // Check for members of reference type; we can't copy those.
4979 if (Field->getType()->isReferenceType()) {
4980 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4981 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4982 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004983 Diag(CurrentLocation, diag::note_member_synthesized_at)
4984 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004985 Invalid = true;
4986 continue;
4987 }
4988
4989 // Check for members of const-qualified, non-class type.
4990 QualType BaseType = Context.getBaseElementType(Field->getType());
4991 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4992 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4993 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4994 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004995 Diag(CurrentLocation, diag::note_member_synthesized_at)
4996 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004997 Invalid = true;
4998 continue;
4999 }
5000
5001 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00005002 if (FieldType->isIncompleteArrayType()) {
5003 assert(ClassDecl->hasFlexibleArrayMember() &&
5004 "Incomplete array type is not valid");
5005 continue;
5006 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005007
5008 // Build references to the field in the object we're copying from and to.
5009 CXXScopeSpec SS; // Intentionally empty
5010 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5011 LookupMemberName);
5012 MemberLookup.addDecl(*Field);
5013 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00005014 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
Douglas Gregorb139cd52010-05-01 20:49:11 +00005015 Loc, /*IsArrow=*/false,
5016 SS, 0, MemberLookup, 0);
John McCalldadc5752010-08-24 06:29:42 +00005017 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005018 Loc, /*IsArrow=*/true,
5019 SS, 0, MemberLookup, 0);
5020 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5021 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5022
5023 // If the field should be copied with __builtin_memcpy rather than via
5024 // explicit assignments, do so. This optimization only applies for arrays
5025 // of scalars and arrays of class type with trivial copy-assignment
5026 // operators.
5027 if (FieldType->isArrayType() &&
5028 (!BaseType->isRecordType() ||
5029 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5030 ->hasTrivialCopyAssignment())) {
5031 // Compute the size of the memory buffer to be copied.
5032 QualType SizeType = Context.getSizeType();
5033 llvm::APInt Size(Context.getTypeSize(SizeType),
5034 Context.getTypeSizeInChars(BaseType).getQuantity());
5035 for (const ConstantArrayType *Array
5036 = Context.getAsConstantArrayType(FieldType);
5037 Array;
5038 Array = Context.getAsConstantArrayType(Array->getElementType())) {
5039 llvm::APInt ArraySize = Array->getSize();
5040 ArraySize.zextOrTrunc(Size.getBitWidth());
5041 Size *= ArraySize;
5042 }
5043
5044 // Take the address of the field references for "from" and "to".
John McCalle3027922010-08-25 11:45:40 +00005045 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5046 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005047
5048 bool NeedsCollectableMemCpy =
5049 (BaseType->isRecordType() &&
5050 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5051
5052 if (NeedsCollectableMemCpy) {
5053 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005054 // Create a reference to the __builtin_objc_memmove_collectable function.
5055 LookupResult R(*this,
5056 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005057 Loc, LookupOrdinaryName);
5058 LookupName(R, TUScope, true);
5059
5060 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5061 if (!CollectableMemCpy) {
5062 // Something went horribly wrong earlier, and we will have
5063 // complained about it.
5064 Invalid = true;
5065 continue;
5066 }
5067
5068 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5069 CollectableMemCpy->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00005070 VK_LValue, Loc, 0).take();
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005071 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5072 }
5073 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005074 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005075 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00005076 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5077 LookupOrdinaryName);
5078 LookupName(R, TUScope, true);
5079
5080 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5081 if (!BuiltinMemCpy) {
5082 // Something went horribly wrong earlier, and we will have complained
5083 // about it.
5084 Invalid = true;
5085 continue;
5086 }
5087
5088 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5089 BuiltinMemCpy->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00005090 VK_LValue, Loc, 0).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00005091 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5092 }
5093
John McCall37ad5512010-08-23 06:44:23 +00005094 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005095 CallArgs.push_back(To.takeAs<Expr>());
5096 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00005097 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCalldadc5752010-08-24 06:29:42 +00005098 ExprResult Call = ExprError();
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005099 if (NeedsCollectableMemCpy)
5100 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005101 CollectableMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005102 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00005103 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005104 else
5105 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005106 BuiltinMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005107 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00005108 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005109
Douglas Gregorb139cd52010-05-01 20:49:11 +00005110 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5111 Statements.push_back(Call.takeAs<Expr>());
5112 continue;
5113 }
5114
5115 // Build the copy of this field.
John McCalldadc5752010-08-24 06:29:42 +00005116 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCallb268a282010-08-23 23:25:46 +00005117 To.get(), From.get(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00005118 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005119 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005120 Diag(CurrentLocation, diag::note_member_synthesized_at)
5121 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5122 CopyAssignOperator->setInvalidDecl();
5123 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005124 }
5125
5126 // Success! Record the copy.
5127 Statements.push_back(Copy.takeAs<Stmt>());
5128 }
5129
5130 if (!Invalid) {
5131 // Add a "return *this;"
John McCalle3027922010-08-25 11:45:40 +00005132 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005133
John McCalldadc5752010-08-24 06:29:42 +00005134 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00005135 if (Return.isInvalid())
5136 Invalid = true;
5137 else {
5138 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00005139
5140 if (Trap.hasErrorOccurred()) {
5141 Diag(CurrentLocation, diag::note_member_synthesized_at)
5142 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5143 Invalid = true;
5144 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005145 }
5146 }
5147
5148 if (Invalid) {
5149 CopyAssignOperator->setInvalidDecl();
5150 return;
5151 }
5152
John McCalldadc5752010-08-24 06:29:42 +00005153 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005154 /*isStmtExpr=*/false);
5155 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5156 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00005157}
5158
Douglas Gregor0be31a22010-07-02 17:43:08 +00005159CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5160 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00005161 // C++ [class.copy]p4:
5162 // If the class definition does not explicitly declare a copy
5163 // constructor, one is declared implicitly.
5164
Douglas Gregor54be3392010-07-01 17:57:27 +00005165 // C++ [class.copy]p5:
5166 // The implicitly-declared copy constructor for a class X will
5167 // have the form
5168 //
5169 // X::X(const X&)
5170 //
5171 // if
5172 bool HasConstCopyConstructor = true;
5173
5174 // -- each direct or virtual base class B of X has a copy
5175 // constructor whose first parameter is of type const B& or
5176 // const volatile B&, and
5177 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5178 BaseEnd = ClassDecl->bases_end();
5179 HasConstCopyConstructor && Base != BaseEnd;
5180 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005181 // Virtual bases are handled below.
5182 if (Base->isVirtual())
5183 continue;
5184
Douglas Gregora6d69502010-07-02 23:41:54 +00005185 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005186 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005187 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5188 DeclareImplicitCopyConstructor(BaseClassDecl);
5189
Douglas Gregorcfe68222010-07-01 18:27:03 +00005190 HasConstCopyConstructor
5191 = BaseClassDecl->hasConstCopyConstructor(Context);
5192 }
5193
5194 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5195 BaseEnd = ClassDecl->vbases_end();
5196 HasConstCopyConstructor && Base != BaseEnd;
5197 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005198 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00005199 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005200 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5201 DeclareImplicitCopyConstructor(BaseClassDecl);
5202
Douglas Gregor54be3392010-07-01 17:57:27 +00005203 HasConstCopyConstructor
5204 = BaseClassDecl->hasConstCopyConstructor(Context);
5205 }
5206
5207 // -- for all the nonstatic data members of X that are of a
5208 // class type M (or array thereof), each such class type
5209 // has a copy constructor whose first parameter is of type
5210 // const M& or const volatile M&.
5211 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5212 FieldEnd = ClassDecl->field_end();
5213 HasConstCopyConstructor && Field != FieldEnd;
5214 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005215 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005216 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005217 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005218 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005219 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5220 DeclareImplicitCopyConstructor(FieldClassDecl);
5221
Douglas Gregor54be3392010-07-01 17:57:27 +00005222 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005223 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005224 }
5225 }
5226
5227 // Otherwise, the implicitly declared copy constructor will have
5228 // the form
5229 //
5230 // X::X(X&)
5231 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5232 QualType ArgType = ClassType;
5233 if (HasConstCopyConstructor)
5234 ArgType = ArgType.withConst();
5235 ArgType = Context.getLValueReferenceType(ArgType);
5236
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005237 // C++ [except.spec]p14:
5238 // An implicitly declared special member function (Clause 12) shall have an
5239 // exception-specification. [...]
5240 ImplicitExceptionSpecification ExceptSpec(Context);
5241 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5242 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5243 BaseEnd = ClassDecl->bases_end();
5244 Base != BaseEnd;
5245 ++Base) {
5246 // Virtual bases are handled below.
5247 if (Base->isVirtual())
5248 continue;
5249
Douglas Gregora6d69502010-07-02 23:41:54 +00005250 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005251 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005252 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5253 DeclareImplicitCopyConstructor(BaseClassDecl);
5254
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005255 if (CXXConstructorDecl *CopyConstructor
5256 = BaseClassDecl->getCopyConstructor(Context, Quals))
5257 ExceptSpec.CalledDecl(CopyConstructor);
5258 }
5259 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5260 BaseEnd = ClassDecl->vbases_end();
5261 Base != BaseEnd;
5262 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005263 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005264 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005265 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5266 DeclareImplicitCopyConstructor(BaseClassDecl);
5267
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005268 if (CXXConstructorDecl *CopyConstructor
5269 = BaseClassDecl->getCopyConstructor(Context, Quals))
5270 ExceptSpec.CalledDecl(CopyConstructor);
5271 }
5272 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5273 FieldEnd = ClassDecl->field_end();
5274 Field != FieldEnd;
5275 ++Field) {
5276 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5277 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005278 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005279 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005280 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5281 DeclareImplicitCopyConstructor(FieldClassDecl);
5282
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005283 if (CXXConstructorDecl *CopyConstructor
5284 = FieldClassDecl->getCopyConstructor(Context, Quals))
5285 ExceptSpec.CalledDecl(CopyConstructor);
5286 }
5287 }
5288
Douglas Gregor54be3392010-07-01 17:57:27 +00005289 // An implicitly-declared copy constructor is an inline public
5290 // member of its class.
5291 DeclarationName Name
5292 = Context.DeclarationNames.getCXXConstructorName(
5293 Context.getCanonicalType(ClassType));
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005294 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor54be3392010-07-01 17:57:27 +00005295 CXXConstructorDecl *CopyConstructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005296 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00005297 Context.getFunctionType(Context.VoidTy,
5298 &ArgType, 1,
5299 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005300 ExceptSpec.hasExceptionSpecification(),
5301 ExceptSpec.hasAnyExceptionSpecification(),
5302 ExceptSpec.size(),
5303 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005304 FunctionType::ExtInfo()),
5305 /*TInfo=*/0,
5306 /*isExplicit=*/false,
5307 /*isInline=*/true,
5308 /*isImplicitlyDeclared=*/true);
5309 CopyConstructor->setAccess(AS_public);
5310 CopyConstructor->setImplicit();
5311 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5312
Douglas Gregora6d69502010-07-02 23:41:54 +00005313 // Note that we have declared this constructor.
Douglas Gregora6d69502010-07-02 23:41:54 +00005314 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5315
Douglas Gregor54be3392010-07-01 17:57:27 +00005316 // Add the parameter to the constructor.
5317 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5318 ClassDecl->getLocation(),
5319 /*IdentifierInfo=*/0,
5320 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00005321 SC_None,
5322 SC_None, 0);
Douglas Gregor54be3392010-07-01 17:57:27 +00005323 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005324 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00005325 PushOnScopeChains(CopyConstructor, S, false);
5326 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor54be3392010-07-01 17:57:27 +00005327
5328 return CopyConstructor;
5329}
5330
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005331void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5332 CXXConstructorDecl *CopyConstructor,
5333 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005334 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005335 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005336 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005337 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005338
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005339 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005340 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005341
Douglas Gregora57478e2010-05-01 15:04:51 +00005342 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005343 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005344
Douglas Gregor54818f02010-05-12 16:39:35 +00005345 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5346 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005347 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005348 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005349 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005350 } else {
5351 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5352 CopyConstructor->getLocation(),
5353 MultiStmtArg(*this, 0, 0),
5354 /*isStmtExpr=*/false)
5355 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005356 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005357
5358 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005359}
5360
John McCalldadc5752010-08-24 06:29:42 +00005361ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005362Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005363 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005364 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005365 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005366 unsigned ConstructKind,
5367 SourceRange ParenRange) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005368 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005369
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005370 // C++0x [class.copy]p34:
5371 // When certain criteria are met, an implementation is allowed to
5372 // omit the copy/move construction of a class object, even if the
5373 // copy/move constructor and/or destructor for the object have
5374 // side effects. [...]
5375 // - when a temporary class object that has not been bound to a
5376 // reference (12.2) would be copied/moved to a class object
5377 // with the same cv-unqualified type, the copy/move operation
5378 // can be omitted by constructing the temporary object
5379 // directly into the target of the omitted copy/move
John McCall7a626f62010-09-15 10:14:12 +00005380 if (ConstructKind == CXXConstructExpr::CK_Complete &&
5381 Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005382 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall7a626f62010-09-15 10:14:12 +00005383 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson250aada2009-08-16 05:13:48 +00005384 }
Mike Stump11289f42009-09-09 15:08:12 +00005385
5386 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005387 Elidable, move(ExprArgs), RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005388 ConstructKind, ParenRange);
Anders Carlsson250aada2009-08-16 05:13:48 +00005389}
5390
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005391/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5392/// including handling of its default argument expressions.
John McCalldadc5752010-08-24 06:29:42 +00005393ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005394Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5395 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005396 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005397 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005398 unsigned ConstructKind,
5399 SourceRange ParenRange) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005400 unsigned NumExprs = ExprArgs.size();
5401 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005402
Douglas Gregor27381f32009-11-23 12:27:39 +00005403 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005404 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005405 Constructor, Elidable, Exprs, NumExprs,
John McCallbfd822c2010-08-24 07:32:53 +00005406 RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005407 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
5408 ParenRange));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005409}
5410
Mike Stump11289f42009-09-09 15:08:12 +00005411bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005412 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005413 MultiExprArg Exprs) {
Chandler Carruth01718152010-10-25 08:47:36 +00005414 // FIXME: Provide the correct paren SourceRange when available.
John McCalldadc5752010-08-24 06:29:42 +00005415 ExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005416 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Chandler Carruth01718152010-10-25 08:47:36 +00005417 move(Exprs), false, CXXConstructExpr::CK_Complete,
5418 SourceRange());
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005419 if (TempResult.isInvalid())
5420 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005421
Anders Carlsson6eb55572009-08-25 05:12:04 +00005422 Expr *Temp = TempResult.takeAs<Expr>();
John McCallacf0ee52010-10-08 02:01:28 +00005423 CheckImplicitConversions(Temp, VD->getLocation());
Douglas Gregor77b50e12009-06-22 23:06:13 +00005424 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005425 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005426 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005427
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005428 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005429}
5430
John McCall03c48482010-02-02 09:10:11 +00005431void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5432 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005433 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005434 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005435 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005436 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005437 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005438 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005439 << VD->getDeclName()
5440 << VD->getType());
John McCall47e40932010-08-01 20:20:59 +00005441
John McCall386dfc72010-09-18 05:25:11 +00005442 // TODO: this should be re-enabled for static locals by !CXAAtExit
5443 if (!VD->isInvalidDecl() && VD->hasGlobalStorage() && !VD->isStaticLocal())
John McCall47e40932010-08-01 20:20:59 +00005444 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall6781b052010-02-02 08:45:54 +00005445 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005446}
5447
Mike Stump11289f42009-09-09 15:08:12 +00005448/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005449/// ActOnDeclarator, when a C++ direct initializer is present.
5450/// e.g: "int x(1);"
John McCall48871652010-08-21 09:40:31 +00005451void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00005452 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005453 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005454 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005455 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005456
5457 // If there is no declaration, there was an error parsing it. Just ignore
5458 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005459 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005460 return;
Mike Stump11289f42009-09-09 15:08:12 +00005461
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005462 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5463 if (!VDecl) {
5464 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5465 RealDecl->setInvalidDecl();
5466 return;
5467 }
5468
Douglas Gregor402250f2009-08-26 21:14:46 +00005469 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005470 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005471 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5472 //
5473 // Clients that want to distinguish between the two forms, can check for
5474 // direct initializer using VarDecl::hasCXXDirectInitializer().
5475 // A major benefit is that clients that don't particularly care about which
5476 // exactly form was it (like the CodeGen) can handle both cases without
5477 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005478
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005479 // C++ 8.5p11:
5480 // The form of initialization (using parentheses or '=') is generally
5481 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005482 // class type.
5483
Douglas Gregor50dc2192010-02-11 22:55:30 +00005484 if (!VDecl->getType()->isDependentType() &&
5485 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005486 diag::err_typecheck_decl_incomplete_type)) {
5487 VDecl->setInvalidDecl();
5488 return;
5489 }
5490
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005491 // The variable can not have an abstract class type.
5492 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5493 diag::err_abstract_type_in_decl,
5494 AbstractVariableType))
5495 VDecl->setInvalidDecl();
5496
Sebastian Redl5ca79842010-02-01 20:16:42 +00005497 const VarDecl *Def;
5498 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005499 Diag(VDecl->getLocation(), diag::err_redefinition)
5500 << VDecl->getDeclName();
5501 Diag(Def->getLocation(), diag::note_previous_definition);
5502 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005503 return;
5504 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005505
Douglas Gregorf0f83692010-08-24 05:27:49 +00005506 // C++ [class.static.data]p4
5507 // If a static data member is of const integral or const
5508 // enumeration type, its declaration in the class definition can
5509 // specify a constant-initializer which shall be an integral
5510 // constant expression (5.19). In that case, the member can appear
5511 // in integral constant expressions. The member shall still be
5512 // defined in a namespace scope if it is used in the program and the
5513 // namespace scope definition shall not contain an initializer.
5514 //
5515 // We already performed a redefinition check above, but for static
5516 // data members we also need to check whether there was an in-class
5517 // declaration with an initializer.
5518 const VarDecl* PrevInit = 0;
5519 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
5520 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
5521 Diag(PrevInit->getLocation(), diag::note_previous_definition);
5522 return;
5523 }
5524
Douglas Gregor50dc2192010-02-11 22:55:30 +00005525 // If either the declaration has a dependent type or if any of the
5526 // expressions is type-dependent, we represent the initialization
5527 // via a ParenListExpr for later use during template instantiation.
5528 if (VDecl->getType()->isDependentType() ||
5529 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5530 // Let clients know that initialization was done with a direct initializer.
5531 VDecl->setCXXDirectInitializer(true);
5532
5533 // Store the initialization expressions as a ParenListExpr.
5534 unsigned NumExprs = Exprs.size();
5535 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5536 (Expr **)Exprs.release(),
5537 NumExprs, RParenLoc));
5538 return;
5539 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005540
5541 // Capture the variable that is being initialized and the style of
5542 // initialization.
5543 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5544
5545 // FIXME: Poor source location information.
5546 InitializationKind Kind
5547 = InitializationKind::CreateDirect(VDecl->getLocation(),
5548 LParenLoc, RParenLoc);
5549
5550 InitializationSequence InitSeq(*this, Entity, Kind,
John McCallb268a282010-08-23 23:25:46 +00005551 Exprs.get(), Exprs.size());
John McCalldadc5752010-08-24 06:29:42 +00005552 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005553 if (Result.isInvalid()) {
5554 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005555 return;
5556 }
John McCallacf0ee52010-10-08 02:01:28 +00005557
5558 CheckImplicitConversions(Result.get(), LParenLoc);
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005559
John McCallb268a282010-08-23 23:25:46 +00005560 Result = MaybeCreateCXXExprWithTemporaries(Result.get());
Douglas Gregord5058122010-02-11 01:19:42 +00005561 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005562 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005563
John McCall8b0f4ff2010-08-02 21:13:48 +00005564 if (!VDecl->isInvalidDecl() &&
5565 !VDecl->getDeclContext()->isDependentContext() &&
Sebastian Redl02f1eeb2010-09-08 04:46:19 +00005566 VDecl->hasGlobalStorage() && !VDecl->isStaticLocal() &&
John McCall8b0f4ff2010-08-02 21:13:48 +00005567 !VDecl->getInit()->isConstantInitializer(Context,
5568 VDecl->getType()->isReferenceType()))
5569 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5570 << VDecl->getInit()->getSourceRange();
5571
John McCall03c48482010-02-02 09:10:11 +00005572 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5573 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005574}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005575
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005576/// \brief Given a constructor and the set of arguments provided for the
5577/// constructor, convert the arguments and add any required default arguments
5578/// to form a proper call to this constructor.
5579///
5580/// \returns true if an error occurred, false otherwise.
5581bool
5582Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5583 MultiExprArg ArgsPtr,
5584 SourceLocation Loc,
John McCall37ad5512010-08-23 06:44:23 +00005585 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005586 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5587 unsigned NumArgs = ArgsPtr.size();
5588 Expr **Args = (Expr **)ArgsPtr.get();
5589
5590 const FunctionProtoType *Proto
5591 = Constructor->getType()->getAs<FunctionProtoType>();
5592 assert(Proto && "Constructor without a prototype?");
5593 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005594
5595 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005596 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005597 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005598 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005599 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005600
5601 VariadicCallType CallType =
5602 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5603 llvm::SmallVector<Expr *, 8> AllArgs;
5604 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5605 Proto, 0, Args, NumArgs, AllArgs,
5606 CallType);
5607 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5608 ConvertedArgs.push_back(AllArgs[i]);
5609 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005610}
5611
Anders Carlssone363c8e2009-12-12 00:32:00 +00005612static inline bool
5613CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5614 const FunctionDecl *FnDecl) {
Sebastian Redl50c68252010-08-31 00:36:30 +00005615 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlssone363c8e2009-12-12 00:32:00 +00005616 if (isa<NamespaceDecl>(DC)) {
5617 return SemaRef.Diag(FnDecl->getLocation(),
5618 diag::err_operator_new_delete_declared_in_namespace)
5619 << FnDecl->getDeclName();
5620 }
5621
5622 if (isa<TranslationUnitDecl>(DC) &&
John McCall8e7d6562010-08-26 03:08:43 +00005623 FnDecl->getStorageClass() == SC_Static) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005624 return SemaRef.Diag(FnDecl->getLocation(),
5625 diag::err_operator_new_delete_declared_static)
5626 << FnDecl->getDeclName();
5627 }
5628
Anders Carlsson60659a82009-12-12 02:43:16 +00005629 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005630}
5631
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005632static inline bool
5633CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5634 CanQualType ExpectedResultType,
5635 CanQualType ExpectedFirstParamType,
5636 unsigned DependentParamTypeDiag,
5637 unsigned InvalidParamTypeDiag) {
5638 QualType ResultType =
5639 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5640
5641 // Check that the result type is not dependent.
5642 if (ResultType->isDependentType())
5643 return SemaRef.Diag(FnDecl->getLocation(),
5644 diag::err_operator_new_delete_dependent_result_type)
5645 << FnDecl->getDeclName() << ExpectedResultType;
5646
5647 // Check that the result type is what we expect.
5648 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5649 return SemaRef.Diag(FnDecl->getLocation(),
5650 diag::err_operator_new_delete_invalid_result_type)
5651 << FnDecl->getDeclName() << ExpectedResultType;
5652
5653 // A function template must have at least 2 parameters.
5654 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5655 return SemaRef.Diag(FnDecl->getLocation(),
5656 diag::err_operator_new_delete_template_too_few_parameters)
5657 << FnDecl->getDeclName();
5658
5659 // The function decl must have at least 1 parameter.
5660 if (FnDecl->getNumParams() == 0)
5661 return SemaRef.Diag(FnDecl->getLocation(),
5662 diag::err_operator_new_delete_too_few_parameters)
5663 << FnDecl->getDeclName();
5664
5665 // Check the the first parameter type is not dependent.
5666 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5667 if (FirstParamType->isDependentType())
5668 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5669 << FnDecl->getDeclName() << ExpectedFirstParamType;
5670
5671 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005672 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005673 ExpectedFirstParamType)
5674 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5675 << FnDecl->getDeclName() << ExpectedFirstParamType;
5676
5677 return false;
5678}
5679
Anders Carlsson12308f42009-12-11 23:23:22 +00005680static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005681CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005682 // C++ [basic.stc.dynamic.allocation]p1:
5683 // A program is ill-formed if an allocation function is declared in a
5684 // namespace scope other than global scope or declared static in global
5685 // scope.
5686 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5687 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005688
5689 CanQualType SizeTy =
5690 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5691
5692 // C++ [basic.stc.dynamic.allocation]p1:
5693 // The return type shall be void*. The first parameter shall have type
5694 // std::size_t.
5695 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5696 SizeTy,
5697 diag::err_operator_new_dependent_param_type,
5698 diag::err_operator_new_param_type))
5699 return true;
5700
5701 // C++ [basic.stc.dynamic.allocation]p1:
5702 // The first parameter shall not have an associated default argument.
5703 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005704 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005705 diag::err_operator_new_default_arg)
5706 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5707
5708 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005709}
5710
5711static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005712CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5713 // C++ [basic.stc.dynamic.deallocation]p1:
5714 // A program is ill-formed if deallocation functions are declared in a
5715 // namespace scope other than global scope or declared static in global
5716 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005717 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5718 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005719
5720 // C++ [basic.stc.dynamic.deallocation]p2:
5721 // Each deallocation function shall return void and its first parameter
5722 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005723 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5724 SemaRef.Context.VoidPtrTy,
5725 diag::err_operator_delete_dependent_param_type,
5726 diag::err_operator_delete_param_type))
5727 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005728
Anders Carlsson12308f42009-12-11 23:23:22 +00005729 return false;
5730}
5731
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005732/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5733/// of this overloaded operator is well-formed. If so, returns false;
5734/// otherwise, emits appropriate diagnostics and returns true.
5735bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005736 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005737 "Expected an overloaded operator declaration");
5738
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005739 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5740
Mike Stump11289f42009-09-09 15:08:12 +00005741 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005742 // The allocation and deallocation functions, operator new,
5743 // operator new[], operator delete and operator delete[], are
5744 // described completely in 3.7.3. The attributes and restrictions
5745 // found in the rest of this subclause do not apply to them unless
5746 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005747 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005748 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005749
Anders Carlsson22f443f2009-12-12 00:26:23 +00005750 if (Op == OO_New || Op == OO_Array_New)
5751 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005752
5753 // C++ [over.oper]p6:
5754 // An operator function shall either be a non-static member
5755 // function or be a non-member function and have at least one
5756 // parameter whose type is a class, a reference to a class, an
5757 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005758 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5759 if (MethodDecl->isStatic())
5760 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005761 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005762 } else {
5763 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005764 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5765 ParamEnd = FnDecl->param_end();
5766 Param != ParamEnd; ++Param) {
5767 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005768 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5769 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005770 ClassOrEnumParam = true;
5771 break;
5772 }
5773 }
5774
Douglas Gregord69246b2008-11-17 16:14:12 +00005775 if (!ClassOrEnumParam)
5776 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005777 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005778 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005779 }
5780
5781 // C++ [over.oper]p8:
5782 // An operator function cannot have default arguments (8.3.6),
5783 // except where explicitly stated below.
5784 //
Mike Stump11289f42009-09-09 15:08:12 +00005785 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005786 // (C++ [over.call]p1).
5787 if (Op != OO_Call) {
5788 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5789 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005790 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005791 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005792 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005793 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005794 }
5795 }
5796
Douglas Gregor6cf08062008-11-10 13:38:07 +00005797 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5798 { false, false, false }
5799#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5800 , { Unary, Binary, MemberOnly }
5801#include "clang/Basic/OperatorKinds.def"
5802 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005803
Douglas Gregor6cf08062008-11-10 13:38:07 +00005804 bool CanBeUnaryOperator = OperatorUses[Op][0];
5805 bool CanBeBinaryOperator = OperatorUses[Op][1];
5806 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005807
5808 // C++ [over.oper]p8:
5809 // [...] Operator functions cannot have more or fewer parameters
5810 // than the number required for the corresponding operator, as
5811 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005812 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005813 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005814 if (Op != OO_Call &&
5815 ((NumParams == 1 && !CanBeUnaryOperator) ||
5816 (NumParams == 2 && !CanBeBinaryOperator) ||
5817 (NumParams < 1) || (NumParams > 2))) {
5818 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005819 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005820 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005821 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005822 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005823 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005824 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005825 assert(CanBeBinaryOperator &&
5826 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005827 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005828 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005829
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005830 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005831 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005832 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005833
Douglas Gregord69246b2008-11-17 16:14:12 +00005834 // Overloaded operators other than operator() cannot be variadic.
5835 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005836 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005837 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005838 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005839 }
5840
5841 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005842 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5843 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005844 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005845 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005846 }
5847
5848 // C++ [over.inc]p1:
5849 // The user-defined function called operator++ implements the
5850 // prefix and postfix ++ operator. If this function is a member
5851 // function with no parameters, or a non-member function with one
5852 // parameter of class or enumeration type, it defines the prefix
5853 // increment operator ++ for objects of that type. If the function
5854 // is a member function with one parameter (which shall be of type
5855 // int) or a non-member function with two parameters (the second
5856 // of which shall be of type int), it defines the postfix
5857 // increment operator ++ for objects of that type.
5858 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5859 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5860 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005861 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005862 ParamIsInt = BT->getKind() == BuiltinType::Int;
5863
Chris Lattner2b786902008-11-21 07:50:02 +00005864 if (!ParamIsInt)
5865 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005866 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005867 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005868 }
5869
Douglas Gregord69246b2008-11-17 16:14:12 +00005870 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005871}
Chris Lattner3b024a32008-12-17 07:09:26 +00005872
Alexis Huntc88db062010-01-13 09:01:02 +00005873/// CheckLiteralOperatorDeclaration - Check whether the declaration
5874/// of this literal operator function is well-formed. If so, returns
5875/// false; otherwise, emits appropriate diagnostics and returns true.
5876bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5877 DeclContext *DC = FnDecl->getDeclContext();
5878 Decl::Kind Kind = DC->getDeclKind();
5879 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5880 Kind != Decl::LinkageSpec) {
5881 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5882 << FnDecl->getDeclName();
5883 return true;
5884 }
5885
5886 bool Valid = false;
5887
Alexis Hunt7dd26172010-04-07 23:11:06 +00005888 // template <char...> type operator "" name() is the only valid template
5889 // signature, and the only valid signature with no parameters.
5890 if (FnDecl->param_size() == 0) {
5891 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5892 // Must have only one template parameter
5893 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5894 if (Params->size() == 1) {
5895 NonTypeTemplateParmDecl *PmDecl =
5896 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005897
Alexis Hunt7dd26172010-04-07 23:11:06 +00005898 // The template parameter must be a char parameter pack.
5899 // FIXME: This test will always fail because non-type parameter packs
5900 // have not been implemented.
5901 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5902 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5903 Valid = true;
5904 }
5905 }
5906 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005907 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005908 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5909
Alexis Huntc88db062010-01-13 09:01:02 +00005910 QualType T = (*Param)->getType();
5911
Alexis Hunt079a6f72010-04-07 22:57:35 +00005912 // unsigned long long int, long double, and any character type are allowed
5913 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005914 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5915 Context.hasSameType(T, Context.LongDoubleTy) ||
5916 Context.hasSameType(T, Context.CharTy) ||
5917 Context.hasSameType(T, Context.WCharTy) ||
5918 Context.hasSameType(T, Context.Char16Ty) ||
5919 Context.hasSameType(T, Context.Char32Ty)) {
5920 if (++Param == FnDecl->param_end())
5921 Valid = true;
5922 goto FinishedParams;
5923 }
5924
Alexis Hunt079a6f72010-04-07 22:57:35 +00005925 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005926 const PointerType *PT = T->getAs<PointerType>();
5927 if (!PT)
5928 goto FinishedParams;
5929 T = PT->getPointeeType();
5930 if (!T.isConstQualified())
5931 goto FinishedParams;
5932 T = T.getUnqualifiedType();
5933
5934 // Move on to the second parameter;
5935 ++Param;
5936
5937 // If there is no second parameter, the first must be a const char *
5938 if (Param == FnDecl->param_end()) {
5939 if (Context.hasSameType(T, Context.CharTy))
5940 Valid = true;
5941 goto FinishedParams;
5942 }
5943
5944 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5945 // are allowed as the first parameter to a two-parameter function
5946 if (!(Context.hasSameType(T, Context.CharTy) ||
5947 Context.hasSameType(T, Context.WCharTy) ||
5948 Context.hasSameType(T, Context.Char16Ty) ||
5949 Context.hasSameType(T, Context.Char32Ty)))
5950 goto FinishedParams;
5951
5952 // The second and final parameter must be an std::size_t
5953 T = (*Param)->getType().getUnqualifiedType();
5954 if (Context.hasSameType(T, Context.getSizeType()) &&
5955 ++Param == FnDecl->param_end())
5956 Valid = true;
5957 }
5958
5959 // FIXME: This diagnostic is absolutely terrible.
5960FinishedParams:
5961 if (!Valid) {
5962 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5963 << FnDecl->getDeclName();
5964 return true;
5965 }
5966
5967 return false;
5968}
5969
Douglas Gregor07665a62009-01-05 19:45:36 +00005970/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5971/// linkage specification, including the language and (if present)
5972/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5973/// the location of the language string literal, which is provided
5974/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5975/// the '{' brace. Otherwise, this linkage specification does not
5976/// have any braces.
Chris Lattner8ea64422010-11-09 20:15:55 +00005977Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
5978 SourceLocation LangLoc,
5979 llvm::StringRef Lang,
5980 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00005981 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005982 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005983 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005984 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005985 Language = LinkageSpecDecl::lang_cxx;
5986 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00005987 Diag(LangLoc, diag::err_bad_language);
John McCall48871652010-08-21 09:40:31 +00005988 return 0;
Chris Lattner438e5012008-12-17 07:13:27 +00005989 }
Mike Stump11289f42009-09-09 15:08:12 +00005990
Chris Lattner438e5012008-12-17 07:13:27 +00005991 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00005992
Douglas Gregor07665a62009-01-05 19:45:36 +00005993 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00005994 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00005995 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005996 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00005997 PushDeclContext(S, D);
John McCall48871652010-08-21 09:40:31 +00005998 return D;
Chris Lattner438e5012008-12-17 07:13:27 +00005999}
6000
Abramo Bagnaraed5b6892010-07-30 16:47:02 +00006001/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +00006002/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6003/// valid, it's the position of the closing '}' brace in a linkage
6004/// specification that uses braces.
John McCall48871652010-08-21 09:40:31 +00006005Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6006 Decl *LinkageSpec,
Chris Lattner83f095c2009-03-28 19:18:32 +00006007 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00006008 if (LinkageSpec)
6009 PopDeclContext();
6010 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00006011}
6012
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006013/// \brief Perform semantic analysis for the variable declaration that
6014/// occurs within a C++ catch clause, returning the newly-created
6015/// variable.
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006016VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCallbcd03502009-12-07 02:54:59 +00006017 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006018 IdentifierInfo *Name,
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006019 SourceLocation Loc) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006020 bool Invalid = false;
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006021 QualType ExDeclType = TInfo->getType();
6022
Sebastian Redl54c04d42008-12-22 19:15:10 +00006023 // Arrays and functions decay.
6024 if (ExDeclType->isArrayType())
6025 ExDeclType = Context.getArrayDecayedType(ExDeclType);
6026 else if (ExDeclType->isFunctionType())
6027 ExDeclType = Context.getPointerType(ExDeclType);
6028
6029 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6030 // The exception-declaration shall not denote a pointer or reference to an
6031 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00006032 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00006033 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006034 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlb28b4072009-03-22 23:49:27 +00006035 Invalid = true;
6036 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006037
Douglas Gregor104ee002010-03-08 01:47:36 +00006038 // GCC allows catching pointers and references to incomplete types
6039 // as an extension; so do we, but we warn by default.
6040
Sebastian Redl54c04d42008-12-22 19:15:10 +00006041 QualType BaseType = ExDeclType;
6042 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00006043 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00006044 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006045 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006046 BaseType = Ptr->getPointeeType();
6047 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00006048 DK = diag::ext_catch_incomplete_ptr;
6049 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00006050 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00006051 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006052 BaseType = Ref->getPointeeType();
6053 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00006054 DK = diag::ext_catch_incomplete_ref;
6055 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006056 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00006057 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00006058 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6059 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00006060 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006061
Mike Stump11289f42009-09-09 15:08:12 +00006062 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006063 RequireNonAbstractType(Loc, ExDeclType,
6064 diag::err_abstract_type_in_decl,
6065 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00006066 Invalid = true;
6067
John McCall2ca705e2010-07-24 00:37:23 +00006068 // Only the non-fragile NeXT runtime currently supports C++ catches
6069 // of ObjC types, and no runtime supports catching ObjC types by value.
6070 if (!Invalid && getLangOptions().ObjC1) {
6071 QualType T = ExDeclType;
6072 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6073 T = RT->getPointeeType();
6074
6075 if (T->isObjCObjectType()) {
6076 Diag(Loc, diag::err_objc_object_catch);
6077 Invalid = true;
6078 } else if (T->isObjCObjectPointerType()) {
6079 if (!getLangOptions().NeXTRuntime) {
6080 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6081 Invalid = true;
6082 } else if (!getLangOptions().ObjCNonFragileABI) {
6083 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6084 Invalid = true;
6085 }
6086 }
6087 }
6088
Mike Stump11289f42009-09-09 15:08:12 +00006089 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
John McCall8e7d6562010-08-26 03:08:43 +00006090 Name, ExDeclType, TInfo, SC_None,
6091 SC_None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00006092 ExDecl->setExceptionVariable(true);
6093
Douglas Gregor6de584c2010-03-05 23:38:39 +00006094 if (!Invalid) {
6095 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6096 // C++ [except.handle]p16:
6097 // The object declared in an exception-declaration or, if the
6098 // exception-declaration does not specify a name, a temporary (12.2) is
6099 // copy-initialized (8.5) from the exception object. [...]
6100 // The object is destroyed when the handler exits, after the destruction
6101 // of any automatic objects initialized within the handler.
6102 //
6103 // We just pretend to initialize the object with itself, then make sure
6104 // it can be destroyed later.
6105 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6106 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
John McCall7decc9e2010-11-18 06:31:45 +00006107 Loc, ExDeclType, VK_LValue, 0);
Douglas Gregor6de584c2010-03-05 23:38:39 +00006108 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6109 SourceLocation());
6110 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
John McCalldadc5752010-08-24 06:29:42 +00006111 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00006112 MultiExprArg(*this, &ExDeclRef, 1));
Douglas Gregor6de584c2010-03-05 23:38:39 +00006113 if (Result.isInvalid())
6114 Invalid = true;
6115 else
6116 FinalizeVarWithDestructor(ExDecl, RecordTy);
6117 }
6118 }
6119
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006120 if (Invalid)
6121 ExDecl->setInvalidDecl();
6122
6123 return ExDecl;
6124}
6125
6126/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6127/// handler.
John McCall48871652010-08-21 09:40:31 +00006128Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00006129 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6130 QualType ExDeclType = TInfo->getType();
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006131
6132 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00006133 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006134 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00006135 LookupOrdinaryName,
6136 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006137 // The scope should be freshly made just for us. There is just no way
6138 // it contains any previous declaration.
John McCall48871652010-08-21 09:40:31 +00006139 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl54c04d42008-12-22 19:15:10 +00006140 if (PrevDecl->isTemplateParameter()) {
6141 // Maybe we will complain about the shadowed template parameter.
6142 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006143 }
6144 }
6145
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006146 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006147 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6148 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006149 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006150 }
6151
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006152 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006153 D.getIdentifier(),
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00006154 D.getIdentifierLoc());
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006155
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006156 if (Invalid)
6157 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00006158
Sebastian Redl54c04d42008-12-22 19:15:10 +00006159 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006160 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006161 PushOnScopeChains(ExDecl, S);
6162 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006163 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006164
Douglas Gregor758a8692009-06-17 21:51:59 +00006165 ProcessDeclAttributes(S, ExDecl, D);
John McCall48871652010-08-21 09:40:31 +00006166 return ExDecl;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006167}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006168
John McCall48871652010-08-21 09:40:31 +00006169Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
John McCallb268a282010-08-23 23:25:46 +00006170 Expr *AssertExpr,
6171 Expr *AssertMessageExpr_) {
6172 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006173
Anders Carlsson54b26982009-03-14 00:33:21 +00006174 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6175 llvm::APSInt Value(32);
6176 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6177 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6178 AssertExpr->getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006179 return 0;
Anders Carlsson54b26982009-03-14 00:33:21 +00006180 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006181
Anders Carlsson54b26982009-03-14 00:33:21 +00006182 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00006183 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00006184 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00006185 }
6186 }
Mike Stump11289f42009-09-09 15:08:12 +00006187
Mike Stump11289f42009-09-09 15:08:12 +00006188 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006189 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00006190
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006191 CurContext->addDecl(Decl);
John McCall48871652010-08-21 09:40:31 +00006192 return Decl;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006193}
Sebastian Redlf769df52009-03-24 22:27:57 +00006194
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006195/// \brief Perform semantic analysis of the given friend type declaration.
6196///
6197/// \returns A friend declaration that.
6198FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6199 TypeSourceInfo *TSInfo) {
6200 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6201
6202 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006203 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006204
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006205 if (!getLangOptions().CPlusPlus0x) {
6206 // C++03 [class.friend]p2:
6207 // An elaborated-type-specifier shall be used in a friend declaration
6208 // for a class.*
6209 //
6210 // * The class-key of the elaborated-type-specifier is required.
6211 if (!ActiveTemplateInstantiations.empty()) {
6212 // Do not complain about the form of friend template types during
6213 // template instantiation; we will already have complained when the
6214 // template was declared.
6215 } else if (!T->isElaboratedTypeSpecifier()) {
6216 // If we evaluated the type to a record type, suggest putting
6217 // a tag in front.
6218 if (const RecordType *RT = T->getAs<RecordType>()) {
6219 RecordDecl *RD = RT->getDecl();
6220
6221 std::string InsertionText = std::string(" ") + RD->getKindName();
6222
6223 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6224 << (unsigned) RD->getTagKind()
6225 << T
6226 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6227 InsertionText);
6228 } else {
6229 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6230 << T
6231 << SourceRange(FriendLoc, TypeRange.getEnd());
6232 }
6233 } else if (T->getAs<EnumType>()) {
6234 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006235 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006236 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006237 }
6238 }
6239
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006240 // C++0x [class.friend]p3:
6241 // If the type specifier in a friend declaration designates a (possibly
6242 // cv-qualified) class type, that class is declared as a friend; otherwise,
6243 // the friend declaration is ignored.
6244
6245 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6246 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006247
6248 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6249}
6250
John McCallace48cd2010-10-19 01:40:49 +00006251/// Handle a friend tag declaration where the scope specifier was
6252/// templated.
6253Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
6254 unsigned TagSpec, SourceLocation TagLoc,
6255 CXXScopeSpec &SS,
6256 IdentifierInfo *Name, SourceLocation NameLoc,
6257 AttributeList *Attr,
6258 MultiTemplateParamsArg TempParamLists) {
6259 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6260
6261 bool isExplicitSpecialization = false;
6262 unsigned NumMatchedTemplateParamLists = TempParamLists.size();
6263 bool Invalid = false;
6264
6265 if (TemplateParameterList *TemplateParams
6266 = MatchTemplateParametersToScopeSpecifier(TagLoc, SS,
6267 TempParamLists.get(),
6268 TempParamLists.size(),
6269 /*friend*/ true,
6270 isExplicitSpecialization,
6271 Invalid)) {
6272 --NumMatchedTemplateParamLists;
6273
6274 if (TemplateParams->size() > 0) {
6275 // This is a declaration of a class template.
6276 if (Invalid)
6277 return 0;
6278
6279 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
6280 SS, Name, NameLoc, Attr,
6281 TemplateParams, AS_public).take();
6282 } else {
6283 // The "template<>" header is extraneous.
6284 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
6285 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
6286 isExplicitSpecialization = true;
6287 }
6288 }
6289
6290 if (Invalid) return 0;
6291
6292 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
6293
6294 bool isAllExplicitSpecializations = true;
6295 for (unsigned I = 0; I != NumMatchedTemplateParamLists; ++I) {
6296 if (TempParamLists.get()[I]->size()) {
6297 isAllExplicitSpecializations = false;
6298 break;
6299 }
6300 }
6301
6302 // FIXME: don't ignore attributes.
6303
6304 // If it's explicit specializations all the way down, just forget
6305 // about the template header and build an appropriate non-templated
6306 // friend. TODO: for source fidelity, remember the headers.
6307 if (isAllExplicitSpecializations) {
6308 ElaboratedTypeKeyword Keyword
6309 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
6310 QualType T = CheckTypenameType(Keyword, SS.getScopeRep(), *Name,
6311 TagLoc, SS.getRange(), NameLoc);
6312 if (T.isNull())
6313 return 0;
6314
6315 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6316 if (isa<DependentNameType>(T)) {
6317 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
6318 TL.setKeywordLoc(TagLoc);
6319 TL.setQualifierRange(SS.getRange());
6320 TL.setNameLoc(NameLoc);
6321 } else {
6322 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
6323 TL.setKeywordLoc(TagLoc);
6324 TL.setQualifierRange(SS.getRange());
6325 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
6326 }
6327
6328 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
6329 TSI, FriendLoc);
6330 Friend->setAccess(AS_public);
6331 CurContext->addDecl(Friend);
6332 return Friend;
6333 }
6334
6335 // Handle the case of a templated-scope friend class. e.g.
6336 // template <class T> class A<T>::B;
6337 // FIXME: we don't support these right now.
6338 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
6339 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
6340 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
6341 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
6342 TL.setKeywordLoc(TagLoc);
6343 TL.setQualifierRange(SS.getRange());
6344 TL.setNameLoc(NameLoc);
6345
6346 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
6347 TSI, FriendLoc);
6348 Friend->setAccess(AS_public);
6349 Friend->setUnsupportedFriend(true);
6350 CurContext->addDecl(Friend);
6351 return Friend;
6352}
6353
6354
John McCall11083da2009-09-16 22:47:08 +00006355/// Handle a friend type declaration. This works in tandem with
6356/// ActOnTag.
6357///
6358/// Notes on friend class templates:
6359///
6360/// We generally treat friend class declarations as if they were
6361/// declaring a class. So, for example, the elaborated type specifier
6362/// in a friend declaration is required to obey the restrictions of a
6363/// class-head (i.e. no typedefs in the scope chain), template
6364/// parameters are required to match up with simple template-ids, &c.
6365/// However, unlike when declaring a template specialization, it's
6366/// okay to refer to a template specialization without an empty
6367/// template parameter declaration, e.g.
6368/// friend class A<T>::B<unsigned>;
6369/// We permit this as a special case; if there are any template
6370/// parameters present at all, require proper matching, i.e.
6371/// template <> template <class T> friend class A<int>::B;
John McCall48871652010-08-21 09:40:31 +00006372Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallc9739e32010-10-16 07:23:36 +00006373 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006374 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00006375
6376 assert(DS.isFriendSpecified());
6377 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6378
John McCall11083da2009-09-16 22:47:08 +00006379 // Try to convert the decl specifier to a type. This works for
6380 // friend templates because ActOnTag never produces a ClassTemplateDecl
6381 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00006382 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00006383 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6384 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00006385 if (TheDeclarator.isInvalidType())
John McCall48871652010-08-21 09:40:31 +00006386 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006387
John McCall11083da2009-09-16 22:47:08 +00006388 // This is definitely an error in C++98. It's probably meant to
6389 // be forbidden in C++0x, too, but the specification is just
6390 // poorly written.
6391 //
6392 // The problem is with declarations like the following:
6393 // template <T> friend A<T>::foo;
6394 // where deciding whether a class C is a friend or not now hinges
6395 // on whether there exists an instantiation of A that causes
6396 // 'foo' to equal C. There are restrictions on class-heads
6397 // (which we declare (by fiat) elaborated friend declarations to
6398 // be) that makes this tractable.
6399 //
6400 // FIXME: handle "template <> friend class A<T>;", which
6401 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00006402 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00006403 Diag(Loc, diag::err_tagless_friend_type_template)
6404 << DS.getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006405 return 0;
John McCall11083da2009-09-16 22:47:08 +00006406 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006407
John McCallaa74a0c2009-08-28 07:59:38 +00006408 // C++98 [class.friend]p1: A friend of a class is a function
6409 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00006410 // This is fixed in DR77, which just barely didn't make the C++03
6411 // deadline. It's also a very silly restriction that seriously
6412 // affects inner classes and which nobody else seems to implement;
6413 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00006414 //
6415 // But note that we could warn about it: it's always useless to
6416 // friend one of your own members (it's not, however, worthless to
6417 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00006418
John McCall11083da2009-09-16 22:47:08 +00006419 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006420 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00006421 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006422 NumTempParamLists,
John McCallc9739e32010-10-16 07:23:36 +00006423 TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00006424 TSI,
John McCall11083da2009-09-16 22:47:08 +00006425 DS.getFriendSpecLoc());
6426 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006427 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6428
6429 if (!D)
John McCall48871652010-08-21 09:40:31 +00006430 return 0;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006431
John McCall11083da2009-09-16 22:47:08 +00006432 D->setAccess(AS_public);
6433 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006434
John McCall48871652010-08-21 09:40:31 +00006435 return D;
John McCallaa74a0c2009-08-28 07:59:38 +00006436}
6437
John McCallde3fd222010-10-12 23:13:28 +00006438Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
6439 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006440 const DeclSpec &DS = D.getDeclSpec();
6441
6442 assert(DS.isFriendSpecified());
6443 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6444
6445 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00006446 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6447 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00006448
6449 // C++ [class.friend]p1
6450 // A friend of a class is a function or class....
6451 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00006452 // It *doesn't* see through dependent types, which is correct
6453 // according to [temp.arg.type]p3:
6454 // If a declaration acquires a function type through a
6455 // type dependent on a template-parameter and this causes
6456 // a declaration that does not use the syntactic form of a
6457 // function declarator to have a function type, the program
6458 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00006459 if (!T->isFunctionType()) {
6460 Diag(Loc, diag::err_unexpected_friend);
6461
6462 // It might be worthwhile to try to recover by creating an
6463 // appropriate declaration.
John McCall48871652010-08-21 09:40:31 +00006464 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006465 }
6466
6467 // C++ [namespace.memdef]p3
6468 // - If a friend declaration in a non-local class first declares a
6469 // class or function, the friend class or function is a member
6470 // of the innermost enclosing namespace.
6471 // - The name of the friend is not found by simple name lookup
6472 // until a matching declaration is provided in that namespace
6473 // scope (either before or after the class declaration granting
6474 // friendship).
6475 // - If a friend function is called, its name may be found by the
6476 // name lookup that considers functions from namespaces and
6477 // classes associated with the types of the function arguments.
6478 // - When looking for a prior declaration of a class or a function
6479 // declared as a friend, scopes outside the innermost enclosing
6480 // namespace scope are not considered.
6481
John McCallde3fd222010-10-12 23:13:28 +00006482 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006483 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6484 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +00006485 assert(Name);
6486
John McCall07e91c02009-08-06 02:15:43 +00006487 // The context we found the declaration in, or in which we should
6488 // create the declaration.
6489 DeclContext *DC;
John McCallccbc0322010-10-13 06:22:15 +00006490 Scope *DCScope = S;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006491 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +00006492 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00006493
John McCallde3fd222010-10-12 23:13:28 +00006494 // FIXME: there are different rules in local classes
John McCall07e91c02009-08-06 02:15:43 +00006495
John McCallde3fd222010-10-12 23:13:28 +00006496 // There are four cases here.
6497 // - There's no scope specifier, in which case we just go to the
John McCallf7cfb222010-10-13 05:45:15 +00006498 // appropriate scope and look for a function or function template
John McCallde3fd222010-10-12 23:13:28 +00006499 // there as appropriate.
6500 // Recover from invalid scope qualifiers as if they just weren't there.
6501 if (SS.isInvalid() || !SS.isSet()) {
John McCallf7cfb222010-10-13 05:45:15 +00006502 // C++0x [namespace.memdef]p3:
6503 // If the name in a friend declaration is neither qualified nor
6504 // a template-id and the declaration is a function or an
6505 // elaborated-type-specifier, the lookup to determine whether
6506 // the entity has been previously declared shall not consider
6507 // any scopes outside the innermost enclosing namespace.
6508 // C++0x [class.friend]p11:
6509 // If a friend declaration appears in a local class and the name
6510 // specified is an unqualified name, a prior declaration is
6511 // looked up without considering scopes that are outside the
6512 // innermost enclosing non-class scope. For a friend function
6513 // declaration, if there is no prior declaration, the program is
6514 // ill-formed.
6515 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCallf4776592010-10-14 22:22:28 +00006516 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall07e91c02009-08-06 02:15:43 +00006517
John McCallf7cfb222010-10-13 05:45:15 +00006518 // Find the appropriate context according to the above.
John McCall07e91c02009-08-06 02:15:43 +00006519 DC = CurContext;
6520 while (true) {
6521 // Skip class contexts. If someone can cite chapter and verse
6522 // for this behavior, that would be nice --- it's what GCC and
6523 // EDG do, and it seems like a reasonable intent, but the spec
6524 // really only says that checks for unqualified existing
6525 // declarations should stop at the nearest enclosing namespace,
6526 // not that they should only consider the nearest enclosing
6527 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006528 while (DC->isRecord())
6529 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00006530
John McCall1f82f242009-11-18 22:49:29 +00006531 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006532
6533 // TODO: decide what we think about using declarations.
John McCallf7cfb222010-10-13 05:45:15 +00006534 if (isLocal || !Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00006535 break;
John McCallf7cfb222010-10-13 05:45:15 +00006536
John McCallf4776592010-10-14 22:22:28 +00006537 if (isTemplateId) {
6538 if (isa<TranslationUnitDecl>(DC)) break;
6539 } else {
6540 if (DC->isFileContext()) break;
6541 }
John McCall07e91c02009-08-06 02:15:43 +00006542 DC = DC->getParent();
6543 }
6544
6545 // C++ [class.friend]p1: A friend of a class is a function or
6546 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00006547 // C++0x changes this for both friend types and functions.
6548 // Most C++ 98 compilers do seem to give an error here, so
6549 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00006550 if (!Previous.empty() && DC->Equals(CurContext)
6551 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00006552 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
John McCallde3fd222010-10-12 23:13:28 +00006553
John McCallccbc0322010-10-13 06:22:15 +00006554 DCScope = getScopeForDeclContext(S, DC);
John McCallf7cfb222010-10-13 05:45:15 +00006555
John McCallde3fd222010-10-12 23:13:28 +00006556 // - There's a non-dependent scope specifier, in which case we
6557 // compute it and do a previous lookup there for a function
6558 // or function template.
6559 } else if (!SS.getScopeRep()->isDependent()) {
6560 DC = computeDeclContext(SS);
6561 if (!DC) return 0;
6562
6563 if (RequireCompleteDeclContext(SS, DC)) return 0;
6564
6565 LookupQualifiedName(Previous, DC);
6566
6567 // Ignore things found implicitly in the wrong scope.
6568 // TODO: better diagnostics for this case. Suggesting the right
6569 // qualified scope would be nice...
6570 LookupResult::Filter F = Previous.makeFilter();
6571 while (F.hasNext()) {
6572 NamedDecl *D = F.next();
6573 if (!DC->InEnclosingNamespaceSetOf(
6574 D->getDeclContext()->getRedeclContext()))
6575 F.erase();
6576 }
6577 F.done();
6578
6579 if (Previous.empty()) {
6580 D.setInvalidType();
6581 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6582 return 0;
6583 }
6584
6585 // C++ [class.friend]p1: A friend of a class is a function or
6586 // class that is not a member of the class . . .
6587 if (DC->Equals(CurContext))
6588 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6589
6590 // - There's a scope specifier that does not match any template
6591 // parameter lists, in which case we use some arbitrary context,
6592 // create a method or method template, and wait for instantiation.
6593 // - There's a scope specifier that does match some template
6594 // parameter lists, which we don't handle right now.
6595 } else {
6596 DC = CurContext;
6597 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall07e91c02009-08-06 02:15:43 +00006598 }
6599
John McCallf7cfb222010-10-13 05:45:15 +00006600 if (!DC->isRecord()) {
John McCall07e91c02009-08-06 02:15:43 +00006601 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00006602 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6603 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6604 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00006605 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00006606 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6607 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall48871652010-08-21 09:40:31 +00006608 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006609 }
John McCall07e91c02009-08-06 02:15:43 +00006610 }
6611
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006612 bool Redeclaration = false;
John McCallccbc0322010-10-13 06:22:15 +00006613 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006614 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00006615 IsDefinition,
6616 Redeclaration);
John McCall48871652010-08-21 09:40:31 +00006617 if (!ND) return 0;
John McCall759e32b2009-08-31 22:39:49 +00006618
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006619 assert(ND->getDeclContext() == DC);
6620 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00006621
John McCall759e32b2009-08-31 22:39:49 +00006622 // Add the function declaration to the appropriate lookup tables,
6623 // adjusting the redeclarations list as necessary. We don't
6624 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00006625 //
John McCall759e32b2009-08-31 22:39:49 +00006626 // Also update the scope-based lookup if the target context's
6627 // lookup context is in lexical scope.
6628 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00006629 DC = DC->getRedeclContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006630 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006631 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006632 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006633 }
John McCallaa74a0c2009-08-28 07:59:38 +00006634
6635 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006636 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00006637 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00006638 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00006639 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00006640
John McCallde3fd222010-10-12 23:13:28 +00006641 if (ND->isInvalidDecl())
6642 FrD->setInvalidDecl();
John McCall2c2eb122010-10-16 06:59:13 +00006643 else {
6644 FunctionDecl *FD;
6645 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
6646 FD = FTD->getTemplatedDecl();
6647 else
6648 FD = cast<FunctionDecl>(ND);
6649
6650 // Mark templated-scope function declarations as unsupported.
6651 if (FD->getNumTemplateParameterLists())
6652 FrD->setUnsupportedFriend(true);
6653 }
John McCallde3fd222010-10-12 23:13:28 +00006654
John McCall48871652010-08-21 09:40:31 +00006655 return ND;
Anders Carlsson38811702009-05-11 22:55:49 +00006656}
6657
John McCall48871652010-08-21 09:40:31 +00006658void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
6659 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00006660
Sebastian Redlf769df52009-03-24 22:27:57 +00006661 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6662 if (!Fn) {
6663 Diag(DelLoc, diag::err_deleted_non_function);
6664 return;
6665 }
6666 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6667 Diag(DelLoc, diag::err_deleted_decl_not_first);
6668 Diag(Prev->getLocation(), diag::note_previous_declaration);
6669 // If the declaration wasn't the first, we delete the function anyway for
6670 // recovery.
6671 }
6672 Fn->setDeleted();
6673}
Sebastian Redl4c018662009-04-27 21:33:24 +00006674
6675static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6676 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6677 ++CI) {
6678 Stmt *SubStmt = *CI;
6679 if (!SubStmt)
6680 continue;
6681 if (isa<ReturnStmt>(SubStmt))
6682 Self.Diag(SubStmt->getSourceRange().getBegin(),
6683 diag::err_return_in_constructor_handler);
6684 if (!isa<Expr>(SubStmt))
6685 SearchForReturnInStmt(Self, SubStmt);
6686 }
6687}
6688
6689void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6690 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6691 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6692 SearchForReturnInStmt(*this, Handler);
6693 }
6694}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006695
Mike Stump11289f42009-09-09 15:08:12 +00006696bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006697 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00006698 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6699 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006700
Chandler Carruth284bb2e2010-02-15 11:53:20 +00006701 if (Context.hasSameType(NewTy, OldTy) ||
6702 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006703 return false;
Mike Stump11289f42009-09-09 15:08:12 +00006704
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006705 // Check if the return types are covariant
6706 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00006707
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006708 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006709 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6710 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006711 NewClassTy = NewPT->getPointeeType();
6712 OldClassTy = OldPT->getPointeeType();
6713 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006714 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6715 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6716 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6717 NewClassTy = NewRT->getPointeeType();
6718 OldClassTy = OldRT->getPointeeType();
6719 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006720 }
6721 }
Mike Stump11289f42009-09-09 15:08:12 +00006722
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006723 // The return types aren't either both pointers or references to a class type.
6724 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00006725 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006726 diag::err_different_return_type_for_overriding_virtual_function)
6727 << New->getDeclName() << NewTy << OldTy;
6728 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00006729
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006730 return true;
6731 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006732
Anders Carlssone60365b2009-12-31 18:34:24 +00006733 // C++ [class.virtual]p6:
6734 // If the return type of D::f differs from the return type of B::f, the
6735 // class type in the return type of D::f shall be complete at the point of
6736 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006737 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6738 if (!RT->isBeingDefined() &&
6739 RequireCompleteType(New->getLocation(), NewClassTy,
6740 PDiag(diag::err_covariant_return_incomplete)
6741 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00006742 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006743 }
Anders Carlssone60365b2009-12-31 18:34:24 +00006744
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00006745 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006746 // Check if the new class derives from the old class.
6747 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6748 Diag(New->getLocation(),
6749 diag::err_covariant_return_not_derived)
6750 << New->getDeclName() << NewTy << OldTy;
6751 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6752 return true;
6753 }
Mike Stump11289f42009-09-09 15:08:12 +00006754
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006755 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00006756 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00006757 diag::err_covariant_return_inaccessible_base,
6758 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6759 // FIXME: Should this point to the return type?
6760 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006761 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6762 return true;
6763 }
6764 }
Mike Stump11289f42009-09-09 15:08:12 +00006765
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006766 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006767 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006768 Diag(New->getLocation(),
6769 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006770 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006771 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6772 return true;
6773 };
Mike Stump11289f42009-09-09 15:08:12 +00006774
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006775
6776 // The new class type must have the same or less qualifiers as the old type.
6777 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6778 Diag(New->getLocation(),
6779 diag::err_covariant_return_type_class_type_more_qualified)
6780 << New->getDeclName() << NewTy << OldTy;
6781 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6782 return true;
6783 };
Mike Stump11289f42009-09-09 15:08:12 +00006784
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006785 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006786}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006787
Alexis Hunt96d5c762009-11-21 08:43:09 +00006788bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6789 const CXXMethodDecl *Old)
6790{
6791 if (Old->hasAttr<FinalAttr>()) {
6792 Diag(New->getLocation(), diag::err_final_function_overridden)
6793 << New->getDeclName();
6794 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6795 return true;
6796 }
6797
6798 return false;
6799}
6800
Douglas Gregor21920e372009-12-01 17:24:26 +00006801/// \brief Mark the given method pure.
6802///
6803/// \param Method the method to be marked pure.
6804///
6805/// \param InitRange the source range that covers the "0" initializer.
6806bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6807 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6808 Method->setPure();
Douglas Gregor21920e372009-12-01 17:24:26 +00006809 return false;
6810 }
6811
6812 if (!Method->isInvalidDecl())
6813 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6814 << Method->getDeclName() << InitRange;
6815 return true;
6816}
6817
John McCall1f4ee7b2009-12-19 09:28:58 +00006818/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6819/// an initializer for the out-of-line declaration 'Dcl'. The scope
6820/// is a fresh scope pushed for just this purpose.
6821///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006822/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6823/// static data member of class X, names should be looked up in the scope of
6824/// class X.
John McCall48871652010-08-21 09:40:31 +00006825void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006826 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006827 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006828
John McCall1f4ee7b2009-12-19 09:28:58 +00006829 // We should only get called for declarations with scope specifiers, like:
6830 // int foo::bar;
6831 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006832 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006833}
6834
6835/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall48871652010-08-21 09:40:31 +00006836/// initializer for the out-of-line declaration 'D'.
6837void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006838 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006839 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006840
John McCall1f4ee7b2009-12-19 09:28:58 +00006841 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006842 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006843}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006844
6845/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6846/// C++ if/switch/while/for statement.
6847/// e.g: "if (int x = f()) {...}"
John McCall48871652010-08-21 09:40:31 +00006848DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006849 // C++ 6.4p2:
6850 // The declarator shall not specify a function or an array.
6851 // The type-specifier-seq shall not contain typedef and shall not declare a
6852 // new class or enumeration.
6853 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6854 "Parser allowed 'typedef' as storage class of condition decl.");
6855
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006856 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00006857 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6858 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006859
6860 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6861 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6862 // would be created and CXXConditionDeclExpr wants a VarDecl.
6863 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6864 << D.getSourceRange();
6865 return DeclResult();
6866 } else if (OwnedTag && OwnedTag->isDefinition()) {
6867 // The type-specifier-seq shall not declare a new class or enumeration.
6868 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6869 }
6870
John McCall48871652010-08-21 09:40:31 +00006871 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006872 if (!Dcl)
6873 return DeclResult();
6874
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006875 return Dcl;
6876}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006877
Douglas Gregor88d292c2010-05-13 16:44:06 +00006878void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6879 bool DefinitionRequired) {
6880 // Ignore any vtable uses in unevaluated operands or for classes that do
6881 // not have a vtable.
6882 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6883 CurContext->isDependentContext() ||
6884 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006885 return;
6886
Douglas Gregor88d292c2010-05-13 16:44:06 +00006887 // Try to insert this class into the map.
6888 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6889 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6890 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6891 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00006892 // If we already had an entry, check to see if we are promoting this vtable
6893 // to required a definition. If so, we need to reappend to the VTableUses
6894 // list, since we may have already processed the first entry.
6895 if (DefinitionRequired && !Pos.first->second) {
6896 Pos.first->second = true;
6897 } else {
6898 // Otherwise, we can early exit.
6899 return;
6900 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006901 }
6902
6903 // Local classes need to have their virtual members marked
6904 // immediately. For all other classes, we mark their virtual members
6905 // at the end of the translation unit.
6906 if (Class->isLocalClass())
6907 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006908 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006909 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006910}
6911
Douglas Gregor88d292c2010-05-13 16:44:06 +00006912bool Sema::DefineUsedVTables() {
6913 // If any dynamic classes have their key function defined within
6914 // this translation unit, then those vtables are considered "used" and must
6915 // be emitted.
6916 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6917 if (const CXXMethodDecl *KeyFunction
6918 = Context.getKeyFunction(DynamicClasses[I])) {
6919 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006920 if (KeyFunction->hasBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006921 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6922 }
6923 }
6924
6925 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006926 return false;
6927
Douglas Gregor88d292c2010-05-13 16:44:06 +00006928 // Note: The VTableUses vector could grow as a result of marking
6929 // the members of a class as "used", so we check the size each
6930 // time through the loop and prefer indices (with are stable) to
6931 // iterators (which are not).
6932 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00006933 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006934 if (!Class)
6935 continue;
6936
6937 SourceLocation Loc = VTableUses[I].second;
6938
6939 // If this class has a key function, but that key function is
6940 // defined in another translation unit, we don't need to emit the
6941 // vtable even though we're using it.
6942 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006943 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00006944 switch (KeyFunction->getTemplateSpecializationKind()) {
6945 case TSK_Undeclared:
6946 case TSK_ExplicitSpecialization:
6947 case TSK_ExplicitInstantiationDeclaration:
6948 // The key function is in another translation unit.
6949 continue;
6950
6951 case TSK_ExplicitInstantiationDefinition:
6952 case TSK_ImplicitInstantiation:
6953 // We will be instantiating the key function.
6954 break;
6955 }
6956 } else if (!KeyFunction) {
6957 // If we have a class with no key function that is the subject
6958 // of an explicit instantiation declaration, suppress the
6959 // vtable; it will live with the explicit instantiation
6960 // definition.
6961 bool IsExplicitInstantiationDeclaration
6962 = Class->getTemplateSpecializationKind()
6963 == TSK_ExplicitInstantiationDeclaration;
6964 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6965 REnd = Class->redecls_end();
6966 R != REnd; ++R) {
6967 TemplateSpecializationKind TSK
6968 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6969 if (TSK == TSK_ExplicitInstantiationDeclaration)
6970 IsExplicitInstantiationDeclaration = true;
6971 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6972 IsExplicitInstantiationDeclaration = false;
6973 break;
6974 }
6975 }
6976
6977 if (IsExplicitInstantiationDeclaration)
6978 continue;
6979 }
6980
6981 // Mark all of the virtual members of this class as referenced, so
6982 // that we can build a vtable. Then, tell the AST consumer that a
6983 // vtable for this class is required.
6984 MarkVirtualMembersReferenced(Loc, Class);
6985 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6986 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6987
6988 // Optionally warn if we're emitting a weak vtable.
6989 if (Class->getLinkage() == ExternalLinkage &&
6990 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006991 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006992 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6993 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006994 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006995 VTableUses.clear();
6996
Anders Carlsson82fccd02009-12-07 08:24:59 +00006997 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006998}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006999
Rafael Espindola5b334082010-03-26 00:36:59 +00007000void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
7001 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00007002 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
7003 e = RD->method_end(); i != e; ++i) {
7004 CXXMethodDecl *MD = *i;
7005
7006 // C++ [basic.def.odr]p2:
7007 // [...] A virtual member function is used if it is not pure. [...]
7008 if (MD->isVirtual() && !MD->isPure())
7009 MarkDeclarationReferenced(Loc, MD);
7010 }
Rafael Espindola5b334082010-03-26 00:36:59 +00007011
7012 // Only classes that have virtual bases need a VTT.
7013 if (RD->getNumVBases() == 0)
7014 return;
7015
7016 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
7017 e = RD->bases_end(); i != e; ++i) {
7018 const CXXRecordDecl *Base =
7019 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +00007020 if (Base->getNumVBases() == 0)
7021 continue;
7022 MarkVirtualMembersReferenced(Loc, Base);
7023 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00007024}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007025
7026/// SetIvarInitializers - This routine builds initialization ASTs for the
7027/// Objective-C implementation whose ivars need be initialized.
7028void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
7029 if (!getLangOptions().CPlusPlus)
7030 return;
Fariborz Jahaniana50b3a22010-08-20 21:21:08 +00007031 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007032 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
7033 CollectIvarsToConstructOrDestruct(OID, ivars);
7034 if (ivars.empty())
7035 return;
7036 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
7037 for (unsigned i = 0; i < ivars.size(); i++) {
7038 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00007039 if (Field->isInvalidDecl())
7040 continue;
7041
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007042 CXXBaseOrMemberInitializer *Member;
7043 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
7044 InitializationKind InitKind =
7045 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
7046
7047 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00007048 ExprResult MemberInit =
John McCallfaf5fb42010-08-26 23:41:50 +00007049 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
John McCallb268a282010-08-23 23:25:46 +00007050 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007051 // Note, MemberInit could actually come back empty if no initialization
7052 // is required (e.g., because it would call a trivial default constructor)
7053 if (!MemberInit.get() || MemberInit.isInvalid())
7054 continue;
John McCallacf0ee52010-10-08 02:01:28 +00007055
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007056 Member =
7057 new (Context) CXXBaseOrMemberInitializer(Context,
7058 Field, SourceLocation(),
7059 SourceLocation(),
7060 MemberInit.takeAs<Expr>(),
7061 SourceLocation());
7062 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00007063
7064 // Be sure that the destructor is accessible and is marked as referenced.
7065 if (const RecordType *RecordTy
7066 = Context.getBaseElementType(Field->getType())
7067 ->getAs<RecordType>()) {
7068 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00007069 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00007070 MarkDeclarationReferenced(Field->getLocation(), Destructor);
7071 CheckDestructorAccess(Field->getLocation(), Destructor,
7072 PDiag(diag::err_access_dtor_ivar)
7073 << Context.getBaseElementType(Field->getType()));
7074 }
7075 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00007076 }
7077 ObjCImplementation->setIvarInitializers(Context,
7078 AllToInit.data(), AllToInit.size());
7079 }
7080}