blob: cb88225adaf5cb65d42518d11e43513a2e57941e [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,
Douglas Gregored088b72010-05-03 15:43:53 +00001518 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001519
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001520 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001521 QualType ArgTy =
1522 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1523 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001524
1525 CXXCastPath BasePath;
1526 BasePath.push_back(BaseSpec);
Sebastian Redlc57d34b2010-07-20 04:20:21 +00001527 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
John McCalle3027922010-08-25 11:45:40 +00001528 CK_UncheckedDerivedToBase,
John McCall2536c6d2010-08-25 10:28:54 +00001529 VK_LValue, &BasePath);
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001530
Anders Carlsson1b00e242010-04-23 03:10:23 +00001531 InitializationKind InitKind
1532 = InitializationKind::CreateDirect(Constructor->getLocation(),
1533 SourceLocation(), SourceLocation());
1534 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1535 &CopyCtorArg, 1);
1536 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001537 MultiExprArg(&CopyCtorArg, 1));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001538 break;
1539 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001540
Anders Carlsson1b00e242010-04-23 03:10:23 +00001541 case IIK_Move:
1542 assert(false && "Unhandled initializer kind!");
1543 }
John McCallb268a282010-08-23 23:25:46 +00001544
1545 if (BaseInit.isInvalid())
1546 return true;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001547
John McCallb268a282010-08-23 23:25:46 +00001548 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001549 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001550 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001551
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001552 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001553 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1554 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1555 SourceLocation()),
1556 BaseSpec->isVirtual(),
1557 SourceLocation(),
1558 BaseInit.takeAs<Expr>(),
1559 SourceLocation());
1560
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001561 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001562}
1563
Anders Carlsson3c1db572010-04-23 02:15:47 +00001564static bool
1565BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001566 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001567 FieldDecl *Field,
1568 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001569 if (Field->isInvalidDecl())
1570 return true;
1571
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001572 SourceLocation Loc = Constructor->getLocation();
1573
Anders Carlsson423f5d82010-04-23 16:04:08 +00001574 if (ImplicitInitKind == IIK_Copy) {
1575 ParmVarDecl *Param = Constructor->getParamDecl(0);
1576 QualType ParamType = Param->getType().getNonReferenceType();
1577
1578 Expr *MemberExprBase =
1579 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001580 Loc, ParamType, 0);
1581
1582 // Build a reference to this field within the parameter.
1583 CXXScopeSpec SS;
1584 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1585 Sema::LookupMemberName);
1586 MemberLookup.addDecl(Field, AS_public);
1587 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00001588 ExprResult CopyCtorArg
John McCallb268a282010-08-23 23:25:46 +00001589 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001590 ParamType, Loc,
1591 /*IsArrow=*/false,
1592 SS,
1593 /*FirstQualifierInScope=*/0,
1594 MemberLookup,
1595 /*TemplateArgs=*/0);
1596 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001597 return true;
1598
Douglas Gregor94f9a482010-05-05 05:51:00 +00001599 // When the field we are copying is an array, create index variables for
1600 // each dimension of the array. We use these index variables to subscript
1601 // the source array, and other clients (e.g., CodeGen) will perform the
1602 // necessary iteration with these index variables.
1603 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1604 QualType BaseType = Field->getType();
1605 QualType SizeType = SemaRef.Context.getSizeType();
1606 while (const ConstantArrayType *Array
1607 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1608 // Create the iteration variable for this array index.
1609 IdentifierInfo *IterationVarName = 0;
1610 {
1611 llvm::SmallString<8> Str;
1612 llvm::raw_svector_ostream OS(Str);
1613 OS << "__i" << IndexVariables.size();
1614 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1615 }
1616 VarDecl *IterationVar
1617 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1618 IterationVarName, SizeType,
1619 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00001620 SC_None, SC_None);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001621 IndexVariables.push_back(IterationVar);
1622
1623 // Create a reference to the iteration variable.
John McCalldadc5752010-08-24 06:29:42 +00001624 ExprResult IterationVarRef
Douglas Gregor94f9a482010-05-05 05:51:00 +00001625 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1626 assert(!IterationVarRef.isInvalid() &&
1627 "Reference to invented variable cannot fail!");
1628
1629 // Subscript the array with this iteration variable.
John McCallb268a282010-08-23 23:25:46 +00001630 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001631 Loc,
John McCallb268a282010-08-23 23:25:46 +00001632 IterationVarRef.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001633 Loc);
1634 if (CopyCtorArg.isInvalid())
1635 return true;
1636
1637 BaseType = Array->getElementType();
1638 }
1639
1640 // Construct the entity that we will be initializing. For an array, this
1641 // will be first element in the array, which may require several levels
1642 // of array-subscript entities.
1643 llvm::SmallVector<InitializedEntity, 4> Entities;
1644 Entities.reserve(1 + IndexVariables.size());
1645 Entities.push_back(InitializedEntity::InitializeMember(Field));
1646 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1647 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1648 0,
1649 Entities.back()));
1650
1651 // Direct-initialize to use the copy constructor.
1652 InitializationKind InitKind =
1653 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1654
1655 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1656 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1657 &CopyCtorArgE, 1);
1658
John McCalldadc5752010-08-24 06:29:42 +00001659 ExprResult MemberInit
Douglas Gregor94f9a482010-05-05 05:51:00 +00001660 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001661 MultiExprArg(&CopyCtorArgE, 1));
John McCallb268a282010-08-23 23:25:46 +00001662 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor94f9a482010-05-05 05:51:00 +00001663 if (MemberInit.isInvalid())
1664 return true;
1665
1666 CXXMemberInit
1667 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1668 MemberInit.takeAs<Expr>(), Loc,
1669 IndexVariables.data(),
1670 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001671 return false;
1672 }
1673
Anders Carlsson423f5d82010-04-23 16:04:08 +00001674 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1675
Anders Carlsson3c1db572010-04-23 02:15:47 +00001676 QualType FieldBaseElementType =
1677 SemaRef.Context.getBaseElementType(Field->getType());
1678
Anders Carlsson3c1db572010-04-23 02:15:47 +00001679 if (FieldBaseElementType->isRecordType()) {
1680 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001681 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001682 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001683
1684 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00001685 ExprResult MemberInit =
John McCallfaf5fb42010-08-26 23:41:50 +00001686 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCallb268a282010-08-23 23:25:46 +00001687 if (MemberInit.isInvalid())
1688 return true;
1689
1690 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001691 if (MemberInit.isInvalid())
1692 return true;
1693
1694 CXXMemberInit =
1695 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001696 Field, Loc, Loc,
John McCallb268a282010-08-23 23:25:46 +00001697 MemberInit.get(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001698 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001699 return false;
1700 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001701
1702 if (FieldBaseElementType->isReferenceType()) {
1703 SemaRef.Diag(Constructor->getLocation(),
1704 diag::err_uninitialized_member_in_ctor)
1705 << (int)Constructor->isImplicit()
1706 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1707 << 0 << Field->getDeclName();
1708 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1709 return true;
1710 }
1711
1712 if (FieldBaseElementType.isConstQualified()) {
1713 SemaRef.Diag(Constructor->getLocation(),
1714 diag::err_uninitialized_member_in_ctor)
1715 << (int)Constructor->isImplicit()
1716 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1717 << 1 << Field->getDeclName();
1718 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1719 return true;
1720 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001721
1722 // Nothing to initialize.
1723 CXXMemberInit = 0;
1724 return false;
1725}
John McCallbc83b3f2010-05-20 23:23:51 +00001726
1727namespace {
1728struct BaseAndFieldInfo {
1729 Sema &S;
1730 CXXConstructorDecl *Ctor;
1731 bool AnyErrorsInInits;
1732 ImplicitInitializerKind IIK;
1733 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1734 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1735
1736 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1737 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1738 // FIXME: Handle implicit move constructors.
1739 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1740 IIK = IIK_Copy;
1741 else
1742 IIK = IIK_Default;
1743 }
1744};
1745}
1746
Chandler Carruth139e9622010-06-30 02:59:29 +00001747static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1748 FieldDecl *Top, FieldDecl *Field,
1749 CXXBaseOrMemberInitializer *Init) {
1750 // If the member doesn't need to be initialized, Init will still be null.
1751 if (!Init)
1752 return;
1753
1754 Info.AllToInit.push_back(Init);
1755 if (Field != Top) {
1756 Init->setMember(Top);
1757 Init->setAnonUnionMember(Field);
1758 }
1759}
1760
John McCallbc83b3f2010-05-20 23:23:51 +00001761static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1762 FieldDecl *Top, FieldDecl *Field) {
1763
Chandler Carruth139e9622010-06-30 02:59:29 +00001764 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001765 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001766 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001767 return false;
1768 }
1769
1770 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1771 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1772 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001773 CXXRecordDecl *FieldClassDecl
1774 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001775
1776 // Even though union members never have non-trivial default
1777 // constructions in C++03, we still build member initializers for aggregate
1778 // record types which can be union members, and C++0x allows non-trivial
1779 // default constructors for union members, so we ensure that only one
1780 // member is initialized for these.
1781 if (FieldClassDecl->isUnion()) {
1782 // First check for an explicit initializer for one field.
1783 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1784 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1785 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1786 RecordFieldInitializer(Info, Top, *FA, Init);
1787
1788 // Once we've initialized a field of an anonymous union, the union
1789 // field in the class is also initialized, so exit immediately.
1790 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00001791 } else if ((*FA)->isAnonymousStructOrUnion()) {
1792 if (CollectFieldInitializer(Info, Top, *FA))
1793 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00001794 }
1795 }
1796
1797 // Fallthrough and construct a default initializer for the union as
1798 // a whole, which can call its default constructor if such a thing exists
1799 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1800 // behavior going forward with C++0x, when anonymous unions there are
1801 // finalized, we should revisit this.
1802 } else {
1803 // For structs, we simply descend through to initialize all members where
1804 // necessary.
1805 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1806 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1807 if (CollectFieldInitializer(Info, Top, *FA))
1808 return true;
1809 }
1810 }
John McCallbc83b3f2010-05-20 23:23:51 +00001811 }
1812
1813 // Don't try to build an implicit initializer if there were semantic
1814 // errors in any of the initializers (and therefore we might be
1815 // missing some that the user actually wrote).
1816 if (Info.AnyErrorsInInits)
1817 return false;
1818
1819 CXXBaseOrMemberInitializer *Init = 0;
1820 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1821 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001822
Chandler Carruth139e9622010-06-30 02:59:29 +00001823 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001824 return false;
1825}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001826
Eli Friedman9cf6b592009-11-09 19:20:36 +00001827bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001828Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001829 CXXBaseOrMemberInitializer **Initializers,
1830 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001831 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001832 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001833 // Just store the initializers as written, they will be checked during
1834 // instantiation.
1835 if (NumInitializers > 0) {
1836 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1837 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1838 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1839 memcpy(baseOrMemberInitializers, Initializers,
1840 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1841 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1842 }
1843
1844 return false;
1845 }
1846
John McCallbc83b3f2010-05-20 23:23:51 +00001847 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001848
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001849 // We need to build the initializer AST according to order of construction
1850 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001851 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001852 if (!ClassDecl)
1853 return true;
1854
Eli Friedman9cf6b592009-11-09 19:20:36 +00001855 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001856
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001857 for (unsigned i = 0; i < NumInitializers; i++) {
1858 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001859
1860 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001861 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001862 else
John McCallbc83b3f2010-05-20 23:23:51 +00001863 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001864 }
1865
Anders Carlsson43c64af2010-04-21 19:52:01 +00001866 // Keep track of the direct virtual bases.
1867 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1868 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1869 E = ClassDecl->bases_end(); I != E; ++I) {
1870 if (I->isVirtual())
1871 DirectVBases.insert(I);
1872 }
1873
Anders Carlssondb0a9652010-04-02 06:26:44 +00001874 // Push virtual bases before others.
1875 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1876 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1877
1878 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001879 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1880 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001881 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001882 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001883 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001884 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001885 VBase, IsInheritedVirtualBase,
1886 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001887 HadError = true;
1888 continue;
1889 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001890
John McCallbc83b3f2010-05-20 23:23:51 +00001891 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001892 }
1893 }
Mike Stump11289f42009-09-09 15:08:12 +00001894
John McCallbc83b3f2010-05-20 23:23:51 +00001895 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001896 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1897 E = ClassDecl->bases_end(); Base != E; ++Base) {
1898 // Virtuals are in the virtual base list and already constructed.
1899 if (Base->isVirtual())
1900 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001901
Anders Carlssondb0a9652010-04-02 06:26:44 +00001902 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001903 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1904 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001905 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001906 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001907 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001908 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001909 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001910 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001911 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001912 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001913
John McCallbc83b3f2010-05-20 23:23:51 +00001914 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001915 }
1916 }
Mike Stump11289f42009-09-09 15:08:12 +00001917
John McCallbc83b3f2010-05-20 23:23:51 +00001918 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001919 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001920 E = ClassDecl->field_end(); Field != E; ++Field) {
1921 if ((*Field)->getType()->isIncompleteArrayType()) {
1922 assert(ClassDecl->hasFlexibleArrayMember() &&
1923 "Incomplete array type is not valid");
1924 continue;
1925 }
John McCallbc83b3f2010-05-20 23:23:51 +00001926 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001927 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001928 }
Mike Stump11289f42009-09-09 15:08:12 +00001929
John McCallbc83b3f2010-05-20 23:23:51 +00001930 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001931 if (NumInitializers > 0) {
1932 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1933 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1934 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001935 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001936 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001937 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001938
John McCalla6309952010-03-16 21:39:52 +00001939 // Constructors implicitly reference the base and member
1940 // destructors.
1941 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1942 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001943 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001944
1945 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001946}
1947
Eli Friedman952c15d2009-07-21 19:28:10 +00001948static void *GetKeyForTopLevelField(FieldDecl *Field) {
1949 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001950 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001951 if (RT->getDecl()->isAnonymousStructOrUnion())
1952 return static_cast<void *>(RT->getDecl());
1953 }
1954 return static_cast<void *>(Field);
1955}
1956
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001957static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1958 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001959}
1960
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001961static void *GetKeyForMember(ASTContext &Context,
1962 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001963 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001964 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001965 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001966
Eli Friedman952c15d2009-07-21 19:28:10 +00001967 // For fields injected into the class via declaration of an anonymous union,
1968 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001969 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001970
Anders Carlssona942dcd2010-03-30 15:39:27 +00001971 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1972 // data member of the class. Data member used in the initializer list is
1973 // in AnonUnionMember field.
1974 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1975 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001976
John McCall23eebd92010-04-10 09:28:51 +00001977 // If the field is a member of an anonymous struct or union, our key
1978 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001979 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001980 if (RD->isAnonymousStructOrUnion()) {
1981 while (true) {
1982 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1983 if (Parent->isAnonymousStructOrUnion())
1984 RD = Parent;
1985 else
1986 break;
1987 }
1988
Anders Carlsson83ac3122010-03-30 16:19:37 +00001989 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00001990 }
Mike Stump11289f42009-09-09 15:08:12 +00001991
Anders Carlssona942dcd2010-03-30 15:39:27 +00001992 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00001993}
1994
Anders Carlssone857b292010-04-02 03:37:03 +00001995static void
1996DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001997 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00001998 CXXBaseOrMemberInitializer **Inits,
1999 unsigned NumInits) {
2000 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002001 return;
Mike Stump11289f42009-09-09 15:08:12 +00002002
John McCallbb7b6582010-04-10 07:37:23 +00002003 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2004 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002005 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002006
John McCallbb7b6582010-04-10 07:37:23 +00002007 // Build the list of bases and members in the order that they'll
2008 // actually be initialized. The explicit initializers should be in
2009 // this same order but may be missing things.
2010 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002011
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002012 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2013
John McCallbb7b6582010-04-10 07:37:23 +00002014 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002015 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002016 ClassDecl->vbases_begin(),
2017 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002018 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002019
John McCallbb7b6582010-04-10 07:37:23 +00002020 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002021 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002022 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002023 if (Base->isVirtual())
2024 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002025 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002026 }
Mike Stump11289f42009-09-09 15:08:12 +00002027
John McCallbb7b6582010-04-10 07:37:23 +00002028 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002029 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2030 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002031 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002032
John McCallbb7b6582010-04-10 07:37:23 +00002033 unsigned NumIdealInits = IdealInitKeys.size();
2034 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002035
John McCallbb7b6582010-04-10 07:37:23 +00002036 CXXBaseOrMemberInitializer *PrevInit = 0;
2037 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2038 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2039 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2040
2041 // Scan forward to try to find this initializer in the idealized
2042 // initializers list.
2043 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2044 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002045 break;
John McCallbb7b6582010-04-10 07:37:23 +00002046
2047 // If we didn't find this initializer, it must be because we
2048 // scanned past it on a previous iteration. That can only
2049 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002050 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002051 Sema::SemaDiagnosticBuilder D =
2052 SemaRef.Diag(PrevInit->getSourceLocation(),
2053 diag::warn_initializer_out_of_order);
2054
2055 if (PrevInit->isMemberInitializer())
2056 D << 0 << PrevInit->getMember()->getDeclName();
2057 else
2058 D << 1 << PrevInit->getBaseClassInfo()->getType();
2059
2060 if (Init->isMemberInitializer())
2061 D << 0 << Init->getMember()->getDeclName();
2062 else
2063 D << 1 << Init->getBaseClassInfo()->getType();
2064
2065 // Move back to the initializer's location in the ideal list.
2066 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2067 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002068 break;
John McCallbb7b6582010-04-10 07:37:23 +00002069
2070 assert(IdealIndex != NumIdealInits &&
2071 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002072 }
John McCallbb7b6582010-04-10 07:37:23 +00002073
2074 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002075 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002076}
2077
John McCall23eebd92010-04-10 09:28:51 +00002078namespace {
2079bool CheckRedundantInit(Sema &S,
2080 CXXBaseOrMemberInitializer *Init,
2081 CXXBaseOrMemberInitializer *&PrevInit) {
2082 if (!PrevInit) {
2083 PrevInit = Init;
2084 return false;
2085 }
2086
2087 if (FieldDecl *Field = Init->getMember())
2088 S.Diag(Init->getSourceLocation(),
2089 diag::err_multiple_mem_initialization)
2090 << Field->getDeclName()
2091 << Init->getSourceRange();
2092 else {
2093 Type *BaseClass = Init->getBaseClass();
2094 assert(BaseClass && "neither field nor base");
2095 S.Diag(Init->getSourceLocation(),
2096 diag::err_multiple_base_initialization)
2097 << QualType(BaseClass, 0)
2098 << Init->getSourceRange();
2099 }
2100 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2101 << 0 << PrevInit->getSourceRange();
2102
2103 return true;
2104}
2105
2106typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2107typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2108
2109bool CheckRedundantUnionInit(Sema &S,
2110 CXXBaseOrMemberInitializer *Init,
2111 RedundantUnionMap &Unions) {
2112 FieldDecl *Field = Init->getMember();
2113 RecordDecl *Parent = Field->getParent();
2114 if (!Parent->isAnonymousStructOrUnion())
2115 return false;
2116
2117 NamedDecl *Child = Field;
2118 do {
2119 if (Parent->isUnion()) {
2120 UnionEntry &En = Unions[Parent];
2121 if (En.first && En.first != Child) {
2122 S.Diag(Init->getSourceLocation(),
2123 diag::err_multiple_mem_union_initialization)
2124 << Field->getDeclName()
2125 << Init->getSourceRange();
2126 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2127 << 0 << En.second->getSourceRange();
2128 return true;
2129 } else if (!En.first) {
2130 En.first = Child;
2131 En.second = Init;
2132 }
2133 }
2134
2135 Child = Parent;
2136 Parent = cast<RecordDecl>(Parent->getDeclContext());
2137 } while (Parent->isAnonymousStructOrUnion());
2138
2139 return false;
2140}
2141}
2142
Anders Carlssone857b292010-04-02 03:37:03 +00002143/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00002144void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00002145 SourceLocation ColonLoc,
2146 MemInitTy **meminits, unsigned NumMemInits,
2147 bool AnyErrors) {
2148 if (!ConstructorDecl)
2149 return;
2150
2151 AdjustDeclIfTemplate(ConstructorDecl);
2152
2153 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002154 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00002155
2156 if (!Constructor) {
2157 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2158 return;
2159 }
2160
2161 CXXBaseOrMemberInitializer **MemInits =
2162 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002163
2164 // Mapping for the duplicate initializers check.
2165 // For member initializers, this is keyed with a FieldDecl*.
2166 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002167 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002168
2169 // Mapping for the inconsistent anonymous-union initializers check.
2170 RedundantUnionMap MemberUnions;
2171
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002172 bool HadError = false;
2173 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002174 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002175
Abramo Bagnara341d7832010-05-26 18:09:23 +00002176 // Set the source order index.
2177 Init->setSourceOrder(i);
2178
John McCall23eebd92010-04-10 09:28:51 +00002179 if (Init->isMemberInitializer()) {
2180 FieldDecl *Field = Init->getMember();
2181 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2182 CheckRedundantUnionInit(*this, Init, MemberUnions))
2183 HadError = true;
2184 } else {
2185 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2186 if (CheckRedundantInit(*this, Init, Members[Key]))
2187 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002188 }
Anders Carlssone857b292010-04-02 03:37:03 +00002189 }
2190
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002191 if (HadError)
2192 return;
2193
Anders Carlssone857b292010-04-02 03:37:03 +00002194 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002195
2196 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002197}
2198
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002199void
John McCalla6309952010-03-16 21:39:52 +00002200Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2201 CXXRecordDecl *ClassDecl) {
2202 // Ignore dependent contexts.
2203 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002204 return;
John McCall1064d7e2010-03-16 05:22:47 +00002205
2206 // FIXME: all the access-control diagnostics are positioned on the
2207 // field/base declaration. That's probably good; that said, the
2208 // user might reasonably want to know why the destructor is being
2209 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002210
Anders Carlssondee9a302009-11-17 04:44:12 +00002211 // Non-static data members.
2212 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2213 E = ClassDecl->field_end(); I != E; ++I) {
2214 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002215 if (Field->isInvalidDecl())
2216 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002217 QualType FieldType = Context.getBaseElementType(Field->getType());
2218
2219 const RecordType* RT = FieldType->getAs<RecordType>();
2220 if (!RT)
2221 continue;
2222
2223 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2224 if (FieldClassDecl->hasTrivialDestructor())
2225 continue;
2226
Douglas Gregore71edda2010-07-01 22:47:18 +00002227 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002228 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002229 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002230 << Field->getDeclName()
2231 << FieldType);
2232
John McCalla6309952010-03-16 21:39:52 +00002233 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002234 }
2235
John McCall1064d7e2010-03-16 05:22:47 +00002236 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2237
Anders Carlssondee9a302009-11-17 04:44:12 +00002238 // Bases.
2239 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2240 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002241 // Bases are always records in a well-formed non-dependent class.
2242 const RecordType *RT = Base->getType()->getAs<RecordType>();
2243
2244 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002245 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002246 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002247
2248 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002249 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002250 if (BaseClassDecl->hasTrivialDestructor())
2251 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002252
Douglas Gregore71edda2010-07-01 22:47:18 +00002253 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002254
2255 // FIXME: caret should be on the start of the class name
2256 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002257 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002258 << Base->getType()
2259 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002260
John McCalla6309952010-03-16 21:39:52 +00002261 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002262 }
2263
2264 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002265 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2266 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002267
2268 // Bases are always records in a well-formed non-dependent class.
2269 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2270
2271 // Ignore direct virtual bases.
2272 if (DirectVirtualBases.count(RT))
2273 continue;
2274
Anders Carlssondee9a302009-11-17 04:44:12 +00002275 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002276 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002277 if (BaseClassDecl->hasTrivialDestructor())
2278 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002279
Douglas Gregore71edda2010-07-01 22:47:18 +00002280 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002281 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002282 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002283 << VBase->getType());
2284
John McCalla6309952010-03-16 21:39:52 +00002285 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002286 }
2287}
2288
John McCall48871652010-08-21 09:40:31 +00002289void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002290 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002291 return;
Mike Stump11289f42009-09-09 15:08:12 +00002292
Mike Stump11289f42009-09-09 15:08:12 +00002293 if (CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002294 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002295 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002296}
2297
Mike Stump11289f42009-09-09 15:08:12 +00002298bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002299 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002300 if (SelID == -1)
John McCall02db245d2010-08-18 09:41:07 +00002301 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssoneabf7702009-08-27 00:13:57 +00002302 else
John McCall02db245d2010-08-18 09:41:07 +00002303 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump11289f42009-09-09 15:08:12 +00002304}
2305
Anders Carlssoneabf7702009-08-27 00:13:57 +00002306bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002307 const PartialDiagnostic &PD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002308 if (!getLangOptions().CPlusPlus)
2309 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002310
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002311 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall02db245d2010-08-18 09:41:07 +00002312 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump11289f42009-09-09 15:08:12 +00002313
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002314 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002315 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002316 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002317 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002318
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002319 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall02db245d2010-08-18 09:41:07 +00002320 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002321 }
Mike Stump11289f42009-09-09 15:08:12 +00002322
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002323 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002324 if (!RT)
2325 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002326
John McCall67da35c2010-02-04 22:26:26 +00002327 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002328
John McCall02db245d2010-08-18 09:41:07 +00002329 // We can't answer whether something is abstract until it has a
2330 // definition. If it's currently being defined, we'll walk back
2331 // over all the declarations when we have a full definition.
2332 const CXXRecordDecl *Def = RD->getDefinition();
2333 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00002334 return false;
2335
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002336 if (!RD->isAbstract())
2337 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002338
Anders Carlssoneabf7702009-08-27 00:13:57 +00002339 Diag(Loc, PD) << RD->getDeclName();
John McCall02db245d2010-08-18 09:41:07 +00002340 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002341
John McCall02db245d2010-08-18 09:41:07 +00002342 return true;
2343}
2344
2345void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2346 // Check if we've already emitted the list of pure virtual functions
2347 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002348 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00002349 return;
Mike Stump11289f42009-09-09 15:08:12 +00002350
Douglas Gregor4165bd62010-03-23 23:47:56 +00002351 CXXFinalOverriderMap FinalOverriders;
2352 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002353
Anders Carlssona2f74f32010-06-03 01:00:02 +00002354 // Keep a set of seen pure methods so we won't diagnose the same method
2355 // more than once.
2356 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2357
Douglas Gregor4165bd62010-03-23 23:47:56 +00002358 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2359 MEnd = FinalOverriders.end();
2360 M != MEnd;
2361 ++M) {
2362 for (OverridingMethods::iterator SO = M->second.begin(),
2363 SOEnd = M->second.end();
2364 SO != SOEnd; ++SO) {
2365 // C++ [class.abstract]p4:
2366 // A class is abstract if it contains or inherits at least one
2367 // pure virtual function for which the final overrider is pure
2368 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002369
Douglas Gregor4165bd62010-03-23 23:47:56 +00002370 //
2371 if (SO->second.size() != 1)
2372 continue;
2373
2374 if (!SO->second.front().Method->isPure())
2375 continue;
2376
Anders Carlssona2f74f32010-06-03 01:00:02 +00002377 if (!SeenPureMethods.insert(SO->second.front().Method))
2378 continue;
2379
Douglas Gregor4165bd62010-03-23 23:47:56 +00002380 Diag(SO->second.front().Method->getLocation(),
2381 diag::note_pure_virtual_function)
2382 << SO->second.front().Method->getDeclName();
2383 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002384 }
2385
2386 if (!PureVirtualClassDiagSet)
2387 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2388 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002389}
2390
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002391namespace {
John McCall02db245d2010-08-18 09:41:07 +00002392struct AbstractUsageInfo {
2393 Sema &S;
2394 CXXRecordDecl *Record;
2395 CanQualType AbstractType;
2396 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00002397
John McCall02db245d2010-08-18 09:41:07 +00002398 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2399 : S(S), Record(Record),
2400 AbstractType(S.Context.getCanonicalType(
2401 S.Context.getTypeDeclType(Record))),
2402 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002403
John McCall02db245d2010-08-18 09:41:07 +00002404 void DiagnoseAbstractType() {
2405 if (Invalid) return;
2406 S.DiagnoseAbstractType(Record);
2407 Invalid = true;
2408 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00002409
John McCall02db245d2010-08-18 09:41:07 +00002410 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2411};
2412
2413struct CheckAbstractUsage {
2414 AbstractUsageInfo &Info;
2415 const NamedDecl *Ctx;
2416
2417 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2418 : Info(Info), Ctx(Ctx) {}
2419
2420 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2421 switch (TL.getTypeLocClass()) {
2422#define ABSTRACT_TYPELOC(CLASS, PARENT)
2423#define TYPELOC(CLASS, PARENT) \
2424 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2425#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002426 }
John McCall02db245d2010-08-18 09:41:07 +00002427 }
Mike Stump11289f42009-09-09 15:08:12 +00002428
John McCall02db245d2010-08-18 09:41:07 +00002429 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2430 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2431 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2432 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2433 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002434 }
John McCall02db245d2010-08-18 09:41:07 +00002435 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002436
John McCall02db245d2010-08-18 09:41:07 +00002437 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2438 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2439 }
Mike Stump11289f42009-09-09 15:08:12 +00002440
John McCall02db245d2010-08-18 09:41:07 +00002441 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2442 // Visit the type parameters from a permissive context.
2443 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2444 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2445 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2446 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2447 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2448 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002449 }
John McCall02db245d2010-08-18 09:41:07 +00002450 }
Mike Stump11289f42009-09-09 15:08:12 +00002451
John McCall02db245d2010-08-18 09:41:07 +00002452 // Visit pointee types from a permissive context.
2453#define CheckPolymorphic(Type) \
2454 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2455 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2456 }
2457 CheckPolymorphic(PointerTypeLoc)
2458 CheckPolymorphic(ReferenceTypeLoc)
2459 CheckPolymorphic(MemberPointerTypeLoc)
2460 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00002461
John McCall02db245d2010-08-18 09:41:07 +00002462 /// Handle all the types we haven't given a more specific
2463 /// implementation for above.
2464 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2465 // Every other kind of type that we haven't called out already
2466 // that has an inner type is either (1) sugar or (2) contains that
2467 // inner type in some way as a subobject.
2468 if (TypeLoc Next = TL.getNextTypeLoc())
2469 return Visit(Next, Sel);
2470
2471 // If there's no inner type and we're in a permissive context,
2472 // don't diagnose.
2473 if (Sel == Sema::AbstractNone) return;
2474
2475 // Check whether the type matches the abstract type.
2476 QualType T = TL.getType();
2477 if (T->isArrayType()) {
2478 Sel = Sema::AbstractArrayType;
2479 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002480 }
John McCall02db245d2010-08-18 09:41:07 +00002481 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2482 if (CT != Info.AbstractType) return;
2483
2484 // It matched; do some magic.
2485 if (Sel == Sema::AbstractArrayType) {
2486 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2487 << T << TL.getSourceRange();
2488 } else {
2489 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2490 << Sel << T << TL.getSourceRange();
2491 }
2492 Info.DiagnoseAbstractType();
2493 }
2494};
2495
2496void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2497 Sema::AbstractDiagSelID Sel) {
2498 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2499}
2500
2501}
2502
2503/// Check for invalid uses of an abstract type in a method declaration.
2504static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2505 CXXMethodDecl *MD) {
2506 // No need to do the check on definitions, which require that
2507 // the return/param types be complete.
2508 if (MD->isThisDeclarationADefinition())
2509 return;
2510
2511 // For safety's sake, just ignore it if we don't have type source
2512 // information. This should never happen for non-implicit methods,
2513 // but...
2514 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2515 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2516}
2517
2518/// Check for invalid uses of an abstract type within a class definition.
2519static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2520 CXXRecordDecl *RD) {
2521 for (CXXRecordDecl::decl_iterator
2522 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2523 Decl *D = *I;
2524 if (D->isImplicit()) continue;
2525
2526 // Methods and method templates.
2527 if (isa<CXXMethodDecl>(D)) {
2528 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2529 } else if (isa<FunctionTemplateDecl>(D)) {
2530 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2531 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2532
2533 // Fields and static variables.
2534 } else if (isa<FieldDecl>(D)) {
2535 FieldDecl *FD = cast<FieldDecl>(D);
2536 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2537 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2538 } else if (isa<VarDecl>(D)) {
2539 VarDecl *VD = cast<VarDecl>(D);
2540 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2541 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2542
2543 // Nested classes and class templates.
2544 } else if (isa<CXXRecordDecl>(D)) {
2545 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2546 } else if (isa<ClassTemplateDecl>(D)) {
2547 CheckAbstractClassUsage(Info,
2548 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2549 }
2550 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002551}
2552
Douglas Gregorc99f1552009-12-03 18:33:45 +00002553/// \brief Perform semantic checks on a class definition that has been
2554/// completing, introducing implicitly-declared members, checking for
2555/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002556void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor8fb95122010-09-29 00:15:42 +00002557 if (!Record)
Douglas Gregorc99f1552009-12-03 18:33:45 +00002558 return;
2559
John McCall02db245d2010-08-18 09:41:07 +00002560 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2561 AbstractUsageInfo Info(*this, Record);
2562 CheckAbstractClassUsage(Info, Record);
2563 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00002564
2565 // If this is not an aggregate type and has no user-declared constructor,
2566 // complain about any non-static data members of reference or const scalar
2567 // type, since they will never get initializers.
2568 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2569 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2570 bool Complained = false;
2571 for (RecordDecl::field_iterator F = Record->field_begin(),
2572 FEnd = Record->field_end();
2573 F != FEnd; ++F) {
2574 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002575 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002576 if (!Complained) {
2577 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2578 << Record->getTagKind() << Record;
2579 Complained = true;
2580 }
2581
2582 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2583 << F->getType()->isReferenceType()
2584 << F->getDeclName();
2585 }
2586 }
2587 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002588
2589 if (Record->isDynamicClass())
2590 DynamicClasses.push_back(Record);
Douglas Gregor36c22a22010-10-15 13:21:21 +00002591
2592 if (Record->getIdentifier()) {
2593 // C++ [class.mem]p13:
2594 // If T is the name of a class, then each of the following shall have a
2595 // name different from T:
2596 // - every member of every anonymous union that is a member of class T.
2597 //
2598 // C++ [class.mem]p14:
2599 // In addition, if class T has a user-declared constructor (12.1), every
2600 // non-static data member of class T shall have a name different from T.
2601 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
2602 R.first != R.second; ++R.first)
2603 if (FieldDecl *Field = dyn_cast<FieldDecl>(*R.first)) {
2604 if (Record->hasUserDeclaredConstructor() ||
2605 !Field->getDeclContext()->Equals(Record)) {
2606 Diag(Field->getLocation(), diag::err_member_name_of_class)
2607 << Field->getDeclName();
2608 break;
2609 }
2610 }
2611 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002612}
2613
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002614void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00002615 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002616 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002617 SourceLocation RBrac,
2618 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002619 if (!TagDecl)
2620 return;
Mike Stump11289f42009-09-09 15:08:12 +00002621
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002622 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002623
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002624 ActOnFields(S, RLoc, TagDecl,
John McCall48871652010-08-21 09:40:31 +00002625 // strict aliasing violation!
2626 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002627 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002628
Douglas Gregor0be31a22010-07-02 17:43:08 +00002629 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00002630 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002631}
2632
Douglas Gregor95755162010-07-01 05:10:53 +00002633namespace {
2634 /// \brief Helper class that collects exception specifications for
2635 /// implicitly-declared special member functions.
2636 class ImplicitExceptionSpecification {
2637 ASTContext &Context;
2638 bool AllowsAllExceptions;
2639 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2640 llvm::SmallVector<QualType, 4> Exceptions;
2641
2642 public:
2643 explicit ImplicitExceptionSpecification(ASTContext &Context)
2644 : Context(Context), AllowsAllExceptions(false) { }
2645
2646 /// \brief Whether the special member function should have any
2647 /// exception specification at all.
2648 bool hasExceptionSpecification() const {
2649 return !AllowsAllExceptions;
2650 }
2651
2652 /// \brief Whether the special member function should have a
2653 /// throw(...) exception specification (a Microsoft extension).
2654 bool hasAnyExceptionSpecification() const {
2655 return false;
2656 }
2657
2658 /// \brief The number of exceptions in the exception specification.
2659 unsigned size() const { return Exceptions.size(); }
2660
2661 /// \brief The set of exceptions in the exception specification.
2662 const QualType *data() const { return Exceptions.data(); }
2663
2664 /// \brief Note that
2665 void CalledDecl(CXXMethodDecl *Method) {
2666 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002667 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002668 return;
2669
2670 const FunctionProtoType *Proto
2671 = Method->getType()->getAs<FunctionProtoType>();
2672
2673 // If this function can throw any exceptions, make a note of that.
2674 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2675 AllowsAllExceptions = true;
2676 ExceptionsSeen.clear();
2677 Exceptions.clear();
2678 return;
2679 }
2680
2681 // Record the exceptions in this function's exception specification.
2682 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2683 EEnd = Proto->exception_end();
2684 E != EEnd; ++E)
2685 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2686 Exceptions.push_back(*E);
2687 }
2688 };
2689}
2690
2691
Douglas Gregor05379422008-11-03 17:51:48 +00002692/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2693/// special functions, such as the default constructor, copy
2694/// constructor, or destructor, to the given C++ class (C++
2695/// [special]p1). This routine can only be executed just before the
2696/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002697void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002698 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00002699 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002700
Douglas Gregor54be3392010-07-01 17:57:27 +00002701 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00002702 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002703
Douglas Gregor330b9cf2010-07-02 21:50:04 +00002704 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2705 ++ASTContext::NumImplicitCopyAssignmentOperators;
2706
2707 // If we have a dynamic class, then the copy assignment operator may be
2708 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2709 // it shows up in the right place in the vtable and that we diagnose
2710 // problems with the implicit exception specification.
2711 if (ClassDecl->isDynamicClass())
2712 DeclareImplicitCopyAssignment(ClassDecl);
2713 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002714
Douglas Gregor7454c562010-07-02 20:37:36 +00002715 if (!ClassDecl->hasUserDeclaredDestructor()) {
2716 ++ASTContext::NumImplicitDestructors;
2717
2718 // If we have a dynamic class, then the destructor may be virtual, so we
2719 // have to declare the destructor immediately. This ensures that, e.g., it
2720 // shows up in the right place in the vtable and that we diagnose problems
2721 // with the implicit exception specification.
2722 if (ClassDecl->isDynamicClass())
2723 DeclareImplicitDestructor(ClassDecl);
2724 }
Douglas Gregor05379422008-11-03 17:51:48 +00002725}
2726
John McCall48871652010-08-21 09:40:31 +00002727void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002728 if (!D)
2729 return;
2730
2731 TemplateParameterList *Params = 0;
2732 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2733 Params = Template->getTemplateParameters();
2734 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2735 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2736 Params = PartialSpec->getTemplateParameters();
2737 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002738 return;
2739
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002740 for (TemplateParameterList::iterator Param = Params->begin(),
2741 ParamEnd = Params->end();
2742 Param != ParamEnd; ++Param) {
2743 NamedDecl *Named = cast<NamedDecl>(*Param);
2744 if (Named->getDeclName()) {
John McCall48871652010-08-21 09:40:31 +00002745 S->AddDecl(Named);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002746 IdResolver.AddDecl(Named);
2747 }
2748 }
2749}
2750
John McCall48871652010-08-21 09:40:31 +00002751void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002752 if (!RecordD) return;
2753 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00002754 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00002755 PushDeclContext(S, Record);
2756}
2757
John McCall48871652010-08-21 09:40:31 +00002758void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002759 if (!RecordD) return;
2760 PopDeclContext();
2761}
2762
Douglas Gregor4d87df52008-12-16 21:30:33 +00002763/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2764/// parsing a top-level (non-nested) C++ class, and we are now
2765/// parsing those parts of the given Method declaration that could
2766/// not be parsed earlier (C++ [class.mem]p2), such as default
2767/// arguments. This action should enter the scope of the given
2768/// Method declaration as if we had just parsed the qualified method
2769/// name. However, it should not bring the parameters into scope;
2770/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00002771void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002772}
2773
2774/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2775/// C++ method declaration. We're (re-)introducing the given
2776/// function parameter into scope for use in parsing later parts of
2777/// the method declaration. For example, we could see an
2778/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00002779void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002780 if (!ParamD)
2781 return;
Mike Stump11289f42009-09-09 15:08:12 +00002782
John McCall48871652010-08-21 09:40:31 +00002783 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00002784
2785 // If this parameter has an unparsed default argument, clear it out
2786 // to make way for the parsed default argument.
2787 if (Param->hasUnparsedDefaultArg())
2788 Param->setDefaultArg(0);
2789
John McCall48871652010-08-21 09:40:31 +00002790 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002791 if (Param->getDeclName())
2792 IdResolver.AddDecl(Param);
2793}
2794
2795/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2796/// processing the delayed method declaration for Method. The method
2797/// declaration is now considered finished. There may be a separate
2798/// ActOnStartOfFunctionDef action later (not necessarily
2799/// immediately!) for this method, if it was also defined inside the
2800/// class body.
John McCall48871652010-08-21 09:40:31 +00002801void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002802 if (!MethodD)
2803 return;
Mike Stump11289f42009-09-09 15:08:12 +00002804
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002805 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002806
John McCall48871652010-08-21 09:40:31 +00002807 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002808
2809 // Now that we have our default arguments, check the constructor
2810 // again. It could produce additional diagnostics or affect whether
2811 // the class has implicitly-declared destructors, among other
2812 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002813 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2814 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002815
2816 // Check the default arguments, which we may have added.
2817 if (!Method->isInvalidDecl())
2818 CheckCXXDefaultArguments(Method);
2819}
2820
Douglas Gregor831c93f2008-11-05 20:51:48 +00002821/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002822/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002823/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002824/// emit diagnostics and set the invalid bit to true. In any case, the type
2825/// will be updated to reflect a well-formed type for the constructor and
2826/// returned.
2827QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00002828 StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002829 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002830
2831 // C++ [class.ctor]p3:
2832 // A constructor shall not be virtual (10.3) or static (9.4). A
2833 // constructor can be invoked for a const, volatile or const
2834 // volatile object. A constructor shall not be declared const,
2835 // volatile, or const volatile (9.3.2).
2836 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002837 if (!D.isInvalidType())
2838 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2839 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2840 << SourceRange(D.getIdentifierLoc());
2841 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002842 }
John McCall8e7d6562010-08-26 03:08:43 +00002843 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002844 if (!D.isInvalidType())
2845 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2846 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2847 << SourceRange(D.getIdentifierLoc());
2848 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00002849 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002850 }
Mike Stump11289f42009-09-09 15:08:12 +00002851
Chris Lattner38378bf2009-04-25 08:28:21 +00002852 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2853 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002854 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002855 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2856 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002857 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002858 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2859 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002860 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002861 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2862 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002863 }
Mike Stump11289f42009-09-09 15:08:12 +00002864
Douglas Gregor831c93f2008-11-05 20:51:48 +00002865 // Rebuild the function type "R" without any type qualifiers (in
2866 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002867 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002868 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002869 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2870 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002871 Proto->isVariadic(), 0,
2872 Proto->hasExceptionSpec(),
2873 Proto->hasAnyExceptionSpec(),
2874 Proto->getNumExceptions(),
2875 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002876 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002877}
2878
Douglas Gregor4d87df52008-12-16 21:30:33 +00002879/// CheckConstructor - Checks a fully-formed constructor for
2880/// well-formedness, issuing any diagnostics required. Returns true if
2881/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002882void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002883 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002884 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2885 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002886 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002887
2888 // C++ [class.copy]p3:
2889 // A declaration of a constructor for a class X is ill-formed if
2890 // its first parameter is of type (optionally cv-qualified) X and
2891 // either there are no other parameters or else all other
2892 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002893 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002894 ((Constructor->getNumParams() == 1) ||
2895 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002896 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2897 Constructor->getTemplateSpecializationKind()
2898 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002899 QualType ParamType = Constructor->getParamDecl(0)->getType();
2900 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2901 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002902 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002903 const char *ConstRef
2904 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2905 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002906 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002907 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002908
2909 // FIXME: Rather that making the constructor invalid, we should endeavor
2910 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002911 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002912 }
2913 }
Douglas Gregor4d87df52008-12-16 21:30:33 +00002914}
2915
John McCalldeb646e2010-08-04 01:04:25 +00002916/// CheckDestructor - Checks a fully-formed destructor definition for
2917/// well-formedness, issuing any diagnostics required. Returns true
2918/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002919bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002920 CXXRecordDecl *RD = Destructor->getParent();
2921
2922 if (Destructor->isVirtual()) {
2923 SourceLocation Loc;
2924
2925 if (!Destructor->isImplicit())
2926 Loc = Destructor->getLocation();
2927 else
2928 Loc = RD->getLocation();
2929
2930 // If we have a virtual destructor, look up the deallocation function
2931 FunctionDecl *OperatorDelete = 0;
2932 DeclarationName Name =
2933 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00002934 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00002935 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00002936
2937 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00002938
2939 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00002940 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00002941
2942 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00002943}
2944
Mike Stump11289f42009-09-09 15:08:12 +00002945static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002946FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2947 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2948 FTI.ArgInfo[0].Param &&
John McCall48871652010-08-21 09:40:31 +00002949 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson5e965472009-04-30 23:18:11 +00002950}
2951
Douglas Gregor831c93f2008-11-05 20:51:48 +00002952/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2953/// the well-formednes of the destructor declarator @p D with type @p
2954/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002955/// emit diagnostics and set the declarator to invalid. Even if this happens,
2956/// will be updated to reflect a well-formed type for the destructor and
2957/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00002958QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00002959 StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002960 // C++ [class.dtor]p1:
2961 // [...] A typedef-name that names a class is a class-name
2962 // (7.1.3); however, a typedef-name that names a class shall not
2963 // be used as the identifier in the declarator for a destructor
2964 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00002965 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00002966 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00002967 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002968 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002969
2970 // C++ [class.dtor]p2:
2971 // A destructor is used to destroy objects of its class type. A
2972 // destructor takes no parameters, and no return type can be
2973 // specified for it (not even void). The address of a destructor
2974 // shall not be taken. A destructor shall not be static. A
2975 // destructor can be invoked for a const, volatile or const
2976 // volatile object. A destructor shall not be declared const,
2977 // volatile or const volatile (9.3.2).
John McCall8e7d6562010-08-26 03:08:43 +00002978 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002979 if (!D.isInvalidType())
2980 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2981 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00002982 << SourceRange(D.getIdentifierLoc())
2983 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2984
John McCall8e7d6562010-08-26 03:08:43 +00002985 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002986 }
Chris Lattner38378bf2009-04-25 08:28:21 +00002987 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002988 // Destructors don't have return types, but the parser will
2989 // happily parse something like:
2990 //
2991 // class X {
2992 // float ~X();
2993 // };
2994 //
2995 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00002996 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2997 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2998 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002999 }
Mike Stump11289f42009-09-09 15:08:12 +00003000
Chris Lattner38378bf2009-04-25 08:28:21 +00003001 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3002 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003003 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003004 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3005 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003006 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003007 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3008 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003009 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003010 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3011 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003012 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003013 }
3014
3015 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003016 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003017 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3018
3019 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003020 FTI.freeArgs();
3021 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003022 }
3023
Mike Stump11289f42009-09-09 15:08:12 +00003024 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003025 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003026 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003027 D.setInvalidType();
3028 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003029
3030 // Rebuild the function type "R" without any type qualifiers or
3031 // parameters (in case any of the errors above fired) and with
3032 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00003033 // types.
3034 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3035 if (!Proto)
3036 return QualType();
3037
Douglas Gregor36c569f2010-02-21 22:15:06 +00003038 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00003039 Proto->hasExceptionSpec(),
3040 Proto->hasAnyExceptionSpec(),
3041 Proto->getNumExceptions(),
3042 Proto->exception_begin(),
3043 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003044}
3045
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003046/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3047/// well-formednes of the conversion function declarator @p D with
3048/// type @p R. If there are any errors in the declarator, this routine
3049/// will emit diagnostics and return true. Otherwise, it will return
3050/// false. Either way, the type @p R will be updated to reflect a
3051/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003052void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCall8e7d6562010-08-26 03:08:43 +00003053 StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003054 // C++ [class.conv.fct]p1:
3055 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003056 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003057 // parameter returning conversion-type-id."
John McCall8e7d6562010-08-26 03:08:43 +00003058 if (SC == SC_Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003059 if (!D.isInvalidType())
3060 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3061 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3062 << SourceRange(D.getIdentifierLoc());
3063 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00003064 SC = SC_None;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003065 }
John McCall212fa2e2010-04-13 00:04:31 +00003066
3067 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3068
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003069 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003070 // Conversion functions don't have return types, but the parser will
3071 // happily parse something like:
3072 //
3073 // class X {
3074 // float operator bool();
3075 // };
3076 //
3077 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003078 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3079 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3080 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003081 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003082 }
3083
John McCall212fa2e2010-04-13 00:04:31 +00003084 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3085
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003086 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003087 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003088 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3089
3090 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003091 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003092 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003093 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003094 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003095 D.setInvalidType();
3096 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003097
John McCall212fa2e2010-04-13 00:04:31 +00003098 // Diagnose "&operator bool()" and other such nonsense. This
3099 // is actually a gcc extension which we don't support.
3100 if (Proto->getResultType() != ConvType) {
3101 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3102 << Proto->getResultType();
3103 D.setInvalidType();
3104 ConvType = Proto->getResultType();
3105 }
3106
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003107 // C++ [class.conv.fct]p4:
3108 // The conversion-type-id shall not represent a function type nor
3109 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003110 if (ConvType->isArrayType()) {
3111 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3112 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003113 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003114 } else if (ConvType->isFunctionType()) {
3115 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3116 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003117 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003118 }
3119
3120 // Rebuild the function type "R" without any parameters (in case any
3121 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003122 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003123 if (D.isInvalidType()) {
3124 R = Context.getFunctionType(ConvType, 0, 0, false,
3125 Proto->getTypeQuals(),
3126 Proto->hasExceptionSpec(),
3127 Proto->hasAnyExceptionSpec(),
3128 Proto->getNumExceptions(),
3129 Proto->exception_begin(),
3130 Proto->getExtInfo());
3131 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003132
Douglas Gregor5fb53972009-01-14 15:45:31 +00003133 // C++0x explicit conversion operators.
3134 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003135 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003136 diag::warn_explicit_conversion_functions)
3137 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003138}
3139
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003140/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3141/// the declaration of the given C++ conversion function. This routine
3142/// is responsible for recording the conversion function in the C++
3143/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00003144Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003145 assert(Conversion && "Expected to receive a conversion function declaration");
3146
Douglas Gregor4287b372008-12-12 08:25:50 +00003147 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003148
3149 // Make sure we aren't redeclaring the conversion function.
3150 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003151
3152 // C++ [class.conv.fct]p1:
3153 // [...] A conversion function is never used to convert a
3154 // (possibly cv-qualified) object to the (possibly cv-qualified)
3155 // same object type (or a reference to it), to a (possibly
3156 // cv-qualified) base class of that type (or a reference to it),
3157 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003158 // FIXME: Suppress this warning if the conversion function ends up being a
3159 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003160 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003161 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003162 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003163 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregor6309e3d2010-09-12 07:22:28 +00003164 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
3165 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregore47191c2010-09-13 16:44:26 +00003166 /* Suppress diagnostics for instantiations. */;
Douglas Gregor6309e3d2010-09-12 07:22:28 +00003167 else if (ConvType->isRecordType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003168 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3169 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003170 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003171 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003172 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003173 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003174 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003175 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003176 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003177 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003178 }
3179
Douglas Gregor457104e2010-09-29 04:25:11 +00003180 if (FunctionTemplateDecl *ConversionTemplate
3181 = Conversion->getDescribedFunctionTemplate())
3182 return ConversionTemplate;
3183
John McCall48871652010-08-21 09:40:31 +00003184 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003185}
3186
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003187//===----------------------------------------------------------------------===//
3188// Namespace Handling
3189//===----------------------------------------------------------------------===//
3190
John McCallb1be5232010-08-26 09:15:37 +00003191
3192
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003193/// ActOnStartNamespaceDef - This is called at the start of a namespace
3194/// definition.
John McCall48871652010-08-21 09:40:31 +00003195Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redl67667942010-08-27 23:12:46 +00003196 SourceLocation InlineLoc,
John McCallb1be5232010-08-26 09:15:37 +00003197 SourceLocation IdentLoc,
3198 IdentifierInfo *II,
3199 SourceLocation LBrace,
3200 AttributeList *AttrList) {
Douglas Gregor086cae62010-08-19 20:55:47 +00003201 // anonymous namespace starts at its left brace
3202 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3203 (II ? IdentLoc : LBrace) , II);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003204 Namespc->setLBracLoc(LBrace);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003205 Namespc->setInline(InlineLoc.isValid());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003206
3207 Scope *DeclRegionScope = NamespcScope->getParent();
3208
Anders Carlssona7bcade2010-02-07 01:09:23 +00003209 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3210
Eli Friedman570024a2010-08-05 06:57:20 +00003211 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
John McCallb1be5232010-08-26 09:15:37 +00003212 PushVisibilityAttr(attr);
Eli Friedman570024a2010-08-05 06:57:20 +00003213
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003214 if (II) {
3215 // C++ [namespace.def]p2:
Douglas Gregor412c3622010-10-22 15:24:46 +00003216 // The identifier in an original-namespace-definition shall not
3217 // have been previously defined in the declarative region in
3218 // which the original-namespace-definition appears. The
3219 // identifier in an original-namespace-definition is the name of
3220 // the namespace. Subsequently in that declarative region, it is
3221 // treated as an original-namespace-name.
3222 //
3223 // Since namespace names are unique in their scope, and we don't
3224 // look through using directives, just
3225 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
3226 NamedDecl *PrevDecl = R.first == R.second? 0 : *R.first;
Mike Stump11289f42009-09-09 15:08:12 +00003227
Douglas Gregor91f84212008-12-11 16:49:14 +00003228 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3229 // This is an extended namespace definition.
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003230 if (Namespc->isInline() != OrigNS->isInline()) {
3231 // inline-ness must match
3232 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3233 << Namespc->isInline();
3234 Diag(OrigNS->getLocation(), diag::note_previous_definition);
3235 Namespc->setInvalidDecl();
3236 // Recover by ignoring the new namespace's inline status.
3237 Namespc->setInline(OrigNS->isInline());
3238 }
3239
Douglas Gregor91f84212008-12-11 16:49:14 +00003240 // Attach this namespace decl to the chain of extended namespace
3241 // definitions.
3242 OrigNS->setNextNamespace(Namespc);
3243 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003244
Mike Stump11289f42009-09-09 15:08:12 +00003245 // Remove the previous declaration from the scope.
John McCall48871652010-08-21 09:40:31 +00003246 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003247 IdResolver.RemoveDecl(OrigNS);
John McCall48871652010-08-21 09:40:31 +00003248 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003249 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003250 } else if (PrevDecl) {
3251 // This is an invalid name redefinition.
3252 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3253 << Namespc->getDeclName();
3254 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3255 Namespc->setInvalidDecl();
3256 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003257 } else if (II->isStr("std") &&
Sebastian Redl50c68252010-08-31 00:36:30 +00003258 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003259 // This is the first "real" definition of the namespace "std", so update
3260 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003261 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003262 // We had already defined a dummy namespace "std". Link this new
3263 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003264 StdNS->setNextNamespace(Namespc);
3265 StdNS->setLocation(IdentLoc);
3266 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00003267 }
3268
3269 // Make our StdNamespace cache point at the first real definition of the
3270 // "std" namespace.
3271 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003272 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003273
3274 PushOnScopeChains(Namespc, DeclRegionScope);
3275 } else {
John McCall4fa53422009-10-01 00:25:31 +00003276 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003277 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003278
3279 // Link the anonymous namespace into its parent.
3280 NamespaceDecl *PrevDecl;
Sebastian Redl50c68252010-08-31 00:36:30 +00003281 DeclContext *Parent = CurContext->getRedeclContext();
John McCall0db42252009-12-16 02:06:49 +00003282 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3283 PrevDecl = TU->getAnonymousNamespace();
3284 TU->setAnonymousNamespace(Namespc);
3285 } else {
3286 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3287 PrevDecl = ND->getAnonymousNamespace();
3288 ND->setAnonymousNamespace(Namespc);
3289 }
3290
3291 // Link the anonymous namespace with its previous declaration.
3292 if (PrevDecl) {
3293 assert(PrevDecl->isAnonymousNamespace());
3294 assert(!PrevDecl->getNextNamespace());
3295 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3296 PrevDecl->setNextNamespace(Namespc);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00003297
3298 if (Namespc->isInline() != PrevDecl->isInline()) {
3299 // inline-ness must match
3300 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
3301 << Namespc->isInline();
3302 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3303 Namespc->setInvalidDecl();
3304 // Recover by ignoring the new namespace's inline status.
3305 Namespc->setInline(PrevDecl->isInline());
3306 }
John McCall0db42252009-12-16 02:06:49 +00003307 }
John McCall4fa53422009-10-01 00:25:31 +00003308
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003309 CurContext->addDecl(Namespc);
3310
John McCall4fa53422009-10-01 00:25:31 +00003311 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3312 // behaves as if it were replaced by
3313 // namespace unique { /* empty body */ }
3314 // using namespace unique;
3315 // namespace unique { namespace-body }
3316 // where all occurrences of 'unique' in a translation unit are
3317 // replaced by the same identifier and this identifier differs
3318 // from all other identifiers in the entire program.
3319
3320 // We just create the namespace with an empty name and then add an
3321 // implicit using declaration, just like the standard suggests.
3322 //
3323 // CodeGen enforces the "universally unique" aspect by giving all
3324 // declarations semantically contained within an anonymous
3325 // namespace internal linkage.
3326
John McCall0db42252009-12-16 02:06:49 +00003327 if (!PrevDecl) {
3328 UsingDirectiveDecl* UD
3329 = UsingDirectiveDecl::Create(Context, CurContext,
3330 /* 'using' */ LBrace,
3331 /* 'namespace' */ SourceLocation(),
3332 /* qualifier */ SourceRange(),
3333 /* NNS */ NULL,
3334 /* identifier */ SourceLocation(),
3335 Namespc,
3336 /* Ancestor */ CurContext);
3337 UD->setImplicit();
3338 CurContext->addDecl(UD);
3339 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003340 }
3341
3342 // Although we could have an invalid decl (i.e. the namespace name is a
3343 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003344 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3345 // for the namespace has the declarations that showed up in that particular
3346 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003347 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00003348 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003349}
3350
Sebastian Redla6602e92009-11-23 15:34:23 +00003351/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3352/// is a namespace alias, returns the namespace it points to.
3353static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3354 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3355 return AD->getNamespace();
3356 return dyn_cast_or_null<NamespaceDecl>(D);
3357}
3358
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003359/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3360/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00003361void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003362 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3363 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3364 Namespc->setRBracLoc(RBrace);
3365 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00003366 if (Namespc->hasAttr<VisibilityAttr>())
3367 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003368}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003369
John McCall28a0cf72010-08-25 07:42:41 +00003370CXXRecordDecl *Sema::getStdBadAlloc() const {
3371 return cast_or_null<CXXRecordDecl>(
3372 StdBadAlloc.get(Context.getExternalSource()));
3373}
3374
3375NamespaceDecl *Sema::getStdNamespace() const {
3376 return cast_or_null<NamespaceDecl>(
3377 StdNamespace.get(Context.getExternalSource()));
3378}
3379
Douglas Gregorcdf87022010-06-29 17:53:46 +00003380/// \brief Retrieve the special "std" namespace, which may require us to
3381/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003382NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00003383 if (!StdNamespace) {
3384 // The "std" namespace has not yet been defined, so build one implicitly.
3385 StdNamespace = NamespaceDecl::Create(Context,
3386 Context.getTranslationUnitDecl(),
3387 SourceLocation(),
3388 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003389 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003390 }
3391
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003392 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00003393}
3394
John McCall48871652010-08-21 09:40:31 +00003395Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00003396 SourceLocation UsingLoc,
3397 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003398 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003399 SourceLocation IdentLoc,
3400 IdentifierInfo *NamespcName,
3401 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003402 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3403 assert(NamespcName && "Invalid NamespcName.");
3404 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003405 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003406
Douglas Gregor889ceb72009-02-03 19:21:40 +00003407 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003408 NestedNameSpecifier *Qualifier = 0;
3409 if (SS.isSet())
3410 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3411
Douglas Gregor34074322009-01-14 22:20:51 +00003412 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003413 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3414 LookupParsedName(R, S, &SS);
3415 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00003416 return 0;
John McCall27b18f82009-11-17 02:14:36 +00003417
Douglas Gregorcdf87022010-06-29 17:53:46 +00003418 if (R.empty()) {
3419 // Allow "using namespace std;" or "using namespace ::std;" even if
3420 // "std" hasn't been defined yet, for GCC compatibility.
3421 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3422 NamespcName->isStr("std")) {
3423 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003424 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00003425 R.resolveKind();
3426 }
3427 // Otherwise, attempt typo correction.
3428 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3429 CTC_NoKeywords, 0)) {
3430 if (R.getAsSingle<NamespaceDecl>() ||
3431 R.getAsSingle<NamespaceAliasDecl>()) {
3432 if (DeclContext *DC = computeDeclContext(SS, false))
3433 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3434 << NamespcName << DC << Corrected << SS.getRange()
3435 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3436 else
3437 Diag(IdentLoc, diag::err_using_directive_suggest)
3438 << NamespcName << Corrected
3439 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3440 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3441 << Corrected;
3442
3443 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003444 } else {
3445 R.clear();
3446 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003447 }
3448 }
3449 }
3450
John McCall9f3059a2009-10-09 21:13:30 +00003451 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003452 NamedDecl *Named = R.getFoundDecl();
3453 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3454 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003455 // C++ [namespace.udir]p1:
3456 // A using-directive specifies that the names in the nominated
3457 // namespace can be used in the scope in which the
3458 // using-directive appears after the using-directive. During
3459 // unqualified name lookup (3.4.1), the names appear as if they
3460 // were declared in the nearest enclosing namespace which
3461 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003462 // namespace. [Note: in this context, "contains" means "contains
3463 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003464
3465 // Find enclosing context containing both using-directive and
3466 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003467 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003468 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3469 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3470 CommonAncestor = CommonAncestor->getParent();
3471
Sebastian Redla6602e92009-11-23 15:34:23 +00003472 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003473 SS.getRange(),
3474 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003475 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003476 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003477 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003478 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003479 }
3480
Douglas Gregor889ceb72009-02-03 19:21:40 +00003481 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003482 delete AttrList;
John McCall48871652010-08-21 09:40:31 +00003483 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00003484}
3485
3486void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3487 // If scope has associated entity, then using directive is at namespace
3488 // or translation unit scope. We add UsingDirectiveDecls, into
3489 // it's lookup structure.
3490 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003491 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003492 else
3493 // Otherwise it is block-sope. using-directives will affect lookup
3494 // only to the end of scope.
John McCall48871652010-08-21 09:40:31 +00003495 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003496}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003497
Douglas Gregorfec52632009-06-20 00:51:54 +00003498
John McCall48871652010-08-21 09:40:31 +00003499Decl *Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003500 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003501 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003502 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003503 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003504 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003505 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003506 bool IsTypeName,
3507 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003508 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003509
Douglas Gregor220f4272009-11-04 16:30:06 +00003510 switch (Name.getKind()) {
3511 case UnqualifiedId::IK_Identifier:
3512 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003513 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003514 case UnqualifiedId::IK_ConversionFunctionId:
3515 break;
3516
3517 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003518 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003519 // C++0x inherited constructors.
3520 if (getLangOptions().CPlusPlus0x) break;
3521
Douglas Gregor220f4272009-11-04 16:30:06 +00003522 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3523 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003524 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003525
3526 case UnqualifiedId::IK_DestructorName:
3527 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3528 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003529 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003530
3531 case UnqualifiedId::IK_TemplateId:
3532 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3533 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCall48871652010-08-21 09:40:31 +00003534 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003535 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003536
3537 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3538 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00003539 if (!TargetName)
John McCall48871652010-08-21 09:40:31 +00003540 return 0;
John McCall3969e302009-12-08 07:46:18 +00003541
John McCalla0097262009-12-11 02:10:03 +00003542 // Warn about using declarations.
3543 // TODO: store that the declaration was written without 'using' and
3544 // talk about access decls instead of using decls in the
3545 // diagnostics.
3546 if (!HasUsingKeyword) {
3547 UsingLoc = Name.getSourceRange().getBegin();
3548
3549 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003550 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003551 }
3552
John McCall3f746822009-11-17 05:59:44 +00003553 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003554 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003555 /* IsInstantiation */ false,
3556 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003557 if (UD)
3558 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003559
John McCall48871652010-08-21 09:40:31 +00003560 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00003561}
3562
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003563/// \brief Determine whether a using declaration considers the given
3564/// declarations as "equivalent", e.g., if they are redeclarations of
3565/// the same entity or are both typedefs of the same type.
3566static bool
3567IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3568 bool &SuppressRedeclaration) {
3569 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3570 SuppressRedeclaration = false;
3571 return true;
3572 }
3573
3574 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3575 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3576 SuppressRedeclaration = true;
3577 return Context.hasSameType(TD1->getUnderlyingType(),
3578 TD2->getUnderlyingType());
3579 }
3580
3581 return false;
3582}
3583
3584
John McCall84d87672009-12-10 09:41:52 +00003585/// Determines whether to create a using shadow decl for a particular
3586/// decl, given the set of decls existing prior to this using lookup.
3587bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3588 const LookupResult &Previous) {
3589 // Diagnose finding a decl which is not from a base class of the
3590 // current class. We do this now because there are cases where this
3591 // function will silently decide not to build a shadow decl, which
3592 // will pre-empt further diagnostics.
3593 //
3594 // We don't need to do this in C++0x because we do the check once on
3595 // the qualifier.
3596 //
3597 // FIXME: diagnose the following if we care enough:
3598 // struct A { int foo; };
3599 // struct B : A { using A::foo; };
3600 // template <class T> struct C : A {};
3601 // template <class T> struct D : C<T> { using B::foo; } // <---
3602 // This is invalid (during instantiation) in C++03 because B::foo
3603 // resolves to the using decl in B, which is not a base class of D<T>.
3604 // We can't diagnose it immediately because C<T> is an unknown
3605 // specialization. The UsingShadowDecl in D<T> then points directly
3606 // to A::foo, which will look well-formed when we instantiate.
3607 // The right solution is to not collapse the shadow-decl chain.
3608 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3609 DeclContext *OrigDC = Orig->getDeclContext();
3610
3611 // Handle enums and anonymous structs.
3612 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3613 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3614 while (OrigRec->isAnonymousStructOrUnion())
3615 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3616
3617 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3618 if (OrigDC == CurContext) {
3619 Diag(Using->getLocation(),
3620 diag::err_using_decl_nested_name_specifier_is_current_class)
3621 << Using->getNestedNameRange();
3622 Diag(Orig->getLocation(), diag::note_using_decl_target);
3623 return true;
3624 }
3625
3626 Diag(Using->getNestedNameRange().getBegin(),
3627 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3628 << Using->getTargetNestedNameDecl()
3629 << cast<CXXRecordDecl>(CurContext)
3630 << Using->getNestedNameRange();
3631 Diag(Orig->getLocation(), diag::note_using_decl_target);
3632 return true;
3633 }
3634 }
3635
3636 if (Previous.empty()) return false;
3637
3638 NamedDecl *Target = Orig;
3639 if (isa<UsingShadowDecl>(Target))
3640 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3641
John McCalla17e83e2009-12-11 02:33:26 +00003642 // If the target happens to be one of the previous declarations, we
3643 // don't have a conflict.
3644 //
3645 // FIXME: but we might be increasing its access, in which case we
3646 // should redeclare it.
3647 NamedDecl *NonTag = 0, *Tag = 0;
3648 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3649 I != E; ++I) {
3650 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003651 bool Result;
3652 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3653 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00003654
3655 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3656 }
3657
John McCall84d87672009-12-10 09:41:52 +00003658 if (Target->isFunctionOrFunctionTemplate()) {
3659 FunctionDecl *FD;
3660 if (isa<FunctionTemplateDecl>(Target))
3661 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3662 else
3663 FD = cast<FunctionDecl>(Target);
3664
3665 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003666 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003667 case Ovl_Overload:
3668 return false;
3669
3670 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003671 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003672 break;
3673
3674 // We found a decl with the exact signature.
3675 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003676 // If we're in a record, we want to hide the target, so we
3677 // return true (without a diagnostic) to tell the caller not to
3678 // build a shadow decl.
3679 if (CurContext->isRecord())
3680 return true;
3681
3682 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003683 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003684 break;
3685 }
3686
3687 Diag(Target->getLocation(), diag::note_using_decl_target);
3688 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3689 return true;
3690 }
3691
3692 // Target is not a function.
3693
John McCall84d87672009-12-10 09:41:52 +00003694 if (isa<TagDecl>(Target)) {
3695 // No conflict between a tag and a non-tag.
3696 if (!Tag) return false;
3697
John McCalle29c5cd2009-12-10 19:51:03 +00003698 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003699 Diag(Target->getLocation(), diag::note_using_decl_target);
3700 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3701 return true;
3702 }
3703
3704 // No conflict between a tag and a non-tag.
3705 if (!NonTag) return false;
3706
John McCalle29c5cd2009-12-10 19:51:03 +00003707 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003708 Diag(Target->getLocation(), diag::note_using_decl_target);
3709 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3710 return true;
3711}
3712
John McCall3f746822009-11-17 05:59:44 +00003713/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003714UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003715 UsingDecl *UD,
3716 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003717
3718 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003719 NamedDecl *Target = Orig;
3720 if (isa<UsingShadowDecl>(Target)) {
3721 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3722 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003723 }
3724
3725 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003726 = UsingShadowDecl::Create(Context, CurContext,
3727 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003728 UD->addShadowDecl(Shadow);
Douglas Gregor457104e2010-09-29 04:25:11 +00003729
3730 Shadow->setAccess(UD->getAccess());
3731 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3732 Shadow->setInvalidDecl();
3733
John McCall3f746822009-11-17 05:59:44 +00003734 if (S)
John McCall3969e302009-12-08 07:46:18 +00003735 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003736 else
John McCall3969e302009-12-08 07:46:18 +00003737 CurContext->addDecl(Shadow);
John McCall3f746822009-11-17 05:59:44 +00003738
John McCall3969e302009-12-08 07:46:18 +00003739
John McCall84d87672009-12-10 09:41:52 +00003740 return Shadow;
3741}
John McCall3969e302009-12-08 07:46:18 +00003742
John McCall84d87672009-12-10 09:41:52 +00003743/// Hides a using shadow declaration. This is required by the current
3744/// using-decl implementation when a resolvable using declaration in a
3745/// class is followed by a declaration which would hide or override
3746/// one or more of the using decl's targets; for example:
3747///
3748/// struct Base { void foo(int); };
3749/// struct Derived : Base {
3750/// using Base::foo;
3751/// void foo(int);
3752/// };
3753///
3754/// The governing language is C++03 [namespace.udecl]p12:
3755///
3756/// When a using-declaration brings names from a base class into a
3757/// derived class scope, member functions in the derived class
3758/// override and/or hide member functions with the same name and
3759/// parameter types in a base class (rather than conflicting).
3760///
3761/// There are two ways to implement this:
3762/// (1) optimistically create shadow decls when they're not hidden
3763/// by existing declarations, or
3764/// (2) don't create any shadow decls (or at least don't make them
3765/// visible) until we've fully parsed/instantiated the class.
3766/// The problem with (1) is that we might have to retroactively remove
3767/// a shadow decl, which requires several O(n) operations because the
3768/// decl structures are (very reasonably) not designed for removal.
3769/// (2) avoids this but is very fiddly and phase-dependent.
3770void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003771 if (Shadow->getDeclName().getNameKind() ==
3772 DeclarationName::CXXConversionFunctionName)
3773 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3774
John McCall84d87672009-12-10 09:41:52 +00003775 // Remove it from the DeclContext...
3776 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003777
John McCall84d87672009-12-10 09:41:52 +00003778 // ...and the scope, if applicable...
3779 if (S) {
John McCall48871652010-08-21 09:40:31 +00003780 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003781 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003782 }
3783
John McCall84d87672009-12-10 09:41:52 +00003784 // ...and the using decl.
3785 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3786
3787 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003788 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003789}
3790
John McCalle61f2ba2009-11-18 02:36:19 +00003791/// Builds a using declaration.
3792///
3793/// \param IsInstantiation - Whether this call arises from an
3794/// instantiation of an unresolved using declaration. We treat
3795/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003796NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3797 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003798 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003799 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003800 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003801 bool IsInstantiation,
3802 bool IsTypeName,
3803 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003804 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003805 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00003806 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003807
Anders Carlssonf038fc22009-08-28 05:49:21 +00003808 // FIXME: We ignore attributes for now.
3809 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003810
Anders Carlsson59140b32009-08-28 03:16:11 +00003811 if (SS.isEmpty()) {
3812 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003813 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003814 }
Mike Stump11289f42009-09-09 15:08:12 +00003815
John McCall84d87672009-12-10 09:41:52 +00003816 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003817 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00003818 ForRedeclaration);
3819 Previous.setHideTags(false);
3820 if (S) {
3821 LookupName(Previous, S);
3822
3823 // It is really dumb that we have to do this.
3824 LookupResult::Filter F = Previous.makeFilter();
3825 while (F.hasNext()) {
3826 NamedDecl *D = F.next();
3827 if (!isDeclInScope(D, CurContext, S))
3828 F.erase();
3829 }
3830 F.done();
3831 } else {
3832 assert(IsInstantiation && "no scope in non-instantiation");
3833 assert(CurContext->isRecord() && "scope not record in instantiation");
3834 LookupQualifiedName(Previous, CurContext);
3835 }
3836
Mike Stump11289f42009-09-09 15:08:12 +00003837 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003838 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3839
John McCall84d87672009-12-10 09:41:52 +00003840 // Check for invalid redeclarations.
3841 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3842 return 0;
3843
3844 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003845 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3846 return 0;
3847
John McCall84c16cf2009-11-12 03:15:40 +00003848 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003849 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003850 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003851 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003852 // FIXME: not all declaration name kinds are legal here
3853 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3854 UsingLoc, TypenameLoc,
3855 SS.getRange(), NNS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003856 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00003857 } else {
3858 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003859 UsingLoc, SS.getRange(),
3860 NNS, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00003861 }
John McCallb96ec562009-12-04 22:46:56 +00003862 } else {
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003863 D = UsingDecl::Create(Context, CurContext,
3864 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00003865 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003866 }
John McCallb96ec562009-12-04 22:46:56 +00003867 D->setAccess(AS);
3868 CurContext->addDecl(D);
3869
3870 if (!LookupContext) return D;
3871 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003872
John McCall0b66eb32010-05-01 00:40:08 +00003873 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003874 UD->setInvalidDecl();
3875 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003876 }
3877
John McCall3969e302009-12-08 07:46:18 +00003878 // Look up the target name.
3879
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003880 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003881
John McCall3969e302009-12-08 07:46:18 +00003882 // Unlike most lookups, we don't always want to hide tag
3883 // declarations: tag names are visible through the using declaration
3884 // even if hidden by ordinary names, *except* in a dependent context
3885 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003886 if (!IsInstantiation)
3887 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003888
John McCall27b18f82009-11-17 02:14:36 +00003889 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003890
John McCall9f3059a2009-10-09 21:13:30 +00003891 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003892 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003893 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003894 UD->setInvalidDecl();
3895 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003896 }
3897
John McCallb96ec562009-12-04 22:46:56 +00003898 if (R.isAmbiguous()) {
3899 UD->setInvalidDecl();
3900 return UD;
3901 }
Mike Stump11289f42009-09-09 15:08:12 +00003902
John McCalle61f2ba2009-11-18 02:36:19 +00003903 if (IsTypeName) {
3904 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003905 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003906 Diag(IdentLoc, diag::err_using_typename_non_type);
3907 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3908 Diag((*I)->getUnderlyingDecl()->getLocation(),
3909 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003910 UD->setInvalidDecl();
3911 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003912 }
3913 } else {
3914 // If we asked for a non-typename and we got a type, error out,
3915 // but only if this is an instantiation of an unresolved using
3916 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003917 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003918 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3919 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003920 UD->setInvalidDecl();
3921 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003922 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003923 }
3924
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003925 // C++0x N2914 [namespace.udecl]p6:
3926 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003927 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003928 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3929 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003930 UD->setInvalidDecl();
3931 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003932 }
Mike Stump11289f42009-09-09 15:08:12 +00003933
John McCall84d87672009-12-10 09:41:52 +00003934 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3935 if (!CheckUsingShadowDecl(UD, *I, Previous))
3936 BuildUsingShadowDecl(S, UD, *I);
3937 }
John McCall3f746822009-11-17 05:59:44 +00003938
3939 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003940}
3941
John McCall84d87672009-12-10 09:41:52 +00003942/// Checks that the given using declaration is not an invalid
3943/// redeclaration. Note that this is checking only for the using decl
3944/// itself, not for any ill-formedness among the UsingShadowDecls.
3945bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3946 bool isTypeName,
3947 const CXXScopeSpec &SS,
3948 SourceLocation NameLoc,
3949 const LookupResult &Prev) {
3950 // C++03 [namespace.udecl]p8:
3951 // C++0x [namespace.udecl]p10:
3952 // A using-declaration is a declaration and can therefore be used
3953 // repeatedly where (and only where) multiple declarations are
3954 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003955 //
3956 // That's in non-member contexts.
Sebastian Redl50c68252010-08-31 00:36:30 +00003957 if (!CurContext->getRedeclContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003958 return false;
3959
3960 NestedNameSpecifier *Qual
3961 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3962
3963 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3964 NamedDecl *D = *I;
3965
3966 bool DTypename;
3967 NestedNameSpecifier *DQual;
3968 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3969 DTypename = UD->isTypeName();
3970 DQual = UD->getTargetNestedNameDecl();
3971 } else if (UnresolvedUsingValueDecl *UD
3972 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3973 DTypename = false;
3974 DQual = UD->getTargetNestedNameSpecifier();
3975 } else if (UnresolvedUsingTypenameDecl *UD
3976 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3977 DTypename = true;
3978 DQual = UD->getTargetNestedNameSpecifier();
3979 } else continue;
3980
3981 // using decls differ if one says 'typename' and the other doesn't.
3982 // FIXME: non-dependent using decls?
3983 if (isTypeName != DTypename) continue;
3984
3985 // using decls differ if they name different scopes (but note that
3986 // template instantiation can cause this check to trigger when it
3987 // didn't before instantiation).
3988 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3989 Context.getCanonicalNestedNameSpecifier(DQual))
3990 continue;
3991
3992 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003993 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003994 return true;
3995 }
3996
3997 return false;
3998}
3999
John McCall3969e302009-12-08 07:46:18 +00004000
John McCallb96ec562009-12-04 22:46:56 +00004001/// Checks that the given nested-name qualifier used in a using decl
4002/// in the current context is appropriately related to the current
4003/// scope. If an error is found, diagnoses it and returns true.
4004bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4005 const CXXScopeSpec &SS,
4006 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00004007 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00004008
John McCall3969e302009-12-08 07:46:18 +00004009 if (!CurContext->isRecord()) {
4010 // C++03 [namespace.udecl]p3:
4011 // C++0x [namespace.udecl]p8:
4012 // A using-declaration for a class member shall be a member-declaration.
4013
4014 // If we weren't able to compute a valid scope, it must be a
4015 // dependent class scope.
4016 if (!NamedContext || NamedContext->isRecord()) {
4017 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4018 << SS.getRange();
4019 return true;
4020 }
4021
4022 // Otherwise, everything is known to be fine.
4023 return false;
4024 }
4025
4026 // The current scope is a record.
4027
4028 // If the named context is dependent, we can't decide much.
4029 if (!NamedContext) {
4030 // FIXME: in C++0x, we can diagnose if we can prove that the
4031 // nested-name-specifier does not refer to a base class, which is
4032 // still possible in some cases.
4033
4034 // Otherwise we have to conservatively report that things might be
4035 // okay.
4036 return false;
4037 }
4038
4039 if (!NamedContext->isRecord()) {
4040 // Ideally this would point at the last name in the specifier,
4041 // but we don't have that level of source info.
4042 Diag(SS.getRange().getBegin(),
4043 diag::err_using_decl_nested_name_specifier_is_not_class)
4044 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4045 return true;
4046 }
4047
4048 if (getLangOptions().CPlusPlus0x) {
4049 // C++0x [namespace.udecl]p3:
4050 // In a using-declaration used as a member-declaration, the
4051 // nested-name-specifier shall name a base class of the class
4052 // being defined.
4053
4054 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4055 cast<CXXRecordDecl>(NamedContext))) {
4056 if (CurContext == NamedContext) {
4057 Diag(NameLoc,
4058 diag::err_using_decl_nested_name_specifier_is_current_class)
4059 << SS.getRange();
4060 return true;
4061 }
4062
4063 Diag(SS.getRange().getBegin(),
4064 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4065 << (NestedNameSpecifier*) SS.getScopeRep()
4066 << cast<CXXRecordDecl>(CurContext)
4067 << SS.getRange();
4068 return true;
4069 }
4070
4071 return false;
4072 }
4073
4074 // C++03 [namespace.udecl]p4:
4075 // A using-declaration used as a member-declaration shall refer
4076 // to a member of a base class of the class being defined [etc.].
4077
4078 // Salient point: SS doesn't have to name a base class as long as
4079 // lookup only finds members from base classes. Therefore we can
4080 // diagnose here only if we can prove that that can't happen,
4081 // i.e. if the class hierarchies provably don't intersect.
4082
4083 // TODO: it would be nice if "definitely valid" results were cached
4084 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4085 // need to be repeated.
4086
4087 struct UserData {
4088 llvm::DenseSet<const CXXRecordDecl*> Bases;
4089
4090 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4091 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4092 Data->Bases.insert(Base);
4093 return true;
4094 }
4095
4096 bool hasDependentBases(const CXXRecordDecl *Class) {
4097 return !Class->forallBases(collect, this);
4098 }
4099
4100 /// Returns true if the base is dependent or is one of the
4101 /// accumulated base classes.
4102 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4103 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4104 return !Data->Bases.count(Base);
4105 }
4106
4107 bool mightShareBases(const CXXRecordDecl *Class) {
4108 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4109 }
4110 };
4111
4112 UserData Data;
4113
4114 // Returns false if we find a dependent base.
4115 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4116 return false;
4117
4118 // Returns false if the class has a dependent base or if it or one
4119 // of its bases is present in the base set of the current context.
4120 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4121 return false;
4122
4123 Diag(SS.getRange().getBegin(),
4124 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4125 << (NestedNameSpecifier*) SS.getScopeRep()
4126 << cast<CXXRecordDecl>(CurContext)
4127 << SS.getRange();
4128
4129 return true;
John McCallb96ec562009-12-04 22:46:56 +00004130}
4131
John McCall48871652010-08-21 09:40:31 +00004132Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004133 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004134 SourceLocation AliasLoc,
4135 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004136 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004137 SourceLocation IdentLoc,
4138 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004139
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004140 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004141 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4142 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004143
Anders Carlssondca83c42009-03-28 06:23:46 +00004144 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004145 NamedDecl *PrevDecl
4146 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4147 ForRedeclaration);
4148 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4149 PrevDecl = 0;
4150
4151 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004152 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004153 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004154 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004155 // FIXME: At some point, we'll want to create the (redundant)
4156 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004157 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004158 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCall48871652010-08-21 09:40:31 +00004159 return 0;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004160 }
Mike Stump11289f42009-09-09 15:08:12 +00004161
Anders Carlssondca83c42009-03-28 06:23:46 +00004162 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4163 diag::err_redefinition_different_kind;
4164 Diag(AliasLoc, DiagID) << Alias;
4165 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCall48871652010-08-21 09:40:31 +00004166 return 0;
Anders Carlssondca83c42009-03-28 06:23:46 +00004167 }
4168
John McCall27b18f82009-11-17 02:14:36 +00004169 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00004170 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00004171
John McCall9f3059a2009-10-09 21:13:30 +00004172 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004173 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4174 CTC_NoKeywords, 0)) {
4175 if (R.getAsSingle<NamespaceDecl>() ||
4176 R.getAsSingle<NamespaceAliasDecl>()) {
4177 if (DeclContext *DC = computeDeclContext(SS, false))
4178 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4179 << Ident << DC << Corrected << SS.getRange()
4180 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4181 else
4182 Diag(IdentLoc, diag::err_using_directive_suggest)
4183 << Ident << Corrected
4184 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4185
4186 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4187 << Corrected;
4188
4189 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004190 } else {
4191 R.clear();
4192 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004193 }
4194 }
4195
4196 if (R.empty()) {
4197 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004198 return 0;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004199 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004200 }
Mike Stump11289f42009-09-09 15:08:12 +00004201
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004202 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004203 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4204 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004205 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004206 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004207
John McCalld8d0d432010-02-16 06:53:13 +00004208 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00004209 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00004210}
4211
Douglas Gregora57478e2010-05-01 15:04:51 +00004212namespace {
4213 /// \brief Scoped object used to handle the state changes required in Sema
4214 /// to implicitly define the body of a C++ member function;
4215 class ImplicitlyDefinedFunctionScope {
4216 Sema &S;
4217 DeclContext *PreviousContext;
4218
4219 public:
4220 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4221 : S(S), PreviousContext(S.CurContext)
4222 {
4223 S.CurContext = Method;
4224 S.PushFunctionScope();
4225 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4226 }
4227
4228 ~ImplicitlyDefinedFunctionScope() {
4229 S.PopExpressionEvaluationContext();
4230 S.PopFunctionOrBlockScope();
4231 S.CurContext = PreviousContext;
4232 }
4233 };
4234}
4235
Sebastian Redlc15c3262010-09-13 22:02:47 +00004236static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
4237 CXXRecordDecl *D) {
4238 ASTContext &Context = Self.Context;
4239 QualType ClassType = Context.getTypeDeclType(D);
4240 DeclarationName ConstructorName
4241 = Context.DeclarationNames.getCXXConstructorName(
4242 Context.getCanonicalType(ClassType.getUnqualifiedType()));
4243
4244 DeclContext::lookup_const_iterator Con, ConEnd;
4245 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
4246 Con != ConEnd; ++Con) {
4247 // FIXME: In C++0x, a constructor template can be a default constructor.
4248 if (isa<FunctionTemplateDecl>(*Con))
4249 continue;
4250
4251 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
4252 if (Constructor->isDefaultConstructor())
4253 return Constructor;
4254 }
4255 return 0;
4256}
4257
Douglas Gregor0be31a22010-07-02 17:43:08 +00004258CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4259 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004260 // C++ [class.ctor]p5:
4261 // A default constructor for a class X is a constructor of class X
4262 // that can be called without an argument. If there is no
4263 // user-declared constructor for class X, a default constructor is
4264 // implicitly declared. An implicitly-declared default constructor
4265 // is an inline public member of its class.
Douglas Gregor9672f922010-07-03 00:47:00 +00004266 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4267 "Should not build implicit default constructor!");
4268
Douglas Gregor6d880b12010-07-01 22:31:05 +00004269 // C++ [except.spec]p14:
4270 // An implicitly declared special member function (Clause 12) shall have an
4271 // exception-specification. [...]
4272 ImplicitExceptionSpecification ExceptSpec(Context);
4273
4274 // Direct base-class destructors.
4275 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4276 BEnd = ClassDecl->bases_end();
4277 B != BEnd; ++B) {
4278 if (B->isVirtual()) // Handled below.
4279 continue;
4280
Douglas Gregor9672f922010-07-03 00:47:00 +00004281 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4282 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4283 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4284 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
Sebastian Redlc15c3262010-09-13 22:02:47 +00004285 else if (CXXConstructorDecl *Constructor
4286 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004287 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004288 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004289 }
4290
4291 // Virtual base-class destructors.
4292 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4293 BEnd = ClassDecl->vbases_end();
4294 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00004295 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4296 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4297 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4298 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4299 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00004300 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004301 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004302 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004303 }
4304
4305 // Field destructors.
4306 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4307 FEnd = ClassDecl->field_end();
4308 F != FEnd; ++F) {
4309 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00004310 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4311 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4312 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4313 ExceptSpec.CalledDecl(
4314 DeclareImplicitDefaultConstructor(FieldClassDecl));
4315 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00004316 = getDefaultConstructorUnsafe(*this, FieldClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00004317 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004318 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004319 }
4320
4321
4322 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004323 CanQualType ClassType
4324 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4325 DeclarationName Name
4326 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004327 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004328 CXXConstructorDecl *DefaultCon
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004329 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004330 Context.getFunctionType(Context.VoidTy,
4331 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004332 ExceptSpec.hasExceptionSpecification(),
4333 ExceptSpec.hasAnyExceptionSpecification(),
4334 ExceptSpec.size(),
4335 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004336 FunctionType::ExtInfo()),
4337 /*TInfo=*/0,
4338 /*isExplicit=*/false,
4339 /*isInline=*/true,
4340 /*isImplicitlyDeclared=*/true);
4341 DefaultCon->setAccess(AS_public);
4342 DefaultCon->setImplicit();
4343 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00004344
4345 // Note that we have declared this constructor.
Douglas Gregor9672f922010-07-03 00:47:00 +00004346 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4347
Douglas Gregor0be31a22010-07-02 17:43:08 +00004348 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00004349 PushOnScopeChains(DefaultCon, S, false);
4350 ClassDecl->addDecl(DefaultCon);
4351
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004352 return DefaultCon;
4353}
4354
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004355void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4356 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004357 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004358 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004359 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004360
Anders Carlsson423f5d82010-04-23 16:04:08 +00004361 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004362 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004363
Douglas Gregora57478e2010-05-01 15:04:51 +00004364 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004365 ErrorTrap Trap(*this);
4366 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4367 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004368 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004369 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004370 Constructor->setInvalidDecl();
Douglas Gregor73193272010-09-20 16:48:21 +00004371 return;
Eli Friedman9cf6b592009-11-09 19:20:36 +00004372 }
Douglas Gregor73193272010-09-20 16:48:21 +00004373
4374 SourceLocation Loc = Constructor->getLocation();
4375 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4376
4377 Constructor->setUsed();
4378 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004379}
4380
Douglas Gregor0be31a22010-07-02 17:43:08 +00004381CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004382 // C++ [class.dtor]p2:
4383 // If a class has no user-declared destructor, a destructor is
4384 // declared implicitly. An implicitly-declared destructor is an
4385 // inline public member of its class.
4386
4387 // C++ [except.spec]p14:
4388 // An implicitly declared special member function (Clause 12) shall have
4389 // an exception-specification.
4390 ImplicitExceptionSpecification ExceptSpec(Context);
4391
4392 // Direct base-class destructors.
4393 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4394 BEnd = ClassDecl->bases_end();
4395 B != BEnd; ++B) {
4396 if (B->isVirtual()) // Handled below.
4397 continue;
4398
4399 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4400 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004401 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004402 }
4403
4404 // Virtual base-class destructors.
4405 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4406 BEnd = ClassDecl->vbases_end();
4407 B != BEnd; ++B) {
4408 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4409 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004410 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004411 }
4412
4413 // Field destructors.
4414 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4415 FEnd = ClassDecl->field_end();
4416 F != FEnd; ++F) {
4417 if (const RecordType *RecordTy
4418 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4419 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004420 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004421 }
4422
Douglas Gregor7454c562010-07-02 20:37:36 +00004423 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00004424 QualType Ty = Context.getFunctionType(Context.VoidTy,
4425 0, 0, false, 0,
4426 ExceptSpec.hasExceptionSpecification(),
4427 ExceptSpec.hasAnyExceptionSpecification(),
4428 ExceptSpec.size(),
4429 ExceptSpec.data(),
4430 FunctionType::ExtInfo());
4431
4432 CanQualType ClassType
4433 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4434 DeclarationName Name
4435 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004436 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf1203042010-07-01 19:09:28 +00004437 CXXDestructorDecl *Destructor
Craig Silversteinaf8808d2010-10-21 00:44:50 +00004438 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty, 0,
Douglas Gregorf1203042010-07-01 19:09:28 +00004439 /*isInline=*/true,
4440 /*isImplicitlyDeclared=*/true);
4441 Destructor->setAccess(AS_public);
4442 Destructor->setImplicit();
4443 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00004444
4445 // Note that we have declared this destructor.
Douglas Gregor7454c562010-07-02 20:37:36 +00004446 ++ASTContext::NumImplicitDestructorsDeclared;
4447
4448 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004449 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00004450 PushOnScopeChains(Destructor, S, false);
4451 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00004452
4453 // This could be uniqued if it ever proves significant.
4454 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4455
4456 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00004457
Douglas Gregorf1203042010-07-01 19:09:28 +00004458 return Destructor;
4459}
4460
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004461void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004462 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004463 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004464 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004465 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004466 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004467
Douglas Gregor54818f02010-05-12 16:39:35 +00004468 if (Destructor->isInvalidDecl())
4469 return;
4470
Douglas Gregora57478e2010-05-01 15:04:51 +00004471 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004472
Douglas Gregor54818f02010-05-12 16:39:35 +00004473 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004474 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4475 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004476
Douglas Gregor54818f02010-05-12 16:39:35 +00004477 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004478 Diag(CurrentLocation, diag::note_member_synthesized_at)
4479 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4480
4481 Destructor->setInvalidDecl();
4482 return;
4483 }
4484
Douglas Gregor73193272010-09-20 16:48:21 +00004485 SourceLocation Loc = Destructor->getLocation();
4486 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
4487
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004488 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004489 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004490}
4491
Douglas Gregorb139cd52010-05-01 20:49:11 +00004492/// \brief Builds a statement that copies the given entity from \p From to
4493/// \c To.
4494///
4495/// This routine is used to copy the members of a class with an
4496/// implicitly-declared copy assignment operator. When the entities being
4497/// copied are arrays, this routine builds for loops to copy them.
4498///
4499/// \param S The Sema object used for type-checking.
4500///
4501/// \param Loc The location where the implicit copy is being generated.
4502///
4503/// \param T The type of the expressions being copied. Both expressions must
4504/// have this type.
4505///
4506/// \param To The expression we are copying to.
4507///
4508/// \param From The expression we are copying from.
4509///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004510/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4511/// Otherwise, it's a non-static member subobject.
4512///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004513/// \param Depth Internal parameter recording the depth of the recursion.
4514///
4515/// \returns A statement or a loop that copies the expressions.
John McCalldadc5752010-08-24 06:29:42 +00004516static StmtResult
Douglas Gregorb139cd52010-05-01 20:49:11 +00004517BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCallb268a282010-08-23 23:25:46 +00004518 Expr *To, Expr *From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004519 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004520 // C++0x [class.copy]p30:
4521 // Each subobject is assigned in the manner appropriate to its type:
4522 //
4523 // - if the subobject is of class type, the copy assignment operator
4524 // for the class is used (as if by explicit qualification; that is,
4525 // ignoring any possible virtual overriding functions in more derived
4526 // classes);
4527 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4528 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4529
4530 // Look for operator=.
4531 DeclarationName Name
4532 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4533 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4534 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4535
4536 // Filter out any result that isn't a copy-assignment operator.
4537 LookupResult::Filter F = OpLookup.makeFilter();
4538 while (F.hasNext()) {
4539 NamedDecl *D = F.next();
4540 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4541 if (Method->isCopyAssignmentOperator())
4542 continue;
4543
4544 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004545 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004546 F.done();
4547
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004548 // Suppress the protected check (C++ [class.protected]) for each of the
4549 // assignment operators we found. This strange dance is required when
4550 // we're assigning via a base classes's copy-assignment operator. To
4551 // ensure that we're getting the right base class subobject (without
4552 // ambiguities), we need to cast "this" to that subobject type; to
4553 // ensure that we don't go through the virtual call mechanism, we need
4554 // to qualify the operator= name with the base class (see below). However,
4555 // this means that if the base class has a protected copy assignment
4556 // operator, the protected member access check will fail. So, we
4557 // rewrite "protected" access to "public" access in this case, since we
4558 // know by construction that we're calling from a derived class.
4559 if (CopyingBaseSubobject) {
4560 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4561 L != LEnd; ++L) {
4562 if (L.getAccess() == AS_protected)
4563 L.setAccess(AS_public);
4564 }
4565 }
4566
Douglas Gregorb139cd52010-05-01 20:49:11 +00004567 // Create the nested-name-specifier that will be used to qualify the
4568 // reference to operator=; this is required to suppress the virtual
4569 // call mechanism.
4570 CXXScopeSpec SS;
4571 SS.setRange(Loc);
4572 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4573 T.getTypePtr()));
4574
4575 // Create the reference to operator=.
John McCalldadc5752010-08-24 06:29:42 +00004576 ExprResult OpEqualRef
John McCallb268a282010-08-23 23:25:46 +00004577 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004578 /*FirstQualifierInScope=*/0, OpLookup,
4579 /*TemplateArgs=*/0,
4580 /*SuppressQualifierCheck=*/true);
4581 if (OpEqualRef.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004582 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004583
4584 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00004585
John McCalldadc5752010-08-24 06:29:42 +00004586 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregorce5aa332010-09-09 16:33:13 +00004587 OpEqualRef.takeAs<Expr>(),
4588 Loc, &From, 1, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004589 if (Call.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004590 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004591
4592 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004593 }
John McCallab8c2732010-03-16 06:11:48 +00004594
Douglas Gregorb139cd52010-05-01 20:49:11 +00004595 // - if the subobject is of scalar type, the built-in assignment
4596 // operator is used.
4597 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4598 if (!ArrayTy) {
John McCalle3027922010-08-25 11:45:40 +00004599 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004600 if (Assignment.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004601 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004602
4603 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004604 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004605
4606 // - if the subobject is an array, each element is assigned, in the
4607 // manner appropriate to the element type;
4608
4609 // Construct a loop over the array bounds, e.g.,
4610 //
4611 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4612 //
4613 // that will copy each of the array elements.
4614 QualType SizeType = S.Context.getSizeType();
4615
4616 // Create the iteration variable.
4617 IdentifierInfo *IterationVarName = 0;
4618 {
4619 llvm::SmallString<8> Str;
4620 llvm::raw_svector_ostream OS(Str);
4621 OS << "__i" << Depth;
4622 IterationVarName = &S.Context.Idents.get(OS.str());
4623 }
4624 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4625 IterationVarName, SizeType,
4626 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00004627 SC_None, SC_None);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004628
4629 // Initialize the iteration variable to zero.
4630 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00004631 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004632
4633 // Create a reference to the iteration variable; we'll use this several
4634 // times throughout.
4635 Expr *IterationVarRef
4636 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4637 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4638
4639 // Create the DeclStmt that holds the iteration variable.
4640 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4641
4642 // Create the comparison against the array bound.
4643 llvm::APInt Upper = ArrayTy->getSize();
4644 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCallb268a282010-08-23 23:25:46 +00004645 Expr *Comparison
John McCallc3007a22010-10-26 07:05:15 +00004646 = new (S.Context) BinaryOperator(IterationVarRef,
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00004647 IntegerLiteral::Create(S.Context,
4648 Upper, SizeType, Loc),
4649 BO_NE, S.Context.BoolTy, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004650
4651 // Create the pre-increment of the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004652 Expr *Increment
John McCallc3007a22010-10-26 07:05:15 +00004653 = new (S.Context) UnaryOperator(IterationVarRef,
John McCalle3027922010-08-25 11:45:40 +00004654 UO_PreInc,
John McCallb268a282010-08-23 23:25:46 +00004655 SizeType, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004656
4657 // Subscript the "from" and "to" expressions with the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004658 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
4659 IterationVarRef, Loc));
4660 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
4661 IterationVarRef, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004662
4663 // Build the copy for an individual element of the array.
John McCalldadc5752010-08-24 06:29:42 +00004664 StmtResult Copy = BuildSingleCopyAssign(S, Loc,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004665 ArrayTy->getElementType(),
John McCallb268a282010-08-23 23:25:46 +00004666 To, From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004667 CopyingBaseSubobject, Depth+1);
Douglas Gregorb412e172010-07-25 18:17:45 +00004668 if (Copy.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00004669 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004670
4671 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00004672 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004673 S.MakeFullExpr(Comparison),
John McCall48871652010-08-21 09:40:31 +00004674 0, S.MakeFullExpr(Increment),
John McCallb268a282010-08-23 23:25:46 +00004675 Loc, Copy.take());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004676}
4677
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004678/// \brief Determine whether the given class has a copy assignment operator
4679/// that accepts a const-qualified argument.
4680static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4681 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4682
4683 if (!Class->hasDeclaredCopyAssignment())
4684 S.DeclareImplicitCopyAssignment(Class);
4685
4686 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4687 DeclarationName OpName
4688 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4689
4690 DeclContext::lookup_const_iterator Op, OpEnd;
4691 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4692 // C++ [class.copy]p9:
4693 // A user-declared copy assignment operator is a non-static non-template
4694 // member function of class X with exactly one parameter of type X, X&,
4695 // const X&, volatile X& or const volatile X&.
4696 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4697 if (!Method)
4698 continue;
4699
4700 if (Method->isStatic())
4701 continue;
4702 if (Method->getPrimaryTemplate())
4703 continue;
4704 const FunctionProtoType *FnType =
4705 Method->getType()->getAs<FunctionProtoType>();
4706 assert(FnType && "Overloaded operator has no prototype.");
4707 // Don't assert on this; an invalid decl might have been left in the AST.
4708 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4709 continue;
4710 bool AcceptsConst = true;
4711 QualType ArgType = FnType->getArgType(0);
4712 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4713 ArgType = Ref->getPointeeType();
4714 // Is it a non-const lvalue reference?
4715 if (!ArgType.isConstQualified())
4716 AcceptsConst = false;
4717 }
4718 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4719 continue;
4720
4721 // We have a single argument of type cv X or cv X&, i.e. we've found the
4722 // copy assignment operator. Return whether it accepts const arguments.
4723 return AcceptsConst;
4724 }
4725 assert(Class->isInvalidDecl() &&
4726 "No copy assignment operator declared in valid code.");
4727 return false;
4728}
4729
Douglas Gregor0be31a22010-07-02 17:43:08 +00004730CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004731 // Note: The following rules are largely analoguous to the copy
4732 // constructor rules. Note that virtual bases are not taken into account
4733 // for determining the argument type of the operator. Note also that
4734 // operators taking an object instead of a reference are allowed.
Douglas Gregor9672f922010-07-03 00:47:00 +00004735
4736
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004737 // C++ [class.copy]p10:
4738 // If the class definition does not explicitly declare a copy
4739 // assignment operator, one is declared implicitly.
4740 // The implicitly-defined copy assignment operator for a class X
4741 // will have the form
4742 //
4743 // X& X::operator=(const X&)
4744 //
4745 // if
4746 bool HasConstCopyAssignment = true;
4747
4748 // -- each direct base class B of X has a copy assignment operator
4749 // whose parameter is of type const B&, const volatile B& or B,
4750 // and
4751 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4752 BaseEnd = ClassDecl->bases_end();
4753 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4754 assert(!Base->getType()->isDependentType() &&
4755 "Cannot generate implicit members for class with dependent bases.");
4756 const CXXRecordDecl *BaseClassDecl
4757 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004758 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004759 }
4760
4761 // -- for all the nonstatic data members of X that are of a class
4762 // type M (or array thereof), each such class type has a copy
4763 // assignment operator whose parameter is of type const M&,
4764 // const volatile M& or M.
4765 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4766 FieldEnd = ClassDecl->field_end();
4767 HasConstCopyAssignment && Field != FieldEnd;
4768 ++Field) {
4769 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4770 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4771 const CXXRecordDecl *FieldClassDecl
4772 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004773 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004774 }
4775 }
4776
4777 // Otherwise, the implicitly declared copy assignment operator will
4778 // have the form
4779 //
4780 // X& X::operator=(X&)
4781 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4782 QualType RetType = Context.getLValueReferenceType(ArgType);
4783 if (HasConstCopyAssignment)
4784 ArgType = ArgType.withConst();
4785 ArgType = Context.getLValueReferenceType(ArgType);
4786
Douglas Gregor68e11362010-07-01 17:48:08 +00004787 // C++ [except.spec]p14:
4788 // An implicitly declared special member function (Clause 12) shall have an
4789 // exception-specification. [...]
4790 ImplicitExceptionSpecification ExceptSpec(Context);
4791 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4792 BaseEnd = ClassDecl->bases_end();
4793 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004794 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004795 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004796
4797 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4798 DeclareImplicitCopyAssignment(BaseClassDecl);
4799
Douglas Gregor68e11362010-07-01 17:48:08 +00004800 if (CXXMethodDecl *CopyAssign
4801 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4802 ExceptSpec.CalledDecl(CopyAssign);
4803 }
4804 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4805 FieldEnd = ClassDecl->field_end();
4806 Field != FieldEnd;
4807 ++Field) {
4808 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4809 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004810 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004811 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004812
4813 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4814 DeclareImplicitCopyAssignment(FieldClassDecl);
4815
Douglas Gregor68e11362010-07-01 17:48:08 +00004816 if (CXXMethodDecl *CopyAssign
4817 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4818 ExceptSpec.CalledDecl(CopyAssign);
4819 }
4820 }
4821
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004822 // An implicitly-declared copy assignment operator is an inline public
4823 // member of its class.
4824 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004825 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004826 CXXMethodDecl *CopyAssignment
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004827 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004828 Context.getFunctionType(RetType, &ArgType, 1,
4829 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004830 ExceptSpec.hasExceptionSpecification(),
4831 ExceptSpec.hasAnyExceptionSpecification(),
4832 ExceptSpec.size(),
4833 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004834 FunctionType::ExtInfo()),
4835 /*TInfo=*/0, /*isStatic=*/false,
John McCall8e7d6562010-08-26 03:08:43 +00004836 /*StorageClassAsWritten=*/SC_None,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004837 /*isInline=*/true);
4838 CopyAssignment->setAccess(AS_public);
4839 CopyAssignment->setImplicit();
4840 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004841
4842 // Add the parameter to the operator.
4843 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4844 ClassDecl->getLocation(),
4845 /*Id=*/0,
4846 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00004847 SC_None,
4848 SC_None, 0);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004849 CopyAssignment->setParams(&FromParam, 1);
4850
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004851 // Note that we have added this copy-assignment operator.
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004852 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4853
Douglas Gregor0be31a22010-07-02 17:43:08 +00004854 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004855 PushOnScopeChains(CopyAssignment, S, false);
4856 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004857
4858 AddOverriddenMethods(ClassDecl, CopyAssignment);
4859 return CopyAssignment;
4860}
4861
Douglas Gregorb139cd52010-05-01 20:49:11 +00004862void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4863 CXXMethodDecl *CopyAssignOperator) {
4864 assert((CopyAssignOperator->isImplicit() &&
4865 CopyAssignOperator->isOverloadedOperator() &&
4866 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004867 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004868 "DefineImplicitCopyAssignment called for wrong function");
4869
4870 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4871
4872 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4873 CopyAssignOperator->setInvalidDecl();
4874 return;
4875 }
4876
4877 CopyAssignOperator->setUsed();
4878
4879 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004880 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004881
4882 // C++0x [class.copy]p30:
4883 // The implicitly-defined or explicitly-defaulted copy assignment operator
4884 // for a non-union class X performs memberwise copy assignment of its
4885 // subobjects. The direct base classes of X are assigned first, in the
4886 // order of their declaration in the base-specifier-list, and then the
4887 // immediate non-static data members of X are assigned, in the order in
4888 // which they were declared in the class definition.
4889
4890 // The statements that form the synthesized function body.
John McCall37ad5512010-08-23 06:44:23 +00004891 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004892
4893 // The parameter for the "other" object, which we are copying from.
4894 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4895 Qualifiers OtherQuals = Other->getType().getQualifiers();
4896 QualType OtherRefType = Other->getType();
4897 if (const LValueReferenceType *OtherRef
4898 = OtherRefType->getAs<LValueReferenceType>()) {
4899 OtherRefType = OtherRef->getPointeeType();
4900 OtherQuals = OtherRefType.getQualifiers();
4901 }
4902
4903 // Our location for everything implicitly-generated.
4904 SourceLocation Loc = CopyAssignOperator->getLocation();
4905
4906 // Construct a reference to the "other" object. We'll be using this
4907 // throughout the generated ASTs.
4908 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4909 assert(OtherRef && "Reference to parameter cannot fail!");
4910
4911 // Construct the "this" pointer. We'll be using this throughout the generated
4912 // ASTs.
4913 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4914 assert(This && "Reference to this cannot fail!");
4915
4916 // Assign base classes.
4917 bool Invalid = false;
4918 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4919 E = ClassDecl->bases_end(); Base != E; ++Base) {
4920 // Form the assignment:
4921 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4922 QualType BaseType = Base->getType().getUnqualifiedType();
4923 CXXRecordDecl *BaseClassDecl = 0;
4924 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4925 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4926 else {
4927 Invalid = true;
4928 continue;
4929 }
4930
John McCallcf142162010-08-07 06:22:56 +00004931 CXXCastPath BasePath;
4932 BasePath.push_back(Base);
4933
Douglas Gregorb139cd52010-05-01 20:49:11 +00004934 // Construct the "from" expression, which is an implicit cast to the
4935 // appropriately-qualified base type.
John McCallc3007a22010-10-26 07:05:15 +00004936 Expr *From = OtherRef;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004937 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
John McCall2536c6d2010-08-25 10:28:54 +00004938 CK_UncheckedDerivedToBase,
4939 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004940
4941 // Dereference "this".
John McCall2536c6d2010-08-25 10:28:54 +00004942 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004943
4944 // Implicitly cast "this" to the appropriately-qualified base type.
4945 Expr *ToE = To.takeAs<Expr>();
4946 ImpCastExprToType(ToE,
4947 Context.getCVRQualifiedType(BaseType,
4948 CopyAssignOperator->getTypeQualifiers()),
John McCall2536c6d2010-08-25 10:28:54 +00004949 CK_UncheckedDerivedToBase,
4950 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004951 To = Owned(ToE);
4952
4953 // Build the copy.
John McCalldadc5752010-08-24 06:29:42 +00004954 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall2536c6d2010-08-25 10:28:54 +00004955 To.get(), From,
4956 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004957 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004958 Diag(CurrentLocation, diag::note_member_synthesized_at)
4959 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4960 CopyAssignOperator->setInvalidDecl();
4961 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004962 }
4963
4964 // Success! Record the copy.
4965 Statements.push_back(Copy.takeAs<Expr>());
4966 }
4967
4968 // \brief Reference to the __builtin_memcpy function.
4969 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004970 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004971 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004972
4973 // Assign non-static members.
4974 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4975 FieldEnd = ClassDecl->field_end();
4976 Field != FieldEnd; ++Field) {
4977 // Check for members of reference type; we can't copy those.
4978 if (Field->getType()->isReferenceType()) {
4979 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4980 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4981 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004982 Diag(CurrentLocation, diag::note_member_synthesized_at)
4983 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004984 Invalid = true;
4985 continue;
4986 }
4987
4988 // Check for members of const-qualified, non-class type.
4989 QualType BaseType = Context.getBaseElementType(Field->getType());
4990 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4991 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4992 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4993 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004994 Diag(CurrentLocation, diag::note_member_synthesized_at)
4995 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004996 Invalid = true;
4997 continue;
4998 }
4999
5000 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00005001 if (FieldType->isIncompleteArrayType()) {
5002 assert(ClassDecl->hasFlexibleArrayMember() &&
5003 "Incomplete array type is not valid");
5004 continue;
5005 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005006
5007 // Build references to the field in the object we're copying from and to.
5008 CXXScopeSpec SS; // Intentionally empty
5009 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5010 LookupMemberName);
5011 MemberLookup.addDecl(*Field);
5012 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00005013 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
Douglas Gregorb139cd52010-05-01 20:49:11 +00005014 Loc, /*IsArrow=*/false,
5015 SS, 0, MemberLookup, 0);
John McCalldadc5752010-08-24 06:29:42 +00005016 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005017 Loc, /*IsArrow=*/true,
5018 SS, 0, MemberLookup, 0);
5019 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5020 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5021
5022 // If the field should be copied with __builtin_memcpy rather than via
5023 // explicit assignments, do so. This optimization only applies for arrays
5024 // of scalars and arrays of class type with trivial copy-assignment
5025 // operators.
5026 if (FieldType->isArrayType() &&
5027 (!BaseType->isRecordType() ||
5028 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5029 ->hasTrivialCopyAssignment())) {
5030 // Compute the size of the memory buffer to be copied.
5031 QualType SizeType = Context.getSizeType();
5032 llvm::APInt Size(Context.getTypeSize(SizeType),
5033 Context.getTypeSizeInChars(BaseType).getQuantity());
5034 for (const ConstantArrayType *Array
5035 = Context.getAsConstantArrayType(FieldType);
5036 Array;
5037 Array = Context.getAsConstantArrayType(Array->getElementType())) {
5038 llvm::APInt ArraySize = Array->getSize();
5039 ArraySize.zextOrTrunc(Size.getBitWidth());
5040 Size *= ArraySize;
5041 }
5042
5043 // Take the address of the field references for "from" and "to".
John McCalle3027922010-08-25 11:45:40 +00005044 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5045 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005046
5047 bool NeedsCollectableMemCpy =
5048 (BaseType->isRecordType() &&
5049 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5050
5051 if (NeedsCollectableMemCpy) {
5052 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005053 // Create a reference to the __builtin_objc_memmove_collectable function.
5054 LookupResult R(*this,
5055 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005056 Loc, LookupOrdinaryName);
5057 LookupName(R, TUScope, true);
5058
5059 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5060 if (!CollectableMemCpy) {
5061 // Something went horribly wrong earlier, and we will have
5062 // complained about it.
5063 Invalid = true;
5064 continue;
5065 }
5066
5067 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5068 CollectableMemCpy->getType(),
5069 Loc, 0).takeAs<Expr>();
5070 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5071 }
5072 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005073 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005074 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00005075 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5076 LookupOrdinaryName);
5077 LookupName(R, TUScope, true);
5078
5079 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5080 if (!BuiltinMemCpy) {
5081 // Something went horribly wrong earlier, and we will have complained
5082 // about it.
5083 Invalid = true;
5084 continue;
5085 }
5086
5087 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5088 BuiltinMemCpy->getType(),
5089 Loc, 0).takeAs<Expr>();
5090 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5091 }
5092
John McCall37ad5512010-08-23 06:44:23 +00005093 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005094 CallArgs.push_back(To.takeAs<Expr>());
5095 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00005096 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCalldadc5752010-08-24 06:29:42 +00005097 ExprResult Call = ExprError();
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005098 if (NeedsCollectableMemCpy)
5099 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005100 CollectableMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005101 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00005102 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005103 else
5104 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005105 BuiltinMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005106 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00005107 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005108
Douglas Gregorb139cd52010-05-01 20:49:11 +00005109 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5110 Statements.push_back(Call.takeAs<Expr>());
5111 continue;
5112 }
5113
5114 // Build the copy of this field.
John McCalldadc5752010-08-24 06:29:42 +00005115 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCallb268a282010-08-23 23:25:46 +00005116 To.get(), From.get(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00005117 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005118 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005119 Diag(CurrentLocation, diag::note_member_synthesized_at)
5120 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5121 CopyAssignOperator->setInvalidDecl();
5122 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005123 }
5124
5125 // Success! Record the copy.
5126 Statements.push_back(Copy.takeAs<Stmt>());
5127 }
5128
5129 if (!Invalid) {
5130 // Add a "return *this;"
John McCalle3027922010-08-25 11:45:40 +00005131 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005132
John McCalldadc5752010-08-24 06:29:42 +00005133 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00005134 if (Return.isInvalid())
5135 Invalid = true;
5136 else {
5137 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00005138
5139 if (Trap.hasErrorOccurred()) {
5140 Diag(CurrentLocation, diag::note_member_synthesized_at)
5141 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5142 Invalid = true;
5143 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005144 }
5145 }
5146
5147 if (Invalid) {
5148 CopyAssignOperator->setInvalidDecl();
5149 return;
5150 }
5151
John McCalldadc5752010-08-24 06:29:42 +00005152 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005153 /*isStmtExpr=*/false);
5154 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5155 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00005156}
5157
Douglas Gregor0be31a22010-07-02 17:43:08 +00005158CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5159 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00005160 // C++ [class.copy]p4:
5161 // If the class definition does not explicitly declare a copy
5162 // constructor, one is declared implicitly.
5163
Douglas Gregor54be3392010-07-01 17:57:27 +00005164 // C++ [class.copy]p5:
5165 // The implicitly-declared copy constructor for a class X will
5166 // have the form
5167 //
5168 // X::X(const X&)
5169 //
5170 // if
5171 bool HasConstCopyConstructor = true;
5172
5173 // -- each direct or virtual base class B of X has a copy
5174 // constructor whose first parameter is of type const B& or
5175 // const volatile B&, and
5176 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5177 BaseEnd = ClassDecl->bases_end();
5178 HasConstCopyConstructor && Base != BaseEnd;
5179 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005180 // Virtual bases are handled below.
5181 if (Base->isVirtual())
5182 continue;
5183
Douglas Gregora6d69502010-07-02 23:41:54 +00005184 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005185 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005186 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5187 DeclareImplicitCopyConstructor(BaseClassDecl);
5188
Douglas Gregorcfe68222010-07-01 18:27:03 +00005189 HasConstCopyConstructor
5190 = BaseClassDecl->hasConstCopyConstructor(Context);
5191 }
5192
5193 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5194 BaseEnd = ClassDecl->vbases_end();
5195 HasConstCopyConstructor && Base != BaseEnd;
5196 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005197 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00005198 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005199 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5200 DeclareImplicitCopyConstructor(BaseClassDecl);
5201
Douglas Gregor54be3392010-07-01 17:57:27 +00005202 HasConstCopyConstructor
5203 = BaseClassDecl->hasConstCopyConstructor(Context);
5204 }
5205
5206 // -- for all the nonstatic data members of X that are of a
5207 // class type M (or array thereof), each such class type
5208 // has a copy constructor whose first parameter is of type
5209 // const M& or const volatile M&.
5210 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5211 FieldEnd = ClassDecl->field_end();
5212 HasConstCopyConstructor && Field != FieldEnd;
5213 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005214 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005215 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005216 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005217 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005218 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5219 DeclareImplicitCopyConstructor(FieldClassDecl);
5220
Douglas Gregor54be3392010-07-01 17:57:27 +00005221 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005222 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005223 }
5224 }
5225
5226 // Otherwise, the implicitly declared copy constructor will have
5227 // the form
5228 //
5229 // X::X(X&)
5230 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5231 QualType ArgType = ClassType;
5232 if (HasConstCopyConstructor)
5233 ArgType = ArgType.withConst();
5234 ArgType = Context.getLValueReferenceType(ArgType);
5235
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005236 // C++ [except.spec]p14:
5237 // An implicitly declared special member function (Clause 12) shall have an
5238 // exception-specification. [...]
5239 ImplicitExceptionSpecification ExceptSpec(Context);
5240 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5241 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5242 BaseEnd = ClassDecl->bases_end();
5243 Base != BaseEnd;
5244 ++Base) {
5245 // Virtual bases are handled below.
5246 if (Base->isVirtual())
5247 continue;
5248
Douglas Gregora6d69502010-07-02 23:41:54 +00005249 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005250 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005251 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5252 DeclareImplicitCopyConstructor(BaseClassDecl);
5253
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005254 if (CXXConstructorDecl *CopyConstructor
5255 = BaseClassDecl->getCopyConstructor(Context, Quals))
5256 ExceptSpec.CalledDecl(CopyConstructor);
5257 }
5258 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5259 BaseEnd = ClassDecl->vbases_end();
5260 Base != BaseEnd;
5261 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005262 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005263 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005264 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5265 DeclareImplicitCopyConstructor(BaseClassDecl);
5266
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005267 if (CXXConstructorDecl *CopyConstructor
5268 = BaseClassDecl->getCopyConstructor(Context, Quals))
5269 ExceptSpec.CalledDecl(CopyConstructor);
5270 }
5271 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5272 FieldEnd = ClassDecl->field_end();
5273 Field != FieldEnd;
5274 ++Field) {
5275 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5276 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005277 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005278 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005279 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5280 DeclareImplicitCopyConstructor(FieldClassDecl);
5281
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005282 if (CXXConstructorDecl *CopyConstructor
5283 = FieldClassDecl->getCopyConstructor(Context, Quals))
5284 ExceptSpec.CalledDecl(CopyConstructor);
5285 }
5286 }
5287
Douglas Gregor54be3392010-07-01 17:57:27 +00005288 // An implicitly-declared copy constructor is an inline public
5289 // member of its class.
5290 DeclarationName Name
5291 = Context.DeclarationNames.getCXXConstructorName(
5292 Context.getCanonicalType(ClassType));
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005293 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor54be3392010-07-01 17:57:27 +00005294 CXXConstructorDecl *CopyConstructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005295 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00005296 Context.getFunctionType(Context.VoidTy,
5297 &ArgType, 1,
5298 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005299 ExceptSpec.hasExceptionSpecification(),
5300 ExceptSpec.hasAnyExceptionSpecification(),
5301 ExceptSpec.size(),
5302 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005303 FunctionType::ExtInfo()),
5304 /*TInfo=*/0,
5305 /*isExplicit=*/false,
5306 /*isInline=*/true,
5307 /*isImplicitlyDeclared=*/true);
5308 CopyConstructor->setAccess(AS_public);
5309 CopyConstructor->setImplicit();
5310 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5311
Douglas Gregora6d69502010-07-02 23:41:54 +00005312 // Note that we have declared this constructor.
Douglas Gregora6d69502010-07-02 23:41:54 +00005313 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5314
Douglas Gregor54be3392010-07-01 17:57:27 +00005315 // Add the parameter to the constructor.
5316 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5317 ClassDecl->getLocation(),
5318 /*IdentifierInfo=*/0,
5319 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00005320 SC_None,
5321 SC_None, 0);
Douglas Gregor54be3392010-07-01 17:57:27 +00005322 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005323 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00005324 PushOnScopeChains(CopyConstructor, S, false);
5325 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor54be3392010-07-01 17:57:27 +00005326
5327 return CopyConstructor;
5328}
5329
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005330void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5331 CXXConstructorDecl *CopyConstructor,
5332 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005333 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005334 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005335 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005336 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005337
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005338 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005339 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005340
Douglas Gregora57478e2010-05-01 15:04:51 +00005341 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005342 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005343
Douglas Gregor54818f02010-05-12 16:39:35 +00005344 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5345 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005346 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005347 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005348 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005349 } else {
5350 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5351 CopyConstructor->getLocation(),
5352 MultiStmtArg(*this, 0, 0),
5353 /*isStmtExpr=*/false)
5354 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005355 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005356
5357 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005358}
5359
John McCalldadc5752010-08-24 06:29:42 +00005360ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005361Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005362 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005363 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005364 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005365 unsigned ConstructKind,
5366 SourceRange ParenRange) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005367 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005368
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005369 // C++0x [class.copy]p34:
5370 // When certain criteria are met, an implementation is allowed to
5371 // omit the copy/move construction of a class object, even if the
5372 // copy/move constructor and/or destructor for the object have
5373 // side effects. [...]
5374 // - when a temporary class object that has not been bound to a
5375 // reference (12.2) would be copied/moved to a class object
5376 // with the same cv-unqualified type, the copy/move operation
5377 // can be omitted by constructing the temporary object
5378 // directly into the target of the omitted copy/move
John McCall7a626f62010-09-15 10:14:12 +00005379 if (ConstructKind == CXXConstructExpr::CK_Complete &&
5380 Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005381 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall7a626f62010-09-15 10:14:12 +00005382 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson250aada2009-08-16 05:13:48 +00005383 }
Mike Stump11289f42009-09-09 15:08:12 +00005384
5385 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005386 Elidable, move(ExprArgs), RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005387 ConstructKind, ParenRange);
Anders Carlsson250aada2009-08-16 05:13:48 +00005388}
5389
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005390/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5391/// including handling of its default argument expressions.
John McCalldadc5752010-08-24 06:29:42 +00005392ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005393Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5394 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005395 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005396 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005397 unsigned ConstructKind,
5398 SourceRange ParenRange) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005399 unsigned NumExprs = ExprArgs.size();
5400 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005401
Douglas Gregor27381f32009-11-23 12:27:39 +00005402 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005403 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005404 Constructor, Elidable, Exprs, NumExprs,
John McCallbfd822c2010-08-24 07:32:53 +00005405 RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00005406 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
5407 ParenRange));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005408}
5409
Mike Stump11289f42009-09-09 15:08:12 +00005410bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005411 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005412 MultiExprArg Exprs) {
Chandler Carruth01718152010-10-25 08:47:36 +00005413 // FIXME: Provide the correct paren SourceRange when available.
John McCalldadc5752010-08-24 06:29:42 +00005414 ExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005415 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Chandler Carruth01718152010-10-25 08:47:36 +00005416 move(Exprs), false, CXXConstructExpr::CK_Complete,
5417 SourceRange());
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005418 if (TempResult.isInvalid())
5419 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005420
Anders Carlsson6eb55572009-08-25 05:12:04 +00005421 Expr *Temp = TempResult.takeAs<Expr>();
John McCallacf0ee52010-10-08 02:01:28 +00005422 CheckImplicitConversions(Temp, VD->getLocation());
Douglas Gregor77b50e12009-06-22 23:06:13 +00005423 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005424 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005425 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005426
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005427 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005428}
5429
John McCall03c48482010-02-02 09:10:11 +00005430void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5431 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005432 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005433 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005434 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005435 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005436 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005437 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005438 << VD->getDeclName()
5439 << VD->getType());
John McCall47e40932010-08-01 20:20:59 +00005440
John McCall386dfc72010-09-18 05:25:11 +00005441 // TODO: this should be re-enabled for static locals by !CXAAtExit
5442 if (!VD->isInvalidDecl() && VD->hasGlobalStorage() && !VD->isStaticLocal())
John McCall47e40932010-08-01 20:20:59 +00005443 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall6781b052010-02-02 08:45:54 +00005444 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005445}
5446
Mike Stump11289f42009-09-09 15:08:12 +00005447/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005448/// ActOnDeclarator, when a C++ direct initializer is present.
5449/// e.g: "int x(1);"
John McCall48871652010-08-21 09:40:31 +00005450void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00005451 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005452 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005453 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005454 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005455
5456 // If there is no declaration, there was an error parsing it. Just ignore
5457 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005458 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005459 return;
Mike Stump11289f42009-09-09 15:08:12 +00005460
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005461 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5462 if (!VDecl) {
5463 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5464 RealDecl->setInvalidDecl();
5465 return;
5466 }
5467
Douglas Gregor402250f2009-08-26 21:14:46 +00005468 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005469 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005470 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5471 //
5472 // Clients that want to distinguish between the two forms, can check for
5473 // direct initializer using VarDecl::hasCXXDirectInitializer().
5474 // A major benefit is that clients that don't particularly care about which
5475 // exactly form was it (like the CodeGen) can handle both cases without
5476 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005477
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005478 // C++ 8.5p11:
5479 // The form of initialization (using parentheses or '=') is generally
5480 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005481 // class type.
5482
Douglas Gregor50dc2192010-02-11 22:55:30 +00005483 if (!VDecl->getType()->isDependentType() &&
5484 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005485 diag::err_typecheck_decl_incomplete_type)) {
5486 VDecl->setInvalidDecl();
5487 return;
5488 }
5489
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005490 // The variable can not have an abstract class type.
5491 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5492 diag::err_abstract_type_in_decl,
5493 AbstractVariableType))
5494 VDecl->setInvalidDecl();
5495
Sebastian Redl5ca79842010-02-01 20:16:42 +00005496 const VarDecl *Def;
5497 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005498 Diag(VDecl->getLocation(), diag::err_redefinition)
5499 << VDecl->getDeclName();
5500 Diag(Def->getLocation(), diag::note_previous_definition);
5501 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005502 return;
5503 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005504
Douglas Gregorf0f83692010-08-24 05:27:49 +00005505 // C++ [class.static.data]p4
5506 // If a static data member is of const integral or const
5507 // enumeration type, its declaration in the class definition can
5508 // specify a constant-initializer which shall be an integral
5509 // constant expression (5.19). In that case, the member can appear
5510 // in integral constant expressions. The member shall still be
5511 // defined in a namespace scope if it is used in the program and the
5512 // namespace scope definition shall not contain an initializer.
5513 //
5514 // We already performed a redefinition check above, but for static
5515 // data members we also need to check whether there was an in-class
5516 // declaration with an initializer.
5517 const VarDecl* PrevInit = 0;
5518 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
5519 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
5520 Diag(PrevInit->getLocation(), diag::note_previous_definition);
5521 return;
5522 }
5523
Douglas Gregor50dc2192010-02-11 22:55:30 +00005524 // If either the declaration has a dependent type or if any of the
5525 // expressions is type-dependent, we represent the initialization
5526 // via a ParenListExpr for later use during template instantiation.
5527 if (VDecl->getType()->isDependentType() ||
5528 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5529 // Let clients know that initialization was done with a direct initializer.
5530 VDecl->setCXXDirectInitializer(true);
5531
5532 // Store the initialization expressions as a ParenListExpr.
5533 unsigned NumExprs = Exprs.size();
5534 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5535 (Expr **)Exprs.release(),
5536 NumExprs, RParenLoc));
5537 return;
5538 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005539
5540 // Capture the variable that is being initialized and the style of
5541 // initialization.
5542 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5543
5544 // FIXME: Poor source location information.
5545 InitializationKind Kind
5546 = InitializationKind::CreateDirect(VDecl->getLocation(),
5547 LParenLoc, RParenLoc);
5548
5549 InitializationSequence InitSeq(*this, Entity, Kind,
John McCallb268a282010-08-23 23:25:46 +00005550 Exprs.get(), Exprs.size());
John McCalldadc5752010-08-24 06:29:42 +00005551 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005552 if (Result.isInvalid()) {
5553 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005554 return;
5555 }
John McCallacf0ee52010-10-08 02:01:28 +00005556
5557 CheckImplicitConversions(Result.get(), LParenLoc);
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005558
John McCallb268a282010-08-23 23:25:46 +00005559 Result = MaybeCreateCXXExprWithTemporaries(Result.get());
Douglas Gregord5058122010-02-11 01:19:42 +00005560 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005561 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005562
John McCall8b0f4ff2010-08-02 21:13:48 +00005563 if (!VDecl->isInvalidDecl() &&
5564 !VDecl->getDeclContext()->isDependentContext() &&
Sebastian Redl02f1eeb2010-09-08 04:46:19 +00005565 VDecl->hasGlobalStorage() && !VDecl->isStaticLocal() &&
John McCall8b0f4ff2010-08-02 21:13:48 +00005566 !VDecl->getInit()->isConstantInitializer(Context,
5567 VDecl->getType()->isReferenceType()))
5568 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5569 << VDecl->getInit()->getSourceRange();
5570
John McCall03c48482010-02-02 09:10:11 +00005571 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5572 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005573}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005574
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005575/// \brief Given a constructor and the set of arguments provided for the
5576/// constructor, convert the arguments and add any required default arguments
5577/// to form a proper call to this constructor.
5578///
5579/// \returns true if an error occurred, false otherwise.
5580bool
5581Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5582 MultiExprArg ArgsPtr,
5583 SourceLocation Loc,
John McCall37ad5512010-08-23 06:44:23 +00005584 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005585 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5586 unsigned NumArgs = ArgsPtr.size();
5587 Expr **Args = (Expr **)ArgsPtr.get();
5588
5589 const FunctionProtoType *Proto
5590 = Constructor->getType()->getAs<FunctionProtoType>();
5591 assert(Proto && "Constructor without a prototype?");
5592 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005593
5594 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005595 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005596 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005597 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005598 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005599
5600 VariadicCallType CallType =
5601 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5602 llvm::SmallVector<Expr *, 8> AllArgs;
5603 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5604 Proto, 0, Args, NumArgs, AllArgs,
5605 CallType);
5606 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5607 ConvertedArgs.push_back(AllArgs[i]);
5608 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005609}
5610
Anders Carlssone363c8e2009-12-12 00:32:00 +00005611static inline bool
5612CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5613 const FunctionDecl *FnDecl) {
Sebastian Redl50c68252010-08-31 00:36:30 +00005614 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlssone363c8e2009-12-12 00:32:00 +00005615 if (isa<NamespaceDecl>(DC)) {
5616 return SemaRef.Diag(FnDecl->getLocation(),
5617 diag::err_operator_new_delete_declared_in_namespace)
5618 << FnDecl->getDeclName();
5619 }
5620
5621 if (isa<TranslationUnitDecl>(DC) &&
John McCall8e7d6562010-08-26 03:08:43 +00005622 FnDecl->getStorageClass() == SC_Static) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005623 return SemaRef.Diag(FnDecl->getLocation(),
5624 diag::err_operator_new_delete_declared_static)
5625 << FnDecl->getDeclName();
5626 }
5627
Anders Carlsson60659a82009-12-12 02:43:16 +00005628 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005629}
5630
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005631static inline bool
5632CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5633 CanQualType ExpectedResultType,
5634 CanQualType ExpectedFirstParamType,
5635 unsigned DependentParamTypeDiag,
5636 unsigned InvalidParamTypeDiag) {
5637 QualType ResultType =
5638 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5639
5640 // Check that the result type is not dependent.
5641 if (ResultType->isDependentType())
5642 return SemaRef.Diag(FnDecl->getLocation(),
5643 diag::err_operator_new_delete_dependent_result_type)
5644 << FnDecl->getDeclName() << ExpectedResultType;
5645
5646 // Check that the result type is what we expect.
5647 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5648 return SemaRef.Diag(FnDecl->getLocation(),
5649 diag::err_operator_new_delete_invalid_result_type)
5650 << FnDecl->getDeclName() << ExpectedResultType;
5651
5652 // A function template must have at least 2 parameters.
5653 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5654 return SemaRef.Diag(FnDecl->getLocation(),
5655 diag::err_operator_new_delete_template_too_few_parameters)
5656 << FnDecl->getDeclName();
5657
5658 // The function decl must have at least 1 parameter.
5659 if (FnDecl->getNumParams() == 0)
5660 return SemaRef.Diag(FnDecl->getLocation(),
5661 diag::err_operator_new_delete_too_few_parameters)
5662 << FnDecl->getDeclName();
5663
5664 // Check the the first parameter type is not dependent.
5665 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5666 if (FirstParamType->isDependentType())
5667 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5668 << FnDecl->getDeclName() << ExpectedFirstParamType;
5669
5670 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005671 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005672 ExpectedFirstParamType)
5673 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5674 << FnDecl->getDeclName() << ExpectedFirstParamType;
5675
5676 return false;
5677}
5678
Anders Carlsson12308f42009-12-11 23:23:22 +00005679static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005680CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005681 // C++ [basic.stc.dynamic.allocation]p1:
5682 // A program is ill-formed if an allocation function is declared in a
5683 // namespace scope other than global scope or declared static in global
5684 // scope.
5685 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5686 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005687
5688 CanQualType SizeTy =
5689 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5690
5691 // C++ [basic.stc.dynamic.allocation]p1:
5692 // The return type shall be void*. The first parameter shall have type
5693 // std::size_t.
5694 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5695 SizeTy,
5696 diag::err_operator_new_dependent_param_type,
5697 diag::err_operator_new_param_type))
5698 return true;
5699
5700 // C++ [basic.stc.dynamic.allocation]p1:
5701 // The first parameter shall not have an associated default argument.
5702 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005703 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005704 diag::err_operator_new_default_arg)
5705 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5706
5707 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005708}
5709
5710static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005711CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5712 // C++ [basic.stc.dynamic.deallocation]p1:
5713 // A program is ill-formed if deallocation functions are declared in a
5714 // namespace scope other than global scope or declared static in global
5715 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005716 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5717 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005718
5719 // C++ [basic.stc.dynamic.deallocation]p2:
5720 // Each deallocation function shall return void and its first parameter
5721 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005722 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5723 SemaRef.Context.VoidPtrTy,
5724 diag::err_operator_delete_dependent_param_type,
5725 diag::err_operator_delete_param_type))
5726 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005727
Anders Carlsson12308f42009-12-11 23:23:22 +00005728 return false;
5729}
5730
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005731/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5732/// of this overloaded operator is well-formed. If so, returns false;
5733/// otherwise, emits appropriate diagnostics and returns true.
5734bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005735 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005736 "Expected an overloaded operator declaration");
5737
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005738 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5739
Mike Stump11289f42009-09-09 15:08:12 +00005740 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005741 // The allocation and deallocation functions, operator new,
5742 // operator new[], operator delete and operator delete[], are
5743 // described completely in 3.7.3. The attributes and restrictions
5744 // found in the rest of this subclause do not apply to them unless
5745 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005746 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005747 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005748
Anders Carlsson22f443f2009-12-12 00:26:23 +00005749 if (Op == OO_New || Op == OO_Array_New)
5750 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005751
5752 // C++ [over.oper]p6:
5753 // An operator function shall either be a non-static member
5754 // function or be a non-member function and have at least one
5755 // parameter whose type is a class, a reference to a class, an
5756 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005757 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5758 if (MethodDecl->isStatic())
5759 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005760 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005761 } else {
5762 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005763 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5764 ParamEnd = FnDecl->param_end();
5765 Param != ParamEnd; ++Param) {
5766 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005767 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5768 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005769 ClassOrEnumParam = true;
5770 break;
5771 }
5772 }
5773
Douglas Gregord69246b2008-11-17 16:14:12 +00005774 if (!ClassOrEnumParam)
5775 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005776 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005777 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005778 }
5779
5780 // C++ [over.oper]p8:
5781 // An operator function cannot have default arguments (8.3.6),
5782 // except where explicitly stated below.
5783 //
Mike Stump11289f42009-09-09 15:08:12 +00005784 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005785 // (C++ [over.call]p1).
5786 if (Op != OO_Call) {
5787 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5788 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005789 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005790 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005791 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005792 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005793 }
5794 }
5795
Douglas Gregor6cf08062008-11-10 13:38:07 +00005796 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5797 { false, false, false }
5798#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5799 , { Unary, Binary, MemberOnly }
5800#include "clang/Basic/OperatorKinds.def"
5801 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005802
Douglas Gregor6cf08062008-11-10 13:38:07 +00005803 bool CanBeUnaryOperator = OperatorUses[Op][0];
5804 bool CanBeBinaryOperator = OperatorUses[Op][1];
5805 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005806
5807 // C++ [over.oper]p8:
5808 // [...] Operator functions cannot have more or fewer parameters
5809 // than the number required for the corresponding operator, as
5810 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005811 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005812 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005813 if (Op != OO_Call &&
5814 ((NumParams == 1 && !CanBeUnaryOperator) ||
5815 (NumParams == 2 && !CanBeBinaryOperator) ||
5816 (NumParams < 1) || (NumParams > 2))) {
5817 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005818 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005819 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005820 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005821 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005822 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005823 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005824 assert(CanBeBinaryOperator &&
5825 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005826 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005827 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005828
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005829 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005830 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005831 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005832
Douglas Gregord69246b2008-11-17 16:14:12 +00005833 // Overloaded operators other than operator() cannot be variadic.
5834 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005835 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005836 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005837 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005838 }
5839
5840 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005841 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5842 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005843 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005844 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005845 }
5846
5847 // C++ [over.inc]p1:
5848 // The user-defined function called operator++ implements the
5849 // prefix and postfix ++ operator. If this function is a member
5850 // function with no parameters, or a non-member function with one
5851 // parameter of class or enumeration type, it defines the prefix
5852 // increment operator ++ for objects of that type. If the function
5853 // is a member function with one parameter (which shall be of type
5854 // int) or a non-member function with two parameters (the second
5855 // of which shall be of type int), it defines the postfix
5856 // increment operator ++ for objects of that type.
5857 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5858 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5859 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005860 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005861 ParamIsInt = BT->getKind() == BuiltinType::Int;
5862
Chris Lattner2b786902008-11-21 07:50:02 +00005863 if (!ParamIsInt)
5864 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005865 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005866 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005867 }
5868
Douglas Gregord69246b2008-11-17 16:14:12 +00005869 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005870}
Chris Lattner3b024a32008-12-17 07:09:26 +00005871
Alexis Huntc88db062010-01-13 09:01:02 +00005872/// CheckLiteralOperatorDeclaration - Check whether the declaration
5873/// of this literal operator function is well-formed. If so, returns
5874/// false; otherwise, emits appropriate diagnostics and returns true.
5875bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5876 DeclContext *DC = FnDecl->getDeclContext();
5877 Decl::Kind Kind = DC->getDeclKind();
5878 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5879 Kind != Decl::LinkageSpec) {
5880 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5881 << FnDecl->getDeclName();
5882 return true;
5883 }
5884
5885 bool Valid = false;
5886
Alexis Hunt7dd26172010-04-07 23:11:06 +00005887 // template <char...> type operator "" name() is the only valid template
5888 // signature, and the only valid signature with no parameters.
5889 if (FnDecl->param_size() == 0) {
5890 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5891 // Must have only one template parameter
5892 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5893 if (Params->size() == 1) {
5894 NonTypeTemplateParmDecl *PmDecl =
5895 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005896
Alexis Hunt7dd26172010-04-07 23:11:06 +00005897 // The template parameter must be a char parameter pack.
5898 // FIXME: This test will always fail because non-type parameter packs
5899 // have not been implemented.
5900 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5901 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5902 Valid = true;
5903 }
5904 }
5905 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005906 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005907 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5908
Alexis Huntc88db062010-01-13 09:01:02 +00005909 QualType T = (*Param)->getType();
5910
Alexis Hunt079a6f72010-04-07 22:57:35 +00005911 // unsigned long long int, long double, and any character type are allowed
5912 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005913 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5914 Context.hasSameType(T, Context.LongDoubleTy) ||
5915 Context.hasSameType(T, Context.CharTy) ||
5916 Context.hasSameType(T, Context.WCharTy) ||
5917 Context.hasSameType(T, Context.Char16Ty) ||
5918 Context.hasSameType(T, Context.Char32Ty)) {
5919 if (++Param == FnDecl->param_end())
5920 Valid = true;
5921 goto FinishedParams;
5922 }
5923
Alexis Hunt079a6f72010-04-07 22:57:35 +00005924 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005925 const PointerType *PT = T->getAs<PointerType>();
5926 if (!PT)
5927 goto FinishedParams;
5928 T = PT->getPointeeType();
5929 if (!T.isConstQualified())
5930 goto FinishedParams;
5931 T = T.getUnqualifiedType();
5932
5933 // Move on to the second parameter;
5934 ++Param;
5935
5936 // If there is no second parameter, the first must be a const char *
5937 if (Param == FnDecl->param_end()) {
5938 if (Context.hasSameType(T, Context.CharTy))
5939 Valid = true;
5940 goto FinishedParams;
5941 }
5942
5943 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5944 // are allowed as the first parameter to a two-parameter function
5945 if (!(Context.hasSameType(T, Context.CharTy) ||
5946 Context.hasSameType(T, Context.WCharTy) ||
5947 Context.hasSameType(T, Context.Char16Ty) ||
5948 Context.hasSameType(T, Context.Char32Ty)))
5949 goto FinishedParams;
5950
5951 // The second and final parameter must be an std::size_t
5952 T = (*Param)->getType().getUnqualifiedType();
5953 if (Context.hasSameType(T, Context.getSizeType()) &&
5954 ++Param == FnDecl->param_end())
5955 Valid = true;
5956 }
5957
5958 // FIXME: This diagnostic is absolutely terrible.
5959FinishedParams:
5960 if (!Valid) {
5961 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5962 << FnDecl->getDeclName();
5963 return true;
5964 }
5965
5966 return false;
5967}
5968
Douglas Gregor07665a62009-01-05 19:45:36 +00005969/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5970/// linkage specification, including the language and (if present)
5971/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5972/// the location of the language string literal, which is provided
5973/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5974/// the '{' brace. Otherwise, this linkage specification does not
5975/// have any braces.
John McCall48871652010-08-21 09:40:31 +00005976Decl *Sema::ActOnStartLinkageSpecification(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00005977 SourceLocation ExternLoc,
5978 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00005979 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00005980 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,
6107 Loc, ExDeclType, 0);
6108 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}