blob: 223569d9d4f55d8c6e74bb4220c3ae2149a97c8b [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.
Steve Naroff08899ff2008-04-15 22:42:06 +000093 if (VDecl->isBlockVarDecl())
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).
Douglas Gregor85dabae2009-12-16 01:38:02 +0000128 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
129 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
130 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000131 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCalldadc5752010-08-24 06:29:42 +0000132 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +0000133 MultiExprArg(*this, &Arg, 1));
Eli Friedman5f101b92009-12-22 02:46:13 +0000134 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000135 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000136 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000137
Anders Carlsson6e997b22009-12-15 20:51:39 +0000138 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000139
Anders Carlssonc80a1272009-08-25 02:29:20 +0000140 // Okay: add the default argument to the parameter
141 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000142
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000143 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000144}
145
Chris Lattner58258242008-04-10 02:22:51 +0000146/// ActOnParamDefaultArgument - Check whether the default argument
147/// provided for a function parameter is well-formed. If so, attach it
148/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000149void
John McCall48871652010-08-21 09:40:31 +0000150Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000151 Expr *DefaultArg) {
152 if (!param || !DefaultArg)
Douglas Gregor71a57182009-06-22 23:20:33 +0000153 return;
Mike Stump11289f42009-09-09 15:08:12 +0000154
John McCall48871652010-08-21 09:40:31 +0000155 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000156 UnparsedDefaultArgLocs.erase(Param);
157
Chris Lattner199abbc2008-04-08 05:04:30 +0000158 // Default arguments are only permitted in C++
159 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000160 Diag(EqualLoc, diag::err_param_default_argument)
161 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000162 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000163 return;
164 }
165
Anders Carlssonf1c26952009-08-25 01:02:06 +0000166 // Check that the default argument is well-formed
John McCallb268a282010-08-23 23:25:46 +0000167 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
168 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlssonf1c26952009-08-25 01:02:06 +0000169 Param->setInvalidDecl();
170 return;
171 }
Mike Stump11289f42009-09-09 15:08:12 +0000172
John McCallb268a282010-08-23 23:25:46 +0000173 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000174}
175
Douglas Gregor58354032008-12-24 00:01:03 +0000176/// ActOnParamUnparsedDefaultArgument - We've seen a default
177/// argument for a function parameter, but we can't parse it yet
178/// because we're inside a class definition. Note that this default
179/// argument will be parsed later.
John McCall48871652010-08-21 09:40:31 +0000180void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000181 SourceLocation EqualLoc,
182 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000183 if (!param)
184 return;
Mike Stump11289f42009-09-09 15:08:12 +0000185
John McCall48871652010-08-21 09:40:31 +0000186 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor58354032008-12-24 00:01:03 +0000187 if (Param)
188 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000189
Anders Carlsson84613c42009-06-12 16:51:40 +0000190 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000191}
192
Douglas Gregor4d87df52008-12-16 21:30:33 +0000193/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
194/// the default argument for the parameter param failed.
John McCall48871652010-08-21 09:40:31 +0000195void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000196 if (!param)
197 return;
Mike Stump11289f42009-09-09 15:08:12 +0000198
John McCall48871652010-08-21 09:40:31 +0000199 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump11289f42009-09-09 15:08:12 +0000200
Anders Carlsson84613c42009-06-12 16:51:40 +0000201 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000202
Anders Carlsson84613c42009-06-12 16:51:40 +0000203 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000204}
205
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000206/// CheckExtraCXXDefaultArguments - Check for any extra default
207/// arguments in the declarator, which is not a function declaration
208/// or definition and therefore is not permitted to have default
209/// arguments. This routine should be invoked for every declarator
210/// that is not a function declaration or definition.
211void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
212 // C++ [dcl.fct.default]p3
213 // A default argument expression shall be specified only in the
214 // parameter-declaration-clause of a function declaration or in a
215 // template-parameter (14.1). It shall not be specified for a
216 // parameter pack. If it is specified in a
217 // parameter-declaration-clause, it shall not occur within a
218 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000219 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000220 DeclaratorChunk &chunk = D.getTypeObject(i);
221 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000222 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
223 ParmVarDecl *Param =
John McCall48871652010-08-21 09:40:31 +0000224 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor58354032008-12-24 00:01:03 +0000225 if (Param->hasUnparsedDefaultArg()) {
226 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000227 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
228 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
229 delete Toks;
230 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000231 } else if (Param->getDefaultArg()) {
232 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
233 << Param->getDefaultArg()->getSourceRange();
234 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000235 }
236 }
237 }
238 }
239}
240
Chris Lattner199abbc2008-04-08 05:04:30 +0000241// MergeCXXFunctionDecl - Merge two declarations of the same C++
242// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000243// type. Subroutine of MergeFunctionDecl. Returns true if there was an
244// error, false otherwise.
245bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
246 bool Invalid = false;
247
Chris Lattner199abbc2008-04-08 05:04:30 +0000248 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000249 // For non-template functions, default arguments can be added in
250 // later declarations of a function in the same
251 // scope. Declarations in different scopes have completely
252 // distinct sets of default arguments. That is, declarations in
253 // inner scopes do not acquire default arguments from
254 // declarations in outer scopes, and vice versa. In a given
255 // function declaration, all parameters subsequent to a
256 // parameter with a default argument shall have default
257 // arguments supplied in this or previous declarations. A
258 // default argument shall not be redefined by a later
259 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000260 //
261 // C++ [dcl.fct.default]p6:
262 // Except for member functions of class templates, the default arguments
263 // in a member function definition that appears outside of the class
264 // definition are added to the set of default arguments provided by the
265 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000266 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
267 ParmVarDecl *OldParam = Old->getParamDecl(p);
268 ParmVarDecl *NewParam = New->getParamDecl(p);
269
Douglas Gregorc732aba2009-09-11 18:44:32 +0000270 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor08dc5842010-01-13 00:12:48 +0000271 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
272 // hint here. Alternatively, we could walk the type-source information
273 // for NewParam to find the last source location in the type... but it
274 // isn't worth the effort right now. This is the kind of test case that
275 // is hard to get right:
276
277 // int f(int);
278 // void g(int (*fp)(int) = f);
279 // void g(int (*fp)(int) = &f);
Mike Stump11289f42009-09-09 15:08:12 +0000280 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000281 diag::err_param_default_argument_redefinition)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000282 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000283
284 // Look for the function declaration where the default argument was
285 // actually written, which may be a declaration prior to Old.
286 for (FunctionDecl *Older = Old->getPreviousDeclaration();
287 Older; Older = Older->getPreviousDeclaration()) {
288 if (!Older->getParamDecl(p)->hasDefaultArg())
289 break;
290
291 OldParam = Older->getParamDecl(p);
292 }
293
294 Diag(OldParam->getLocation(), diag::note_previous_definition)
295 << OldParam->getDefaultArgRange();
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000296 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000297 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000298 // Merge the old default argument into the new parameter.
299 // It's important to use getInit() here; getDefaultArg()
300 // strips off any top-level CXXExprWithTemporaries.
John McCallf3cd6652010-03-12 18:31:32 +0000301 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000302 if (OldParam->hasUninstantiatedDefaultArg())
303 NewParam->setUninstantiatedDefaultArg(
304 OldParam->getUninstantiatedDefaultArg());
305 else
John McCalle61b02b2010-05-04 01:53:42 +0000306 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000307 } else if (NewParam->hasDefaultArg()) {
308 if (New->getDescribedFunctionTemplate()) {
309 // Paragraph 4, quoted above, only applies to non-template functions.
310 Diag(NewParam->getLocation(),
311 diag::err_param_default_argument_template_redecl)
312 << NewParam->getDefaultArgRange();
313 Diag(Old->getLocation(), diag::note_template_prev_declaration)
314 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000315 } else if (New->getTemplateSpecializationKind()
316 != TSK_ImplicitInstantiation &&
317 New->getTemplateSpecializationKind() != TSK_Undeclared) {
318 // C++ [temp.expr.spec]p21:
319 // Default function arguments shall not be specified in a declaration
320 // or a definition for one of the following explicit specializations:
321 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000322 // - the explicit specialization of a member function template;
323 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000324 // template where the class template specialization to which the
325 // member function specialization belongs is implicitly
326 // instantiated.
327 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
328 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
329 << New->getDeclName()
330 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000331 } else if (New->getDeclContext()->isDependentContext()) {
332 // C++ [dcl.fct.default]p6 (DR217):
333 // Default arguments for a member function of a class template shall
334 // be specified on the initial declaration of the member function
335 // within the class template.
336 //
337 // Reading the tea leaves a bit in DR217 and its reference to DR205
338 // leads me to the conclusion that one cannot add default function
339 // arguments for an out-of-line definition of a member function of a
340 // dependent type.
341 int WhichKind = 2;
342 if (CXXRecordDecl *Record
343 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
344 if (Record->getDescribedClassTemplate())
345 WhichKind = 0;
346 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
347 WhichKind = 1;
348 else
349 WhichKind = 2;
350 }
351
352 Diag(NewParam->getLocation(),
353 diag::err_param_default_argument_member_template_redecl)
354 << WhichKind
355 << NewParam->getDefaultArgRange();
356 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000357 }
358 }
359
Douglas Gregorf40863c2010-02-12 07:32:17 +0000360 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000361 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000362
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000363 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000364}
365
366/// CheckCXXDefaultArguments - Verify that the default arguments for a
367/// function declaration are well-formed according to C++
368/// [dcl.fct.default].
369void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
370 unsigned NumParams = FD->getNumParams();
371 unsigned p;
372
373 // Find first parameter with a default argument
374 for (p = 0; p < NumParams; ++p) {
375 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000376 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000377 break;
378 }
379
380 // C++ [dcl.fct.default]p4:
381 // In a given function declaration, all parameters
382 // subsequent to a parameter with a default argument shall
383 // have default arguments supplied in this or previous
384 // declarations. A default argument shall not be redefined
385 // by a later declaration (not even to the same value).
386 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000387 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000388 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000389 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000390 if (Param->isInvalidDecl())
391 /* We already complained about this parameter. */;
392 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000393 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000394 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000395 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000396 else
Mike Stump11289f42009-09-09 15:08:12 +0000397 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000398 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000399
Chris Lattner199abbc2008-04-08 05:04:30 +0000400 LastMissingDefaultArg = p;
401 }
402 }
403
404 if (LastMissingDefaultArg > 0) {
405 // Some default arguments were missing. Clear out all of the
406 // default arguments up to (and including) the last missing
407 // default argument, so that we leave the function parameters
408 // in a semantically valid state.
409 for (p = 0; p <= LastMissingDefaultArg; ++p) {
410 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000411 if (Param->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000412 Param->setDefaultArg(0);
413 }
414 }
415 }
416}
Douglas Gregor556877c2008-04-13 21:30:24 +0000417
Douglas Gregor61956c42008-10-31 09:07:45 +0000418/// isCurrentClassName - Determine whether the identifier II is the
419/// name of the class type currently being defined. In the case of
420/// nested classes, this will only return true if II is the name of
421/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000422bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
423 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000424 assert(getLangOptions().CPlusPlus && "No class names in C!");
425
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000426 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000427 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000428 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000429 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
430 } else
431 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
432
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000433 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000434 return &II == CurDecl->getIdentifier();
435 else
436 return false;
437}
438
Mike Stump11289f42009-09-09 15:08:12 +0000439/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000440///
441/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
442/// and returns NULL otherwise.
443CXXBaseSpecifier *
444Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
445 SourceRange SpecifierRange,
446 bool Virtual, AccessSpecifier Access,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000447 TypeSourceInfo *TInfo) {
448 QualType BaseType = TInfo->getType();
449
Douglas Gregor463421d2009-03-03 04:44:36 +0000450 // C++ [class.union]p1:
451 // A union shall not have base classes.
452 if (Class->isUnion()) {
453 Diag(Class->getLocation(), diag::err_base_clause_on_union)
454 << SpecifierRange;
455 return 0;
456 }
457
458 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000459 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000460 Class->getTagKind() == TTK_Class,
461 Access, TInfo);
462
463 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor463421d2009-03-03 04:44:36 +0000464
465 // Base specifiers must be record types.
466 if (!BaseType->isRecordType()) {
467 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
468 return 0;
469 }
470
471 // C++ [class.union]p1:
472 // A union shall not be used as a base class.
473 if (BaseType->isUnionType()) {
474 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
475 return 0;
476 }
477
478 // C++ [class.derived]p2:
479 // The class-name in a base-specifier shall not be an incompletely
480 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000481 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000482 PDiag(diag::err_incomplete_base_class)
John McCall3696dcb2010-08-17 07:23:57 +0000483 << SpecifierRange)) {
484 Class->setInvalidDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000485 return 0;
John McCall3696dcb2010-08-17 07:23:57 +0000486 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000487
Eli Friedmanc96d4962009-08-15 21:55:26 +0000488 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000489 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000490 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000491 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000492 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000493 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
494 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000495
Alexis Hunt96d5c762009-11-21 08:43:09 +0000496 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
497 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
498 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregore7488b92009-12-01 16:58:18 +0000499 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
500 << BaseType;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000501 return 0;
502 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000503
Eli Friedman89c038e2009-12-05 23:03:49 +0000504 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
John McCall3696dcb2010-08-17 07:23:57 +0000505
506 if (BaseDecl->isInvalidDecl())
507 Class->setInvalidDecl();
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000508
509 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000510 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000511 Class->getTagKind() == TTK_Class,
512 Access, TInfo);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000513}
514
515void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
516 const CXXRecordDecl *BaseClass,
517 bool BaseIsVirtual) {
Eli Friedman89c038e2009-12-05 23:03:49 +0000518 // A class with a non-empty base class is not empty.
519 // FIXME: Standard ref?
520 if (!BaseClass->isEmpty())
521 Class->setEmpty(false);
522
523 // C++ [class.virtual]p1:
524 // A class that [...] inherits a virtual function is called a polymorphic
525 // class.
526 if (BaseClass->isPolymorphic())
527 Class->setPolymorphic(true);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000528
Douglas Gregor463421d2009-03-03 04:44:36 +0000529 // C++ [dcl.init.aggr]p1:
530 // An aggregate is [...] a class with [...] no base classes [...].
531 Class->setAggregate(false);
Eli Friedman89c038e2009-12-05 23:03:49 +0000532
533 // C++ [class]p4:
534 // A POD-struct is an aggregate class...
Douglas Gregor463421d2009-03-03 04:44:36 +0000535 Class->setPOD(false);
536
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000537 if (BaseIsVirtual) {
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000538 // C++ [class.ctor]p5:
539 // A constructor is trivial if its class has no virtual base classes.
540 Class->setHasTrivialConstructor(false);
Douglas Gregor8a273912009-07-22 18:25:24 +0000541
542 // C++ [class.copy]p6:
543 // A copy constructor is trivial if its class has no virtual base classes.
544 Class->setHasTrivialCopyConstructor(false);
545
546 // C++ [class.copy]p11:
547 // A copy assignment operator is trivial if its class has no virtual
548 // base classes.
549 Class->setHasTrivialCopyAssignment(false);
Eli Friedmanc96d4962009-08-15 21:55:26 +0000550
551 // C++0x [meta.unary.prop] is_empty:
552 // T is a class type, but not a union type, with ... no virtual base
553 // classes
554 Class->setEmpty(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000555 } else {
556 // C++ [class.ctor]p5:
Mike Stump11289f42009-09-09 15:08:12 +0000557 // A constructor is trivial if all the direct base classes of its
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000558 // class have trivial constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000559 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000560 Class->setHasTrivialConstructor(false);
561
562 // C++ [class.copy]p6:
563 // A copy constructor is trivial if all the direct base classes of its
564 // class have trivial copy constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000565 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000566 Class->setHasTrivialCopyConstructor(false);
567
568 // C++ [class.copy]p11:
569 // A copy assignment operator is trivial if all the direct base classes
570 // of its class have trivial copy assignment operators.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000571 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor8a273912009-07-22 18:25:24 +0000572 Class->setHasTrivialCopyAssignment(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000573 }
Anders Carlsson6dc35752009-04-17 02:34:54 +0000574
575 // C++ [class.ctor]p3:
576 // A destructor is trivial if all the direct base classes of its class
577 // have trivial destructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000578 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000579 Class->setHasTrivialDestructor(false);
Douglas Gregor463421d2009-03-03 04:44:36 +0000580}
581
Douglas Gregor556877c2008-04-13 21:30:24 +0000582/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
583/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +0000584/// example:
585/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000586/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump11289f42009-09-09 15:08:12 +0000587Sema::BaseResult
John McCall48871652010-08-21 09:40:31 +0000588Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000589 bool Virtual, AccessSpecifier Access,
John McCallba7bf592010-08-24 05:47:05 +0000590 ParsedType basetype, SourceLocation BaseLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000591 if (!classdecl)
592 return true;
593
Douglas Gregorc40290e2009-03-09 23:48:35 +0000594 AdjustDeclIfTemplate(classdecl);
John McCall48871652010-08-21 09:40:31 +0000595 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000596 if (!Class)
597 return true;
598
Nick Lewycky19b9f952010-07-26 16:56:01 +0000599 TypeSourceInfo *TInfo = 0;
600 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor463421d2009-03-03 04:44:36 +0000601 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000602 Virtual, Access, TInfo))
Douglas Gregor463421d2009-03-03 04:44:36 +0000603 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000604
Douglas Gregor463421d2009-03-03 04:44:36 +0000605 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000606}
Douglas Gregor556877c2008-04-13 21:30:24 +0000607
Douglas Gregor463421d2009-03-03 04:44:36 +0000608/// \brief Performs the actual work of attaching the given base class
609/// specifiers to a C++ class.
610bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
611 unsigned NumBases) {
612 if (NumBases == 0)
613 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +0000614
615 // Used to keep track of which base types we have already seen, so
616 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000617 // that the key is always the unqualified canonical type of the base
618 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000619 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
620
621 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000622 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000623 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000624 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000625 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000626 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000627 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian2792f302010-05-20 23:34:56 +0000628 if (!Class->hasObjectMember()) {
629 if (const RecordType *FDTTy =
630 NewBaseType.getTypePtr()->getAs<RecordType>())
631 if (FDTTy->getDecl()->hasObjectMember())
632 Class->setHasObjectMember(true);
633 }
634
Douglas Gregor29a92472008-10-22 17:49:05 +0000635 if (KnownBaseTypes[NewBaseType]) {
636 // C++ [class.mi]p3:
637 // A class shall not be specified as a direct base class of a
638 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000639 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000640 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000641 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000642 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000643
644 // Delete the duplicate base class specifier; we're going to
645 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000646 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000647
648 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000649 } else {
650 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000651 KnownBaseTypes[NewBaseType] = Bases[idx];
652 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000653 }
654 }
655
656 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000657 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000658
659 // Delete the remaining (good) base class specifiers, since their
660 // data has been copied into the CXXRecordDecl.
661 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000662 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000663
664 return Invalid;
665}
666
667/// ActOnBaseSpecifiers - Attach the given base specifiers to the
668/// class, after checking whether there are any duplicate base
669/// classes.
John McCall48871652010-08-21 09:40:31 +0000670void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000671 unsigned NumBases) {
672 if (!ClassDecl || !Bases || !NumBases)
673 return;
674
675 AdjustDeclIfTemplate(ClassDecl);
John McCall48871652010-08-21 09:40:31 +0000676 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor463421d2009-03-03 04:44:36 +0000677 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000678}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000679
John McCalle78aac42010-03-10 03:28:59 +0000680static CXXRecordDecl *GetClassForType(QualType T) {
681 if (const RecordType *RT = T->getAs<RecordType>())
682 return cast<CXXRecordDecl>(RT->getDecl());
683 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
684 return ICT->getDecl();
685 else
686 return 0;
687}
688
Douglas Gregor36d1b142009-10-06 17:59:45 +0000689/// \brief Determine whether the type \p Derived is a C++ class that is
690/// derived from the type \p Base.
691bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
692 if (!getLangOptions().CPlusPlus)
693 return false;
John McCalle78aac42010-03-10 03:28:59 +0000694
695 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
696 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000697 return false;
698
John McCalle78aac42010-03-10 03:28:59 +0000699 CXXRecordDecl *BaseRD = GetClassForType(Base);
700 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000701 return false;
702
John McCall67da35c2010-02-04 22:26:26 +0000703 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
704 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000705}
706
707/// \brief Determine whether the type \p Derived is a C++ class that is
708/// derived from the type \p Base.
709bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
710 if (!getLangOptions().CPlusPlus)
711 return false;
712
John McCalle78aac42010-03-10 03:28:59 +0000713 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
714 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000715 return false;
716
John McCalle78aac42010-03-10 03:28:59 +0000717 CXXRecordDecl *BaseRD = GetClassForType(Base);
718 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000719 return false;
720
Douglas Gregor36d1b142009-10-06 17:59:45 +0000721 return DerivedRD->isDerivedFrom(BaseRD, Paths);
722}
723
Anders Carlssona70cff62010-04-24 19:06:50 +0000724void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +0000725 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000726 assert(BasePathArray.empty() && "Base path array must be empty!");
727 assert(Paths.isRecordingPaths() && "Must record paths!");
728
729 const CXXBasePath &Path = Paths.front();
730
731 // We first go backward and check if we have a virtual base.
732 // FIXME: It would be better if CXXBasePath had the base specifier for
733 // the nearest virtual base.
734 unsigned Start = 0;
735 for (unsigned I = Path.size(); I != 0; --I) {
736 if (Path[I - 1].Base->isVirtual()) {
737 Start = I - 1;
738 break;
739 }
740 }
741
742 // Now add all bases.
743 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +0000744 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +0000745}
746
Douglas Gregor88d292c2010-05-13 16:44:06 +0000747/// \brief Determine whether the given base path includes a virtual
748/// base class.
John McCallcf142162010-08-07 06:22:56 +0000749bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
750 for (CXXCastPath::const_iterator B = BasePath.begin(),
751 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000752 B != BEnd; ++B)
753 if ((*B)->isVirtual())
754 return true;
755
756 return false;
757}
758
Douglas Gregor36d1b142009-10-06 17:59:45 +0000759/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
760/// conversion (where Derived and Base are class types) is
761/// well-formed, meaning that the conversion is unambiguous (and
762/// that all of the base classes are accessible). Returns true
763/// and emits a diagnostic if the code is ill-formed, returns false
764/// otherwise. Loc is the location where this routine should point to
765/// if there is an error, and Range is the source range to highlight
766/// if there is an error.
767bool
768Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000769 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000770 unsigned AmbigiousBaseConvID,
771 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000772 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +0000773 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000774 // First, determine whether the path from Derived to Base is
775 // ambiguous. This is slightly more expensive than checking whether
776 // the Derived to Base conversion exists, because here we need to
777 // explore multiple paths to determine if there is an ambiguity.
778 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
779 /*DetectVirtual=*/false);
780 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
781 assert(DerivationOkay &&
782 "Can only be used with a derived-to-base conversion");
783 (void)DerivationOkay;
784
785 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000786 if (InaccessibleBaseID) {
787 // Check that the base class can be accessed.
788 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
789 InaccessibleBaseID)) {
790 case AR_inaccessible:
791 return true;
792 case AR_accessible:
793 case AR_dependent:
794 case AR_delayed:
795 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000796 }
John McCall5b0829a2010-02-10 09:31:12 +0000797 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000798
799 // Build a base path if necessary.
800 if (BasePath)
801 BuildBasePathArray(Paths, *BasePath);
802 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000803 }
804
805 // We know that the derived-to-base conversion is ambiguous, and
806 // we're going to produce a diagnostic. Perform the derived-to-base
807 // search just one more time to compute all of the possible paths so
808 // that we can print them out. This is more expensive than any of
809 // the previous derived-to-base checks we've done, but at this point
810 // performance isn't as much of an issue.
811 Paths.clear();
812 Paths.setRecordingPaths(true);
813 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
814 assert(StillOkay && "Can only be used with a derived-to-base conversion");
815 (void)StillOkay;
816
817 // Build up a textual representation of the ambiguous paths, e.g.,
818 // D -> B -> A, that will be used to illustrate the ambiguous
819 // conversions in the diagnostic. We only print one of the paths
820 // to each base class subobject.
821 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
822
823 Diag(Loc, AmbigiousBaseConvID)
824 << Derived << Base << PathDisplayStr << Range << Name;
825 return true;
826}
827
828bool
829Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000830 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +0000831 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000832 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000833 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000834 IgnoreAccess ? 0
835 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000836 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000837 Loc, Range, DeclarationName(),
838 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000839}
840
841
842/// @brief Builds a string representing ambiguous paths from a
843/// specific derived class to different subobjects of the same base
844/// class.
845///
846/// This function builds a string that can be used in error messages
847/// to show the different paths that one can take through the
848/// inheritance hierarchy to go from the derived class to different
849/// subobjects of a base class. The result looks something like this:
850/// @code
851/// struct D -> struct B -> struct A
852/// struct D -> struct C -> struct A
853/// @endcode
854std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
855 std::string PathDisplayStr;
856 std::set<unsigned> DisplayedPaths;
857 for (CXXBasePaths::paths_iterator Path = Paths.begin();
858 Path != Paths.end(); ++Path) {
859 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
860 // We haven't displayed a path to this particular base
861 // class subobject yet.
862 PathDisplayStr += "\n ";
863 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
864 for (CXXBasePath::const_iterator Element = Path->begin();
865 Element != Path->end(); ++Element)
866 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
867 }
868 }
869
870 return PathDisplayStr;
871}
872
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000873//===----------------------------------------------------------------------===//
874// C++ class member Handling
875//===----------------------------------------------------------------------===//
876
Abramo Bagnarad7340582010-06-05 05:09:32 +0000877/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCall48871652010-08-21 09:40:31 +0000878Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
879 SourceLocation ASLoc,
880 SourceLocation ColonLoc) {
Abramo Bagnarad7340582010-06-05 05:09:32 +0000881 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCall48871652010-08-21 09:40:31 +0000882 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnarad7340582010-06-05 05:09:32 +0000883 ASLoc, ColonLoc);
884 CurContext->addHiddenDecl(ASDecl);
John McCall48871652010-08-21 09:40:31 +0000885 return ASDecl;
Abramo Bagnarad7340582010-06-05 05:09:32 +0000886}
887
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000888/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
889/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
890/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000891/// any.
John McCall48871652010-08-21 09:40:31 +0000892Decl *
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000893Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000894 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000895 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
896 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000897 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000898 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
899 DeclarationName Name = NameInfo.getName();
900 SourceLocation Loc = NameInfo.getLoc();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000901 Expr *BitWidth = static_cast<Expr*>(BW);
902 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000903
John McCallb1cd7da2010-06-04 08:34:12 +0000904 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +0000905 assert(!DS.isFriendSpecified());
906
John McCallb1cd7da2010-06-04 08:34:12 +0000907 bool isFunc = false;
908 if (D.isFunctionDeclarator())
909 isFunc = true;
910 else if (D.getNumTypeObjects() == 0 &&
911 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
John McCallba7bf592010-08-24 05:47:05 +0000912 QualType TDType = GetTypeFromParser(DS.getRepAsType());
John McCallb1cd7da2010-06-04 08:34:12 +0000913 isFunc = TDType->isFunctionType();
914 }
915
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000916 // C++ 9.2p6: A member shall not be declared to have automatic storage
917 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000918 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
919 // data members and cannot be applied to names declared const or static,
920 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000921 switch (DS.getStorageClassSpec()) {
922 case DeclSpec::SCS_unspecified:
923 case DeclSpec::SCS_typedef:
924 case DeclSpec::SCS_static:
925 // FALL THROUGH.
926 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000927 case DeclSpec::SCS_mutable:
928 if (isFunc) {
929 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000930 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000931 else
Chris Lattner3b054132008-11-19 05:08:23 +0000932 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000933
Sebastian Redl8071edb2008-11-17 23:24:37 +0000934 // FIXME: It would be nicer if the keyword was ignored only for this
935 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000936 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000937 }
938 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000939 default:
940 if (DS.getStorageClassSpecLoc().isValid())
941 Diag(DS.getStorageClassSpecLoc(),
942 diag::err_storageclass_invalid_for_member);
943 else
944 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
945 D.getMutableDeclSpec().ClearStorageClassSpecs();
946 }
947
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000948 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
949 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000950 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000951
952 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000953 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000954 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000955 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
956 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000957 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000958 } else {
John McCall48871652010-08-21 09:40:31 +0000959 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner97e277e2009-03-05 23:03:49 +0000960 if (!Member) {
961 if (BitWidth) DeleteExpr(BitWidth);
John McCall48871652010-08-21 09:40:31 +0000962 return 0;
Chris Lattner97e277e2009-03-05 23:03:49 +0000963 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000964
965 // Non-instance-fields can't have a bitfield.
966 if (BitWidth) {
967 if (Member->isInvalidDecl()) {
968 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000969 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000970 // C++ 9.6p3: A bit-field shall not be a static member.
971 // "static member 'A' cannot be a bit-field"
972 Diag(Loc, diag::err_static_not_bitfield)
973 << Name << BitWidth->getSourceRange();
974 } else if (isa<TypedefDecl>(Member)) {
975 // "typedef member 'x' cannot be a bit-field"
976 Diag(Loc, diag::err_typedef_not_bitfield)
977 << Name << BitWidth->getSourceRange();
978 } else {
979 // A function typedef ("typedef int f(); f a;").
980 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
981 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000982 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000983 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000984 }
Mike Stump11289f42009-09-09 15:08:12 +0000985
Chris Lattnerd26760a2009-03-05 23:01:03 +0000986 DeleteExpr(BitWidth);
987 BitWidth = 0;
988 Member->setInvalidDecl();
989 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000990
991 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000992
Douglas Gregor3447e762009-08-20 22:52:58 +0000993 // If we have declared a member function template, set the access of the
994 // templated declaration as well.
995 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
996 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +0000997 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000998
Douglas Gregor92751d42008-11-17 22:58:34 +0000999 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001000
Douglas Gregor0c880302009-03-11 23:00:04 +00001001 if (Init)
John McCallb268a282010-08-23 23:25:46 +00001002 AddInitializerToDecl(Member, Init, false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001003 if (Deleted) // FIXME: Source location is not very good.
John McCall48871652010-08-21 09:40:31 +00001004 SetDeclDeleted(Member, D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001005
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001006 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +00001007 FieldCollector->Add(cast<FieldDecl>(Member));
John McCall48871652010-08-21 09:40:31 +00001008 return 0;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001009 }
John McCall48871652010-08-21 09:40:31 +00001010 return Member;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001011}
1012
Douglas Gregor15e77a22009-12-31 09:10:24 +00001013/// \brief Find the direct and/or virtual base specifiers that
1014/// correspond to the given base type, for use in base initialization
1015/// within a constructor.
1016static bool FindBaseInitializer(Sema &SemaRef,
1017 CXXRecordDecl *ClassDecl,
1018 QualType BaseType,
1019 const CXXBaseSpecifier *&DirectBaseSpec,
1020 const CXXBaseSpecifier *&VirtualBaseSpec) {
1021 // First, check for a direct base class.
1022 DirectBaseSpec = 0;
1023 for (CXXRecordDecl::base_class_const_iterator Base
1024 = ClassDecl->bases_begin();
1025 Base != ClassDecl->bases_end(); ++Base) {
1026 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1027 // We found a direct base of this type. That's what we're
1028 // initializing.
1029 DirectBaseSpec = &*Base;
1030 break;
1031 }
1032 }
1033
1034 // Check for a virtual base class.
1035 // FIXME: We might be able to short-circuit this if we know in advance that
1036 // there are no virtual bases.
1037 VirtualBaseSpec = 0;
1038 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1039 // We haven't found a base yet; search the class hierarchy for a
1040 // virtual base class.
1041 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1042 /*DetectVirtual=*/false);
1043 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1044 BaseType, Paths)) {
1045 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1046 Path != Paths.end(); ++Path) {
1047 if (Path->back().Base->isVirtual()) {
1048 VirtualBaseSpec = Path->back().Base;
1049 break;
1050 }
1051 }
1052 }
1053 }
1054
1055 return DirectBaseSpec || VirtualBaseSpec;
1056}
1057
Douglas Gregore8381c02008-11-05 04:29:56 +00001058/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +00001059Sema::MemInitResult
John McCall48871652010-08-21 09:40:31 +00001060Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001061 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001062 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001063 IdentifierInfo *MemberOrBase,
John McCallba7bf592010-08-24 05:47:05 +00001064 ParsedType TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001065 SourceLocation IdLoc,
1066 SourceLocation LParenLoc,
1067 ExprTy **Args, unsigned NumArgs,
1068 SourceLocation *CommaLocs,
1069 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001070 if (!ConstructorD)
1071 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001072
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001073 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001074
1075 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00001076 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregore8381c02008-11-05 04:29:56 +00001077 if (!Constructor) {
1078 // The user wrote a constructor initializer on a function that is
1079 // not a C++ constructor. Ignore the error for now, because we may
1080 // have more member initializers coming; we'll diagnose it just
1081 // once in ActOnMemInitializers.
1082 return true;
1083 }
1084
1085 CXXRecordDecl *ClassDecl = Constructor->getParent();
1086
1087 // C++ [class.base.init]p2:
1088 // Names in a mem-initializer-id are looked up in the scope of the
1089 // constructor’s class and, if not found in that scope, are looked
1090 // up in the scope containing the constructor’s
1091 // definition. [Note: if the constructor’s class contains a member
1092 // with the same name as a direct or virtual base class of the
1093 // class, a mem-initializer-id naming the member or base class and
1094 // composed of a single identifier refers to the class member. A
1095 // mem-initializer-id for the hidden base class may be specified
1096 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001097 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001098 // Look for a member, first.
1099 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001100 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001101 = ClassDecl->lookup(MemberOrBase);
1102 if (Result.first != Result.second)
1103 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001104
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001105 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001106
Eli Friedman8e1433b2009-07-29 19:44:27 +00001107 if (Member)
1108 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001109 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001110 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001111 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001112 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001113 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001114
1115 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001116 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001117 } else {
1118 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1119 LookupParsedName(R, S, &SS);
1120
1121 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1122 if (!TyD) {
1123 if (R.isAmbiguous()) return true;
1124
John McCallda6841b2010-04-09 19:01:14 +00001125 // We don't want access-control diagnostics here.
1126 R.suppressDiagnostics();
1127
Douglas Gregora3b624a2010-01-19 06:46:48 +00001128 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1129 bool NotUnknownSpecialization = false;
1130 DeclContext *DC = computeDeclContext(SS, false);
1131 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1132 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1133
1134 if (!NotUnknownSpecialization) {
1135 // When the scope specifier can refer to a member of an unknown
1136 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001137 BaseType = CheckTypenameType(ETK_None,
1138 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00001139 *MemberOrBase, SourceLocation(),
1140 SS.getRange(), IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001141 if (BaseType.isNull())
1142 return true;
1143
Douglas Gregora3b624a2010-01-19 06:46:48 +00001144 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00001145 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001146 }
1147 }
1148
Douglas Gregor15e77a22009-12-31 09:10:24 +00001149 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001150 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001151 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1152 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001153 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1154 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1155 // We have found a non-static data member with a similar
1156 // name to what was typed; complain and initialize that
1157 // member.
1158 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1159 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001160 << FixItHint::CreateReplacement(R.getNameLoc(),
1161 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001162 Diag(Member->getLocation(), diag::note_previous_decl)
1163 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001164
1165 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1166 LParenLoc, RParenLoc);
1167 }
1168 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1169 const CXXBaseSpecifier *DirectBaseSpec;
1170 const CXXBaseSpecifier *VirtualBaseSpec;
1171 if (FindBaseInitializer(*this, ClassDecl,
1172 Context.getTypeDeclType(Type),
1173 DirectBaseSpec, VirtualBaseSpec)) {
1174 // We have found a direct or virtual base class with a
1175 // similar name to what was typed; complain and initialize
1176 // that base class.
1177 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1178 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001179 << FixItHint::CreateReplacement(R.getNameLoc(),
1180 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001181
1182 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1183 : VirtualBaseSpec;
1184 Diag(BaseSpec->getSourceRange().getBegin(),
1185 diag::note_base_class_specified_here)
1186 << BaseSpec->getType()
1187 << BaseSpec->getSourceRange();
1188
Douglas Gregor15e77a22009-12-31 09:10:24 +00001189 TyD = Type;
1190 }
1191 }
1192 }
1193
Douglas Gregora3b624a2010-01-19 06:46:48 +00001194 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001195 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1196 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1197 return true;
1198 }
John McCallb5a0d312009-12-21 10:41:20 +00001199 }
1200
Douglas Gregora3b624a2010-01-19 06:46:48 +00001201 if (BaseType.isNull()) {
1202 BaseType = Context.getTypeDeclType(TyD);
1203 if (SS.isSet()) {
1204 NestedNameSpecifier *Qualifier =
1205 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001206
Douglas Gregora3b624a2010-01-19 06:46:48 +00001207 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001208 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001209 }
John McCallb5a0d312009-12-21 10:41:20 +00001210 }
1211 }
Mike Stump11289f42009-09-09 15:08:12 +00001212
John McCallbcd03502009-12-07 02:54:59 +00001213 if (!TInfo)
1214 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001215
John McCallbcd03502009-12-07 02:54:59 +00001216 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001217 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001218}
1219
John McCalle22a04a2009-11-04 23:02:40 +00001220/// Checks an initializer expression for use of uninitialized fields, such as
1221/// containing the field that is being initialized. Returns true if there is an
1222/// uninitialized field was used an updates the SourceLocation parameter; false
1223/// otherwise.
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001224static bool InitExprContainsUninitializedFields(const Stmt *S,
1225 const FieldDecl *LhsField,
1226 SourceLocation *L) {
1227 if (isa<CallExpr>(S)) {
1228 // Do not descend into function calls or constructors, as the use
1229 // of an uninitialized field may be valid. One would have to inspect
1230 // the contents of the function/ctor to determine if it is safe or not.
1231 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1232 // may be safe, depending on what the function/ctor does.
1233 return false;
1234 }
1235 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1236 const NamedDecl *RhsField = ME->getMemberDecl();
John McCalle22a04a2009-11-04 23:02:40 +00001237 if (RhsField == LhsField) {
1238 // Initializing a field with itself. Throw a warning.
1239 // But wait; there are exceptions!
1240 // Exception #1: The field may not belong to this record.
1241 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001242 const Expr *base = ME->getBase();
John McCalle22a04a2009-11-04 23:02:40 +00001243 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1244 // Even though the field matches, it does not belong to this record.
1245 return false;
1246 }
1247 // None of the exceptions triggered; return true to indicate an
1248 // uninitialized field was used.
1249 *L = ME->getMemberLoc();
1250 return true;
1251 }
1252 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001253 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1254 it != e; ++it) {
1255 if (!*it) {
1256 // An expression such as 'member(arg ?: "")' may trigger this.
John McCalle22a04a2009-11-04 23:02:40 +00001257 continue;
1258 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001259 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1260 return true;
John McCalle22a04a2009-11-04 23:02:40 +00001261 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001262 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001263}
1264
Eli Friedman8e1433b2009-07-29 19:44:27 +00001265Sema::MemInitResult
1266Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1267 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001268 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001269 SourceLocation RParenLoc) {
John McCalle22a04a2009-11-04 23:02:40 +00001270 // Diagnose value-uses of fields to initialize themselves, e.g.
1271 // foo(foo)
1272 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001273 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001274 for (unsigned i = 0; i < NumArgs; ++i) {
1275 SourceLocation L;
1276 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1277 // FIXME: Return true in the case when other fields are used before being
1278 // uninitialized. For example, let this field be the i'th field. When
1279 // initializing the i'th field, throw a warning if any of the >= i'th
1280 // fields are used, as they are not yet initialized.
1281 // Right now we are only handling the case where the i'th field uses
1282 // itself in its initializer.
1283 Diag(L, diag::warn_field_is_uninit);
1284 }
1285 }
1286
Eli Friedman8e1433b2009-07-29 19:44:27 +00001287 bool HasDependentArg = false;
1288 for (unsigned i = 0; i < NumArgs; i++)
1289 HasDependentArg |= Args[i]->isTypeDependent();
1290
Eli Friedman9255adf2010-07-24 21:19:15 +00001291 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001292 // Can't check initialization for a member of dependent type or when
1293 // any of the arguments are type-dependent expressions.
John McCallb268a282010-08-23 23:25:46 +00001294 Expr *Init
1295 = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1296 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001297
1298 // Erase any temporaries within this evaluation context; we're not
1299 // going to track them in the AST, since we'll be rebuilding the
1300 // ASTs during template instantiation.
1301 ExprTemporaries.erase(
1302 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1303 ExprTemporaries.end());
1304
1305 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1306 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001307 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001308 RParenLoc);
1309
Douglas Gregore8381c02008-11-05 04:29:56 +00001310 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001311
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001312 if (Member->isInvalidDecl())
1313 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001314
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001315 // Initialize the member.
1316 InitializedEntity MemberEntity =
1317 InitializedEntity::InitializeMember(Member, 0);
1318 InitializationKind Kind =
1319 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1320
1321 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1322
John McCalldadc5752010-08-24 06:29:42 +00001323 ExprResult MemberInit =
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001324 InitSeq.Perform(*this, MemberEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001325 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001326 if (MemberInit.isInvalid())
1327 return true;
1328
1329 // C++0x [class.base.init]p7:
1330 // The initialization of each base and member constitutes a
1331 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001332 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001333 if (MemberInit.isInvalid())
1334 return true;
1335
1336 // If we are in a dependent context, template instantiation will
1337 // perform this type-checking again. Just save the arguments that we
1338 // received in a ParenListExpr.
1339 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1340 // of the information that we have about the member
1341 // initializer. However, deconstructing the ASTs is a dicey process,
1342 // and this approach is far more likely to get the corner cases right.
1343 if (CurContext->isDependentContext()) {
1344 // Bump the reference count of all of the arguments.
1345 for (unsigned I = 0; I != NumArgs; ++I)
1346 Args[I]->Retain();
1347
John McCallb268a282010-08-23 23:25:46 +00001348 Expr *Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1349 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001350 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1351 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001352 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001353 RParenLoc);
1354 }
1355
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001356 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001357 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001358 MemberInit.get(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001359 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001360}
1361
1362Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001363Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001364 Expr **Args, unsigned NumArgs,
1365 SourceLocation LParenLoc, SourceLocation RParenLoc,
1366 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001367 bool HasDependentArg = false;
1368 for (unsigned i = 0; i < NumArgs; i++)
1369 HasDependentArg |= Args[i]->isTypeDependent();
1370
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001371 SourceLocation BaseLoc
1372 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1373
1374 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1375 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1376 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1377
1378 // C++ [class.base.init]p2:
1379 // [...] Unless the mem-initializer-id names a nonstatic data
1380 // member of the constructor’s class or a direct or virtual base
1381 // of that class, the mem-initializer is ill-formed. A
1382 // mem-initializer-list can initialize a base class using any
1383 // name that denotes that base class type.
1384 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1385
1386 // Check for direct and virtual base classes.
1387 const CXXBaseSpecifier *DirectBaseSpec = 0;
1388 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1389 if (!Dependent) {
1390 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1391 VirtualBaseSpec);
1392
1393 // C++ [base.class.init]p2:
1394 // Unless the mem-initializer-id names a nonstatic data member of the
1395 // constructor's class or a direct or virtual base of that class, the
1396 // mem-initializer is ill-formed.
1397 if (!DirectBaseSpec && !VirtualBaseSpec) {
1398 // If the class has any dependent bases, then it's possible that
1399 // one of those types will resolve to the same type as
1400 // BaseType. Therefore, just treat this as a dependent base
1401 // class initialization. FIXME: Should we try to check the
1402 // initialization anyway? It seems odd.
1403 if (ClassDecl->hasAnyDependentBases())
1404 Dependent = true;
1405 else
1406 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1407 << BaseType << Context.getTypeDeclType(ClassDecl)
1408 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1409 }
1410 }
1411
1412 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001413 // Can't check initialization for a base of dependent type or when
1414 // any of the arguments are type-dependent expressions.
John McCalldadc5752010-08-24 06:29:42 +00001415 ExprResult BaseInit
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001416 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1417 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001418
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001419 // Erase any temporaries within this evaluation context; we're not
1420 // going to track them in the AST, since we'll be rebuilding the
1421 // ASTs during template instantiation.
1422 ExprTemporaries.erase(
1423 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1424 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001425
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001426 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001427 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001428 LParenLoc,
1429 BaseInit.takeAs<Expr>(),
1430 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001431 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001432
1433 // C++ [base.class.init]p2:
1434 // If a mem-initializer-id is ambiguous because it designates both
1435 // a direct non-virtual base class and an inherited virtual base
1436 // class, the mem-initializer is ill-formed.
1437 if (DirectBaseSpec && VirtualBaseSpec)
1438 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001439 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001440
1441 CXXBaseSpecifier *BaseSpec
1442 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1443 if (!BaseSpec)
1444 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1445
1446 // Initialize the base.
1447 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001448 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001449 InitializationKind Kind =
1450 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1451
1452 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1453
John McCalldadc5752010-08-24 06:29:42 +00001454 ExprResult BaseInit =
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001455 InitSeq.Perform(*this, BaseEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001456 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001457 if (BaseInit.isInvalid())
1458 return true;
1459
1460 // C++0x [class.base.init]p7:
1461 // The initialization of each base and member constitutes a
1462 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001463 BaseInit = MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001464 if (BaseInit.isInvalid())
1465 return true;
1466
1467 // If we are in a dependent context, template instantiation will
1468 // perform this type-checking again. Just save the arguments that we
1469 // received in a ParenListExpr.
1470 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1471 // of the information that we have about the base
1472 // initializer. However, deconstructing the ASTs is a dicey process,
1473 // and this approach is far more likely to get the corner cases right.
1474 if (CurContext->isDependentContext()) {
1475 // Bump the reference count of all of the arguments.
1476 for (unsigned I = 0; I != NumArgs; ++I)
1477 Args[I]->Retain();
1478
John McCalldadc5752010-08-24 06:29:42 +00001479 ExprResult Init
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001480 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1481 RParenLoc));
1482 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001483 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001484 LParenLoc,
1485 Init.takeAs<Expr>(),
1486 RParenLoc);
1487 }
1488
1489 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001490 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001491 LParenLoc,
1492 BaseInit.takeAs<Expr>(),
1493 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001494}
1495
Anders Carlsson1b00e242010-04-23 03:10:23 +00001496/// ImplicitInitializerKind - How an implicit base or member initializer should
1497/// initialize its base or member.
1498enum ImplicitInitializerKind {
1499 IIK_Default,
1500 IIK_Copy,
1501 IIK_Move
1502};
1503
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001504static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001505BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001506 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001507 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001508 bool IsInheritedVirtualBase,
1509 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001510 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001511 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1512 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001513
John McCalldadc5752010-08-24 06:29:42 +00001514 ExprResult BaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001515
1516 switch (ImplicitInitKind) {
1517 case IIK_Default: {
1518 InitializationKind InitKind
1519 = InitializationKind::CreateDefault(Constructor->getLocation());
1520 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1521 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1522 Sema::MultiExprArg(SemaRef, 0, 0));
1523 break;
1524 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001525
Anders Carlsson1b00e242010-04-23 03:10:23 +00001526 case IIK_Copy: {
1527 ParmVarDecl *Param = Constructor->getParamDecl(0);
1528 QualType ParamType = Param->getType().getNonReferenceType();
1529
1530 Expr *CopyCtorArg =
1531 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001532 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001533
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001534 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001535 QualType ArgTy =
1536 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1537 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001538
1539 CXXCastPath BasePath;
1540 BasePath.push_back(BaseSpec);
Sebastian Redlc57d34b2010-07-20 04:20:21 +00001541 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
John McCalle3027922010-08-25 11:45:40 +00001542 CK_UncheckedDerivedToBase,
John McCall2536c6d2010-08-25 10:28:54 +00001543 VK_LValue, &BasePath);
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001544
Anders Carlsson1b00e242010-04-23 03:10:23 +00001545 InitializationKind InitKind
1546 = InitializationKind::CreateDirect(Constructor->getLocation(),
1547 SourceLocation(), SourceLocation());
1548 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1549 &CopyCtorArg, 1);
1550 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1551 Sema::MultiExprArg(SemaRef,
John McCall37ad5512010-08-23 06:44:23 +00001552 &CopyCtorArg, 1));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001553 break;
1554 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001555
Anders Carlsson1b00e242010-04-23 03:10:23 +00001556 case IIK_Move:
1557 assert(false && "Unhandled initializer kind!");
1558 }
John McCallb268a282010-08-23 23:25:46 +00001559
1560 if (BaseInit.isInvalid())
1561 return true;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001562
John McCallb268a282010-08-23 23:25:46 +00001563 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001564 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001565 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001566
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001567 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001568 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1569 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1570 SourceLocation()),
1571 BaseSpec->isVirtual(),
1572 SourceLocation(),
1573 BaseInit.takeAs<Expr>(),
1574 SourceLocation());
1575
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001576 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001577}
1578
Anders Carlsson3c1db572010-04-23 02:15:47 +00001579static bool
1580BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001581 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001582 FieldDecl *Field,
1583 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001584 if (Field->isInvalidDecl())
1585 return true;
1586
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001587 SourceLocation Loc = Constructor->getLocation();
1588
Anders Carlsson423f5d82010-04-23 16:04:08 +00001589 if (ImplicitInitKind == IIK_Copy) {
1590 ParmVarDecl *Param = Constructor->getParamDecl(0);
1591 QualType ParamType = Param->getType().getNonReferenceType();
1592
1593 Expr *MemberExprBase =
1594 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001595 Loc, ParamType, 0);
1596
1597 // Build a reference to this field within the parameter.
1598 CXXScopeSpec SS;
1599 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1600 Sema::LookupMemberName);
1601 MemberLookup.addDecl(Field, AS_public);
1602 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00001603 ExprResult CopyCtorArg
John McCallb268a282010-08-23 23:25:46 +00001604 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001605 ParamType, Loc,
1606 /*IsArrow=*/false,
1607 SS,
1608 /*FirstQualifierInScope=*/0,
1609 MemberLookup,
1610 /*TemplateArgs=*/0);
1611 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001612 return true;
1613
Douglas Gregor94f9a482010-05-05 05:51:00 +00001614 // When the field we are copying is an array, create index variables for
1615 // each dimension of the array. We use these index variables to subscript
1616 // the source array, and other clients (e.g., CodeGen) will perform the
1617 // necessary iteration with these index variables.
1618 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1619 QualType BaseType = Field->getType();
1620 QualType SizeType = SemaRef.Context.getSizeType();
1621 while (const ConstantArrayType *Array
1622 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1623 // Create the iteration variable for this array index.
1624 IdentifierInfo *IterationVarName = 0;
1625 {
1626 llvm::SmallString<8> Str;
1627 llvm::raw_svector_ostream OS(Str);
1628 OS << "__i" << IndexVariables.size();
1629 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1630 }
1631 VarDecl *IterationVar
1632 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1633 IterationVarName, SizeType,
1634 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00001635 SC_None, SC_None);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001636 IndexVariables.push_back(IterationVar);
1637
1638 // Create a reference to the iteration variable.
John McCalldadc5752010-08-24 06:29:42 +00001639 ExprResult IterationVarRef
Douglas Gregor94f9a482010-05-05 05:51:00 +00001640 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1641 assert(!IterationVarRef.isInvalid() &&
1642 "Reference to invented variable cannot fail!");
1643
1644 // Subscript the array with this iteration variable.
John McCallb268a282010-08-23 23:25:46 +00001645 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001646 Loc,
John McCallb268a282010-08-23 23:25:46 +00001647 IterationVarRef.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001648 Loc);
1649 if (CopyCtorArg.isInvalid())
1650 return true;
1651
1652 BaseType = Array->getElementType();
1653 }
1654
1655 // Construct the entity that we will be initializing. For an array, this
1656 // will be first element in the array, which may require several levels
1657 // of array-subscript entities.
1658 llvm::SmallVector<InitializedEntity, 4> Entities;
1659 Entities.reserve(1 + IndexVariables.size());
1660 Entities.push_back(InitializedEntity::InitializeMember(Field));
1661 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1662 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1663 0,
1664 Entities.back()));
1665
1666 // Direct-initialize to use the copy constructor.
1667 InitializationKind InitKind =
1668 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1669
1670 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1671 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1672 &CopyCtorArgE, 1);
1673
John McCalldadc5752010-08-24 06:29:42 +00001674 ExprResult MemberInit
Douglas Gregor94f9a482010-05-05 05:51:00 +00001675 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCall37ad5512010-08-23 06:44:23 +00001676 Sema::MultiExprArg(SemaRef, &CopyCtorArgE, 1));
John McCallb268a282010-08-23 23:25:46 +00001677 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor94f9a482010-05-05 05:51:00 +00001678 if (MemberInit.isInvalid())
1679 return true;
1680
1681 CXXMemberInit
1682 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1683 MemberInit.takeAs<Expr>(), Loc,
1684 IndexVariables.data(),
1685 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001686 return false;
1687 }
1688
Anders Carlsson423f5d82010-04-23 16:04:08 +00001689 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1690
Anders Carlsson3c1db572010-04-23 02:15:47 +00001691 QualType FieldBaseElementType =
1692 SemaRef.Context.getBaseElementType(Field->getType());
1693
Anders Carlsson3c1db572010-04-23 02:15:47 +00001694 if (FieldBaseElementType->isRecordType()) {
1695 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001696 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001697 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001698
1699 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00001700 ExprResult MemberInit =
Anders Carlsson3c1db572010-04-23 02:15:47 +00001701 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1702 Sema::MultiExprArg(SemaRef, 0, 0));
John McCallb268a282010-08-23 23:25:46 +00001703 if (MemberInit.isInvalid())
1704 return true;
1705
1706 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001707 if (MemberInit.isInvalid())
1708 return true;
1709
1710 CXXMemberInit =
1711 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001712 Field, Loc, Loc,
John McCallb268a282010-08-23 23:25:46 +00001713 MemberInit.get(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001714 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001715 return false;
1716 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001717
1718 if (FieldBaseElementType->isReferenceType()) {
1719 SemaRef.Diag(Constructor->getLocation(),
1720 diag::err_uninitialized_member_in_ctor)
1721 << (int)Constructor->isImplicit()
1722 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1723 << 0 << Field->getDeclName();
1724 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1725 return true;
1726 }
1727
1728 if (FieldBaseElementType.isConstQualified()) {
1729 SemaRef.Diag(Constructor->getLocation(),
1730 diag::err_uninitialized_member_in_ctor)
1731 << (int)Constructor->isImplicit()
1732 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1733 << 1 << Field->getDeclName();
1734 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1735 return true;
1736 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001737
1738 // Nothing to initialize.
1739 CXXMemberInit = 0;
1740 return false;
1741}
John McCallbc83b3f2010-05-20 23:23:51 +00001742
1743namespace {
1744struct BaseAndFieldInfo {
1745 Sema &S;
1746 CXXConstructorDecl *Ctor;
1747 bool AnyErrorsInInits;
1748 ImplicitInitializerKind IIK;
1749 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1750 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1751
1752 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1753 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1754 // FIXME: Handle implicit move constructors.
1755 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1756 IIK = IIK_Copy;
1757 else
1758 IIK = IIK_Default;
1759 }
1760};
1761}
1762
Chandler Carruth139e9622010-06-30 02:59:29 +00001763static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1764 FieldDecl *Top, FieldDecl *Field,
1765 CXXBaseOrMemberInitializer *Init) {
1766 // If the member doesn't need to be initialized, Init will still be null.
1767 if (!Init)
1768 return;
1769
1770 Info.AllToInit.push_back(Init);
1771 if (Field != Top) {
1772 Init->setMember(Top);
1773 Init->setAnonUnionMember(Field);
1774 }
1775}
1776
John McCallbc83b3f2010-05-20 23:23:51 +00001777static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1778 FieldDecl *Top, FieldDecl *Field) {
1779
Chandler Carruth139e9622010-06-30 02:59:29 +00001780 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001781 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001782 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001783 return false;
1784 }
1785
1786 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1787 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1788 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001789 CXXRecordDecl *FieldClassDecl
1790 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001791
1792 // Even though union members never have non-trivial default
1793 // constructions in C++03, we still build member initializers for aggregate
1794 // record types which can be union members, and C++0x allows non-trivial
1795 // default constructors for union members, so we ensure that only one
1796 // member is initialized for these.
1797 if (FieldClassDecl->isUnion()) {
1798 // First check for an explicit initializer for one field.
1799 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1800 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1801 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1802 RecordFieldInitializer(Info, Top, *FA, Init);
1803
1804 // Once we've initialized a field of an anonymous union, the union
1805 // field in the class is also initialized, so exit immediately.
1806 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00001807 } else if ((*FA)->isAnonymousStructOrUnion()) {
1808 if (CollectFieldInitializer(Info, Top, *FA))
1809 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00001810 }
1811 }
1812
1813 // Fallthrough and construct a default initializer for the union as
1814 // a whole, which can call its default constructor if such a thing exists
1815 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1816 // behavior going forward with C++0x, when anonymous unions there are
1817 // finalized, we should revisit this.
1818 } else {
1819 // For structs, we simply descend through to initialize all members where
1820 // necessary.
1821 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1822 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1823 if (CollectFieldInitializer(Info, Top, *FA))
1824 return true;
1825 }
1826 }
John McCallbc83b3f2010-05-20 23:23:51 +00001827 }
1828
1829 // Don't try to build an implicit initializer if there were semantic
1830 // errors in any of the initializers (and therefore we might be
1831 // missing some that the user actually wrote).
1832 if (Info.AnyErrorsInInits)
1833 return false;
1834
1835 CXXBaseOrMemberInitializer *Init = 0;
1836 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1837 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001838
Chandler Carruth139e9622010-06-30 02:59:29 +00001839 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001840 return false;
1841}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001842
Eli Friedman9cf6b592009-11-09 19:20:36 +00001843bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001844Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001845 CXXBaseOrMemberInitializer **Initializers,
1846 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001847 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001848 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001849 // Just store the initializers as written, they will be checked during
1850 // instantiation.
1851 if (NumInitializers > 0) {
1852 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1853 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1854 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1855 memcpy(baseOrMemberInitializers, Initializers,
1856 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1857 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1858 }
1859
1860 return false;
1861 }
1862
John McCallbc83b3f2010-05-20 23:23:51 +00001863 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001864
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001865 // We need to build the initializer AST according to order of construction
1866 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001867 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001868 if (!ClassDecl)
1869 return true;
1870
Eli Friedman9cf6b592009-11-09 19:20:36 +00001871 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001872
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001873 for (unsigned i = 0; i < NumInitializers; i++) {
1874 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001875
1876 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001877 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001878 else
John McCallbc83b3f2010-05-20 23:23:51 +00001879 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001880 }
1881
Anders Carlsson43c64af2010-04-21 19:52:01 +00001882 // Keep track of the direct virtual bases.
1883 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1884 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1885 E = ClassDecl->bases_end(); I != E; ++I) {
1886 if (I->isVirtual())
1887 DirectVBases.insert(I);
1888 }
1889
Anders Carlssondb0a9652010-04-02 06:26:44 +00001890 // Push virtual bases before others.
1891 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1892 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1893
1894 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001895 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1896 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001897 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001898 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001899 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001900 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001901 VBase, IsInheritedVirtualBase,
1902 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001903 HadError = true;
1904 continue;
1905 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001906
John McCallbc83b3f2010-05-20 23:23:51 +00001907 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001908 }
1909 }
Mike Stump11289f42009-09-09 15:08:12 +00001910
John McCallbc83b3f2010-05-20 23:23:51 +00001911 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001912 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1913 E = ClassDecl->bases_end(); Base != E; ++Base) {
1914 // Virtuals are in the virtual base list and already constructed.
1915 if (Base->isVirtual())
1916 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001917
Anders Carlssondb0a9652010-04-02 06:26:44 +00001918 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001919 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1920 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001921 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001922 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001923 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001924 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001925 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001926 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001927 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001928 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001929
John McCallbc83b3f2010-05-20 23:23:51 +00001930 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001931 }
1932 }
Mike Stump11289f42009-09-09 15:08:12 +00001933
John McCallbc83b3f2010-05-20 23:23:51 +00001934 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001935 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001936 E = ClassDecl->field_end(); Field != E; ++Field) {
1937 if ((*Field)->getType()->isIncompleteArrayType()) {
1938 assert(ClassDecl->hasFlexibleArrayMember() &&
1939 "Incomplete array type is not valid");
1940 continue;
1941 }
John McCallbc83b3f2010-05-20 23:23:51 +00001942 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001943 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001944 }
Mike Stump11289f42009-09-09 15:08:12 +00001945
John McCallbc83b3f2010-05-20 23:23:51 +00001946 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001947 if (NumInitializers > 0) {
1948 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1949 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1950 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001951 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001952 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001953 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001954
John McCalla6309952010-03-16 21:39:52 +00001955 // Constructors implicitly reference the base and member
1956 // destructors.
1957 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1958 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001959 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001960
1961 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001962}
1963
Eli Friedman952c15d2009-07-21 19:28:10 +00001964static void *GetKeyForTopLevelField(FieldDecl *Field) {
1965 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001966 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001967 if (RT->getDecl()->isAnonymousStructOrUnion())
1968 return static_cast<void *>(RT->getDecl());
1969 }
1970 return static_cast<void *>(Field);
1971}
1972
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001973static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1974 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001975}
1976
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001977static void *GetKeyForMember(ASTContext &Context,
1978 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001979 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001980 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001981 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001982
Eli Friedman952c15d2009-07-21 19:28:10 +00001983 // For fields injected into the class via declaration of an anonymous union,
1984 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001985 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001986
Anders Carlssona942dcd2010-03-30 15:39:27 +00001987 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1988 // data member of the class. Data member used in the initializer list is
1989 // in AnonUnionMember field.
1990 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1991 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001992
John McCall23eebd92010-04-10 09:28:51 +00001993 // If the field is a member of an anonymous struct or union, our key
1994 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001995 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001996 if (RD->isAnonymousStructOrUnion()) {
1997 while (true) {
1998 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1999 if (Parent->isAnonymousStructOrUnion())
2000 RD = Parent;
2001 else
2002 break;
2003 }
2004
Anders Carlsson83ac3122010-03-30 16:19:37 +00002005 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00002006 }
Mike Stump11289f42009-09-09 15:08:12 +00002007
Anders Carlssona942dcd2010-03-30 15:39:27 +00002008 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00002009}
2010
Anders Carlssone857b292010-04-02 03:37:03 +00002011static void
2012DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002013 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00002014 CXXBaseOrMemberInitializer **Inits,
2015 unsigned NumInits) {
2016 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002017 return;
Mike Stump11289f42009-09-09 15:08:12 +00002018
John McCallbb7b6582010-04-10 07:37:23 +00002019 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2020 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002021 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002022
John McCallbb7b6582010-04-10 07:37:23 +00002023 // Build the list of bases and members in the order that they'll
2024 // actually be initialized. The explicit initializers should be in
2025 // this same order but may be missing things.
2026 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002027
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002028 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2029
John McCallbb7b6582010-04-10 07:37:23 +00002030 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002031 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002032 ClassDecl->vbases_begin(),
2033 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002034 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002035
John McCallbb7b6582010-04-10 07:37:23 +00002036 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002037 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002038 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002039 if (Base->isVirtual())
2040 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002041 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002042 }
Mike Stump11289f42009-09-09 15:08:12 +00002043
John McCallbb7b6582010-04-10 07:37:23 +00002044 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002045 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2046 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002047 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002048
John McCallbb7b6582010-04-10 07:37:23 +00002049 unsigned NumIdealInits = IdealInitKeys.size();
2050 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002051
John McCallbb7b6582010-04-10 07:37:23 +00002052 CXXBaseOrMemberInitializer *PrevInit = 0;
2053 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2054 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2055 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2056
2057 // Scan forward to try to find this initializer in the idealized
2058 // initializers list.
2059 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2060 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002061 break;
John McCallbb7b6582010-04-10 07:37:23 +00002062
2063 // If we didn't find this initializer, it must be because we
2064 // scanned past it on a previous iteration. That can only
2065 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002066 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002067 Sema::SemaDiagnosticBuilder D =
2068 SemaRef.Diag(PrevInit->getSourceLocation(),
2069 diag::warn_initializer_out_of_order);
2070
2071 if (PrevInit->isMemberInitializer())
2072 D << 0 << PrevInit->getMember()->getDeclName();
2073 else
2074 D << 1 << PrevInit->getBaseClassInfo()->getType();
2075
2076 if (Init->isMemberInitializer())
2077 D << 0 << Init->getMember()->getDeclName();
2078 else
2079 D << 1 << Init->getBaseClassInfo()->getType();
2080
2081 // Move back to the initializer's location in the ideal list.
2082 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2083 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002084 break;
John McCallbb7b6582010-04-10 07:37:23 +00002085
2086 assert(IdealIndex != NumIdealInits &&
2087 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002088 }
John McCallbb7b6582010-04-10 07:37:23 +00002089
2090 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002091 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002092}
2093
John McCall23eebd92010-04-10 09:28:51 +00002094namespace {
2095bool CheckRedundantInit(Sema &S,
2096 CXXBaseOrMemberInitializer *Init,
2097 CXXBaseOrMemberInitializer *&PrevInit) {
2098 if (!PrevInit) {
2099 PrevInit = Init;
2100 return false;
2101 }
2102
2103 if (FieldDecl *Field = Init->getMember())
2104 S.Diag(Init->getSourceLocation(),
2105 diag::err_multiple_mem_initialization)
2106 << Field->getDeclName()
2107 << Init->getSourceRange();
2108 else {
2109 Type *BaseClass = Init->getBaseClass();
2110 assert(BaseClass && "neither field nor base");
2111 S.Diag(Init->getSourceLocation(),
2112 diag::err_multiple_base_initialization)
2113 << QualType(BaseClass, 0)
2114 << Init->getSourceRange();
2115 }
2116 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2117 << 0 << PrevInit->getSourceRange();
2118
2119 return true;
2120}
2121
2122typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2123typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2124
2125bool CheckRedundantUnionInit(Sema &S,
2126 CXXBaseOrMemberInitializer *Init,
2127 RedundantUnionMap &Unions) {
2128 FieldDecl *Field = Init->getMember();
2129 RecordDecl *Parent = Field->getParent();
2130 if (!Parent->isAnonymousStructOrUnion())
2131 return false;
2132
2133 NamedDecl *Child = Field;
2134 do {
2135 if (Parent->isUnion()) {
2136 UnionEntry &En = Unions[Parent];
2137 if (En.first && En.first != Child) {
2138 S.Diag(Init->getSourceLocation(),
2139 diag::err_multiple_mem_union_initialization)
2140 << Field->getDeclName()
2141 << Init->getSourceRange();
2142 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2143 << 0 << En.second->getSourceRange();
2144 return true;
2145 } else if (!En.first) {
2146 En.first = Child;
2147 En.second = Init;
2148 }
2149 }
2150
2151 Child = Parent;
2152 Parent = cast<RecordDecl>(Parent->getDeclContext());
2153 } while (Parent->isAnonymousStructOrUnion());
2154
2155 return false;
2156}
2157}
2158
Anders Carlssone857b292010-04-02 03:37:03 +00002159/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00002160void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00002161 SourceLocation ColonLoc,
2162 MemInitTy **meminits, unsigned NumMemInits,
2163 bool AnyErrors) {
2164 if (!ConstructorDecl)
2165 return;
2166
2167 AdjustDeclIfTemplate(ConstructorDecl);
2168
2169 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002170 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00002171
2172 if (!Constructor) {
2173 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2174 return;
2175 }
2176
2177 CXXBaseOrMemberInitializer **MemInits =
2178 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002179
2180 // Mapping for the duplicate initializers check.
2181 // For member initializers, this is keyed with a FieldDecl*.
2182 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002183 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002184
2185 // Mapping for the inconsistent anonymous-union initializers check.
2186 RedundantUnionMap MemberUnions;
2187
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002188 bool HadError = false;
2189 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002190 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002191
Abramo Bagnara341d7832010-05-26 18:09:23 +00002192 // Set the source order index.
2193 Init->setSourceOrder(i);
2194
John McCall23eebd92010-04-10 09:28:51 +00002195 if (Init->isMemberInitializer()) {
2196 FieldDecl *Field = Init->getMember();
2197 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2198 CheckRedundantUnionInit(*this, Init, MemberUnions))
2199 HadError = true;
2200 } else {
2201 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2202 if (CheckRedundantInit(*this, Init, Members[Key]))
2203 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002204 }
Anders Carlssone857b292010-04-02 03:37:03 +00002205 }
2206
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002207 if (HadError)
2208 return;
2209
Anders Carlssone857b292010-04-02 03:37:03 +00002210 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002211
2212 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002213}
2214
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002215void
John McCalla6309952010-03-16 21:39:52 +00002216Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2217 CXXRecordDecl *ClassDecl) {
2218 // Ignore dependent contexts.
2219 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002220 return;
John McCall1064d7e2010-03-16 05:22:47 +00002221
2222 // FIXME: all the access-control diagnostics are positioned on the
2223 // field/base declaration. That's probably good; that said, the
2224 // user might reasonably want to know why the destructor is being
2225 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002226
Anders Carlssondee9a302009-11-17 04:44:12 +00002227 // Non-static data members.
2228 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2229 E = ClassDecl->field_end(); I != E; ++I) {
2230 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002231 if (Field->isInvalidDecl())
2232 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002233 QualType FieldType = Context.getBaseElementType(Field->getType());
2234
2235 const RecordType* RT = FieldType->getAs<RecordType>();
2236 if (!RT)
2237 continue;
2238
2239 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2240 if (FieldClassDecl->hasTrivialDestructor())
2241 continue;
2242
Douglas Gregore71edda2010-07-01 22:47:18 +00002243 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002244 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002245 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002246 << Field->getDeclName()
2247 << FieldType);
2248
John McCalla6309952010-03-16 21:39:52 +00002249 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002250 }
2251
John McCall1064d7e2010-03-16 05:22:47 +00002252 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2253
Anders Carlssondee9a302009-11-17 04:44:12 +00002254 // Bases.
2255 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2256 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002257 // Bases are always records in a well-formed non-dependent class.
2258 const RecordType *RT = Base->getType()->getAs<RecordType>();
2259
2260 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002261 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002262 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002263
2264 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002265 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002266 if (BaseClassDecl->hasTrivialDestructor())
2267 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002268
Douglas Gregore71edda2010-07-01 22:47:18 +00002269 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002270
2271 // FIXME: caret should be on the start of the class name
2272 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002273 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002274 << Base->getType()
2275 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002276
John McCalla6309952010-03-16 21:39:52 +00002277 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002278 }
2279
2280 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002281 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2282 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002283
2284 // Bases are always records in a well-formed non-dependent class.
2285 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2286
2287 // Ignore direct virtual bases.
2288 if (DirectVirtualBases.count(RT))
2289 continue;
2290
Anders Carlssondee9a302009-11-17 04:44:12 +00002291 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002292 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002293 if (BaseClassDecl->hasTrivialDestructor())
2294 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002295
Douglas Gregore71edda2010-07-01 22:47:18 +00002296 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002297 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002298 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002299 << VBase->getType());
2300
John McCalla6309952010-03-16 21:39:52 +00002301 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002302 }
2303}
2304
John McCall48871652010-08-21 09:40:31 +00002305void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002306 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002307 return;
Mike Stump11289f42009-09-09 15:08:12 +00002308
Mike Stump11289f42009-09-09 15:08:12 +00002309 if (CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002310 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002311 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002312}
2313
Mike Stump11289f42009-09-09 15:08:12 +00002314bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002315 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002316 if (SelID == -1)
John McCall02db245d2010-08-18 09:41:07 +00002317 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssoneabf7702009-08-27 00:13:57 +00002318 else
John McCall02db245d2010-08-18 09:41:07 +00002319 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump11289f42009-09-09 15:08:12 +00002320}
2321
Anders Carlssoneabf7702009-08-27 00:13:57 +00002322bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002323 const PartialDiagnostic &PD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002324 if (!getLangOptions().CPlusPlus)
2325 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002326
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002327 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall02db245d2010-08-18 09:41:07 +00002328 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump11289f42009-09-09 15:08:12 +00002329
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002330 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002331 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002332 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002333 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002334
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002335 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall02db245d2010-08-18 09:41:07 +00002336 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002337 }
Mike Stump11289f42009-09-09 15:08:12 +00002338
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002339 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002340 if (!RT)
2341 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002342
John McCall67da35c2010-02-04 22:26:26 +00002343 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002344
John McCall02db245d2010-08-18 09:41:07 +00002345 // We can't answer whether something is abstract until it has a
2346 // definition. If it's currently being defined, we'll walk back
2347 // over all the declarations when we have a full definition.
2348 const CXXRecordDecl *Def = RD->getDefinition();
2349 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00002350 return false;
2351
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002352 if (!RD->isAbstract())
2353 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002354
Anders Carlssoneabf7702009-08-27 00:13:57 +00002355 Diag(Loc, PD) << RD->getDeclName();
John McCall02db245d2010-08-18 09:41:07 +00002356 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002357
John McCall02db245d2010-08-18 09:41:07 +00002358 return true;
2359}
2360
2361void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2362 // Check if we've already emitted the list of pure virtual functions
2363 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002364 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00002365 return;
Mike Stump11289f42009-09-09 15:08:12 +00002366
Douglas Gregor4165bd62010-03-23 23:47:56 +00002367 CXXFinalOverriderMap FinalOverriders;
2368 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002369
Anders Carlssona2f74f32010-06-03 01:00:02 +00002370 // Keep a set of seen pure methods so we won't diagnose the same method
2371 // more than once.
2372 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2373
Douglas Gregor4165bd62010-03-23 23:47:56 +00002374 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2375 MEnd = FinalOverriders.end();
2376 M != MEnd;
2377 ++M) {
2378 for (OverridingMethods::iterator SO = M->second.begin(),
2379 SOEnd = M->second.end();
2380 SO != SOEnd; ++SO) {
2381 // C++ [class.abstract]p4:
2382 // A class is abstract if it contains or inherits at least one
2383 // pure virtual function for which the final overrider is pure
2384 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002385
Douglas Gregor4165bd62010-03-23 23:47:56 +00002386 //
2387 if (SO->second.size() != 1)
2388 continue;
2389
2390 if (!SO->second.front().Method->isPure())
2391 continue;
2392
Anders Carlssona2f74f32010-06-03 01:00:02 +00002393 if (!SeenPureMethods.insert(SO->second.front().Method))
2394 continue;
2395
Douglas Gregor4165bd62010-03-23 23:47:56 +00002396 Diag(SO->second.front().Method->getLocation(),
2397 diag::note_pure_virtual_function)
2398 << SO->second.front().Method->getDeclName();
2399 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002400 }
2401
2402 if (!PureVirtualClassDiagSet)
2403 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2404 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002405}
2406
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002407namespace {
John McCall02db245d2010-08-18 09:41:07 +00002408struct AbstractUsageInfo {
2409 Sema &S;
2410 CXXRecordDecl *Record;
2411 CanQualType AbstractType;
2412 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00002413
John McCall02db245d2010-08-18 09:41:07 +00002414 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2415 : S(S), Record(Record),
2416 AbstractType(S.Context.getCanonicalType(
2417 S.Context.getTypeDeclType(Record))),
2418 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002419
John McCall02db245d2010-08-18 09:41:07 +00002420 void DiagnoseAbstractType() {
2421 if (Invalid) return;
2422 S.DiagnoseAbstractType(Record);
2423 Invalid = true;
2424 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00002425
John McCall02db245d2010-08-18 09:41:07 +00002426 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2427};
2428
2429struct CheckAbstractUsage {
2430 AbstractUsageInfo &Info;
2431 const NamedDecl *Ctx;
2432
2433 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2434 : Info(Info), Ctx(Ctx) {}
2435
2436 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2437 switch (TL.getTypeLocClass()) {
2438#define ABSTRACT_TYPELOC(CLASS, PARENT)
2439#define TYPELOC(CLASS, PARENT) \
2440 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2441#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002442 }
John McCall02db245d2010-08-18 09:41:07 +00002443 }
Mike Stump11289f42009-09-09 15:08:12 +00002444
John McCall02db245d2010-08-18 09:41:07 +00002445 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2446 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2447 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2448 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2449 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002450 }
John McCall02db245d2010-08-18 09:41:07 +00002451 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002452
John McCall02db245d2010-08-18 09:41:07 +00002453 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2454 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2455 }
Mike Stump11289f42009-09-09 15:08:12 +00002456
John McCall02db245d2010-08-18 09:41:07 +00002457 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2458 // Visit the type parameters from a permissive context.
2459 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2460 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2461 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2462 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2463 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2464 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002465 }
John McCall02db245d2010-08-18 09:41:07 +00002466 }
Mike Stump11289f42009-09-09 15:08:12 +00002467
John McCall02db245d2010-08-18 09:41:07 +00002468 // Visit pointee types from a permissive context.
2469#define CheckPolymorphic(Type) \
2470 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2471 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2472 }
2473 CheckPolymorphic(PointerTypeLoc)
2474 CheckPolymorphic(ReferenceTypeLoc)
2475 CheckPolymorphic(MemberPointerTypeLoc)
2476 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00002477
John McCall02db245d2010-08-18 09:41:07 +00002478 /// Handle all the types we haven't given a more specific
2479 /// implementation for above.
2480 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2481 // Every other kind of type that we haven't called out already
2482 // that has an inner type is either (1) sugar or (2) contains that
2483 // inner type in some way as a subobject.
2484 if (TypeLoc Next = TL.getNextTypeLoc())
2485 return Visit(Next, Sel);
2486
2487 // If there's no inner type and we're in a permissive context,
2488 // don't diagnose.
2489 if (Sel == Sema::AbstractNone) return;
2490
2491 // Check whether the type matches the abstract type.
2492 QualType T = TL.getType();
2493 if (T->isArrayType()) {
2494 Sel = Sema::AbstractArrayType;
2495 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002496 }
John McCall02db245d2010-08-18 09:41:07 +00002497 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2498 if (CT != Info.AbstractType) return;
2499
2500 // It matched; do some magic.
2501 if (Sel == Sema::AbstractArrayType) {
2502 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2503 << T << TL.getSourceRange();
2504 } else {
2505 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2506 << Sel << T << TL.getSourceRange();
2507 }
2508 Info.DiagnoseAbstractType();
2509 }
2510};
2511
2512void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2513 Sema::AbstractDiagSelID Sel) {
2514 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2515}
2516
2517}
2518
2519/// Check for invalid uses of an abstract type in a method declaration.
2520static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2521 CXXMethodDecl *MD) {
2522 // No need to do the check on definitions, which require that
2523 // the return/param types be complete.
2524 if (MD->isThisDeclarationADefinition())
2525 return;
2526
2527 // For safety's sake, just ignore it if we don't have type source
2528 // information. This should never happen for non-implicit methods,
2529 // but...
2530 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2531 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2532}
2533
2534/// Check for invalid uses of an abstract type within a class definition.
2535static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2536 CXXRecordDecl *RD) {
2537 for (CXXRecordDecl::decl_iterator
2538 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2539 Decl *D = *I;
2540 if (D->isImplicit()) continue;
2541
2542 // Methods and method templates.
2543 if (isa<CXXMethodDecl>(D)) {
2544 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2545 } else if (isa<FunctionTemplateDecl>(D)) {
2546 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2547 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2548
2549 // Fields and static variables.
2550 } else if (isa<FieldDecl>(D)) {
2551 FieldDecl *FD = cast<FieldDecl>(D);
2552 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2553 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2554 } else if (isa<VarDecl>(D)) {
2555 VarDecl *VD = cast<VarDecl>(D);
2556 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2557 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2558
2559 // Nested classes and class templates.
2560 } else if (isa<CXXRecordDecl>(D)) {
2561 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2562 } else if (isa<ClassTemplateDecl>(D)) {
2563 CheckAbstractClassUsage(Info,
2564 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2565 }
2566 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002567}
2568
Douglas Gregorc99f1552009-12-03 18:33:45 +00002569/// \brief Perform semantic checks on a class definition that has been
2570/// completing, introducing implicitly-declared members, checking for
2571/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002572void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002573 if (!Record || Record->isInvalidDecl())
2574 return;
2575
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002576 if (!Record->isDependentType())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002577 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002578
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002579 if (Record->isInvalidDecl())
2580 return;
2581
John McCall2cb94162010-01-28 07:38:46 +00002582 // Set access bits correctly on the directly-declared conversions.
2583 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2584 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2585 Convs->setAccess(I, (*I)->getAccess());
2586
Douglas Gregor4165bd62010-03-23 23:47:56 +00002587 // Determine whether we need to check for final overriders. We do
2588 // this either when there are virtual base classes (in which case we
2589 // may end up finding multiple final overriders for a given virtual
2590 // function) or any of the base classes is abstract (in which case
2591 // we might detect that this class is abstract).
2592 bool CheckFinalOverriders = false;
2593 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2594 !Record->isDependentType()) {
2595 if (Record->getNumVBases())
2596 CheckFinalOverriders = true;
2597 else if (!Record->isAbstract()) {
2598 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2599 BEnd = Record->bases_end();
2600 B != BEnd; ++B) {
2601 CXXRecordDecl *BaseDecl
2602 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2603 if (BaseDecl->isAbstract()) {
2604 CheckFinalOverriders = true;
2605 break;
2606 }
2607 }
2608 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002609 }
2610
Douglas Gregor4165bd62010-03-23 23:47:56 +00002611 if (CheckFinalOverriders) {
2612 CXXFinalOverriderMap FinalOverriders;
2613 Record->getFinalOverriders(FinalOverriders);
2614
2615 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2616 MEnd = FinalOverriders.end();
2617 M != MEnd; ++M) {
2618 for (OverridingMethods::iterator SO = M->second.begin(),
2619 SOEnd = M->second.end();
2620 SO != SOEnd; ++SO) {
2621 assert(SO->second.size() > 0 &&
2622 "All virtual functions have overridding virtual functions");
2623 if (SO->second.size() == 1) {
2624 // C++ [class.abstract]p4:
2625 // A class is abstract if it contains or inherits at least one
2626 // pure virtual function for which the final overrider is pure
2627 // virtual.
2628 if (SO->second.front().Method->isPure())
2629 Record->setAbstract(true);
2630 continue;
2631 }
2632
2633 // C++ [class.virtual]p2:
2634 // In a derived class, if a virtual member function of a base
2635 // class subobject has more than one final overrider the
2636 // program is ill-formed.
2637 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2638 << (NamedDecl *)M->first << Record;
2639 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2640 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2641 OMEnd = SO->second.end();
2642 OM != OMEnd; ++OM)
2643 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2644 << (NamedDecl *)M->first << OM->Method->getParent();
2645
2646 Record->setInvalidDecl();
2647 }
2648 }
2649 }
2650
John McCall02db245d2010-08-18 09:41:07 +00002651 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2652 AbstractUsageInfo Info(*this, Record);
2653 CheckAbstractClassUsage(Info, Record);
2654 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00002655
2656 // If this is not an aggregate type and has no user-declared constructor,
2657 // complain about any non-static data members of reference or const scalar
2658 // type, since they will never get initializers.
2659 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2660 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2661 bool Complained = false;
2662 for (RecordDecl::field_iterator F = Record->field_begin(),
2663 FEnd = Record->field_end();
2664 F != FEnd; ++F) {
2665 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002666 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002667 if (!Complained) {
2668 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2669 << Record->getTagKind() << Record;
2670 Complained = true;
2671 }
2672
2673 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2674 << F->getType()->isReferenceType()
2675 << F->getDeclName();
2676 }
2677 }
2678 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002679
2680 if (Record->isDynamicClass())
2681 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002682}
2683
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002684void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00002685 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002686 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002687 SourceLocation RBrac,
2688 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002689 if (!TagDecl)
2690 return;
Mike Stump11289f42009-09-09 15:08:12 +00002691
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002692 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002693
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002694 ActOnFields(S, RLoc, TagDecl,
John McCall48871652010-08-21 09:40:31 +00002695 // strict aliasing violation!
2696 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002697 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002698
Douglas Gregor0be31a22010-07-02 17:43:08 +00002699 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00002700 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002701}
2702
Douglas Gregor95755162010-07-01 05:10:53 +00002703namespace {
2704 /// \brief Helper class that collects exception specifications for
2705 /// implicitly-declared special member functions.
2706 class ImplicitExceptionSpecification {
2707 ASTContext &Context;
2708 bool AllowsAllExceptions;
2709 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2710 llvm::SmallVector<QualType, 4> Exceptions;
2711
2712 public:
2713 explicit ImplicitExceptionSpecification(ASTContext &Context)
2714 : Context(Context), AllowsAllExceptions(false) { }
2715
2716 /// \brief Whether the special member function should have any
2717 /// exception specification at all.
2718 bool hasExceptionSpecification() const {
2719 return !AllowsAllExceptions;
2720 }
2721
2722 /// \brief Whether the special member function should have a
2723 /// throw(...) exception specification (a Microsoft extension).
2724 bool hasAnyExceptionSpecification() const {
2725 return false;
2726 }
2727
2728 /// \brief The number of exceptions in the exception specification.
2729 unsigned size() const { return Exceptions.size(); }
2730
2731 /// \brief The set of exceptions in the exception specification.
2732 const QualType *data() const { return Exceptions.data(); }
2733
2734 /// \brief Note that
2735 void CalledDecl(CXXMethodDecl *Method) {
2736 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002737 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002738 return;
2739
2740 const FunctionProtoType *Proto
2741 = Method->getType()->getAs<FunctionProtoType>();
2742
2743 // If this function can throw any exceptions, make a note of that.
2744 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2745 AllowsAllExceptions = true;
2746 ExceptionsSeen.clear();
2747 Exceptions.clear();
2748 return;
2749 }
2750
2751 // Record the exceptions in this function's exception specification.
2752 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2753 EEnd = Proto->exception_end();
2754 E != EEnd; ++E)
2755 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2756 Exceptions.push_back(*E);
2757 }
2758 };
2759}
2760
2761
Douglas Gregor05379422008-11-03 17:51:48 +00002762/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2763/// special functions, such as the default constructor, copy
2764/// constructor, or destructor, to the given C++ class (C++
2765/// [special]p1). This routine can only be executed just before the
2766/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002767void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002768 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00002769 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002770
Douglas Gregor54be3392010-07-01 17:57:27 +00002771 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00002772 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002773
Douglas Gregor330b9cf2010-07-02 21:50:04 +00002774 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2775 ++ASTContext::NumImplicitCopyAssignmentOperators;
2776
2777 // If we have a dynamic class, then the copy assignment operator may be
2778 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2779 // it shows up in the right place in the vtable and that we diagnose
2780 // problems with the implicit exception specification.
2781 if (ClassDecl->isDynamicClass())
2782 DeclareImplicitCopyAssignment(ClassDecl);
2783 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002784
Douglas Gregor7454c562010-07-02 20:37:36 +00002785 if (!ClassDecl->hasUserDeclaredDestructor()) {
2786 ++ASTContext::NumImplicitDestructors;
2787
2788 // If we have a dynamic class, then the destructor may be virtual, so we
2789 // have to declare the destructor immediately. This ensures that, e.g., it
2790 // shows up in the right place in the vtable and that we diagnose problems
2791 // with the implicit exception specification.
2792 if (ClassDecl->isDynamicClass())
2793 DeclareImplicitDestructor(ClassDecl);
2794 }
Douglas Gregor05379422008-11-03 17:51:48 +00002795}
2796
John McCall48871652010-08-21 09:40:31 +00002797void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002798 if (!D)
2799 return;
2800
2801 TemplateParameterList *Params = 0;
2802 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2803 Params = Template->getTemplateParameters();
2804 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2805 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2806 Params = PartialSpec->getTemplateParameters();
2807 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002808 return;
2809
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002810 for (TemplateParameterList::iterator Param = Params->begin(),
2811 ParamEnd = Params->end();
2812 Param != ParamEnd; ++Param) {
2813 NamedDecl *Named = cast<NamedDecl>(*Param);
2814 if (Named->getDeclName()) {
John McCall48871652010-08-21 09:40:31 +00002815 S->AddDecl(Named);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002816 IdResolver.AddDecl(Named);
2817 }
2818 }
2819}
2820
John McCall48871652010-08-21 09:40:31 +00002821void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002822 if (!RecordD) return;
2823 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00002824 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00002825 PushDeclContext(S, Record);
2826}
2827
John McCall48871652010-08-21 09:40:31 +00002828void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002829 if (!RecordD) return;
2830 PopDeclContext();
2831}
2832
Douglas Gregor4d87df52008-12-16 21:30:33 +00002833/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2834/// parsing a top-level (non-nested) C++ class, and we are now
2835/// parsing those parts of the given Method declaration that could
2836/// not be parsed earlier (C++ [class.mem]p2), such as default
2837/// arguments. This action should enter the scope of the given
2838/// Method declaration as if we had just parsed the qualified method
2839/// name. However, it should not bring the parameters into scope;
2840/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00002841void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002842}
2843
2844/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2845/// C++ method declaration. We're (re-)introducing the given
2846/// function parameter into scope for use in parsing later parts of
2847/// the method declaration. For example, we could see an
2848/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00002849void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002850 if (!ParamD)
2851 return;
Mike Stump11289f42009-09-09 15:08:12 +00002852
John McCall48871652010-08-21 09:40:31 +00002853 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00002854
2855 // If this parameter has an unparsed default argument, clear it out
2856 // to make way for the parsed default argument.
2857 if (Param->hasUnparsedDefaultArg())
2858 Param->setDefaultArg(0);
2859
John McCall48871652010-08-21 09:40:31 +00002860 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002861 if (Param->getDeclName())
2862 IdResolver.AddDecl(Param);
2863}
2864
2865/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2866/// processing the delayed method declaration for Method. The method
2867/// declaration is now considered finished. There may be a separate
2868/// ActOnStartOfFunctionDef action later (not necessarily
2869/// immediately!) for this method, if it was also defined inside the
2870/// class body.
John McCall48871652010-08-21 09:40:31 +00002871void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002872 if (!MethodD)
2873 return;
Mike Stump11289f42009-09-09 15:08:12 +00002874
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002875 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002876
John McCall48871652010-08-21 09:40:31 +00002877 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002878
2879 // Now that we have our default arguments, check the constructor
2880 // again. It could produce additional diagnostics or affect whether
2881 // the class has implicitly-declared destructors, among other
2882 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002883 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2884 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002885
2886 // Check the default arguments, which we may have added.
2887 if (!Method->isInvalidDecl())
2888 CheckCXXDefaultArguments(Method);
2889}
2890
Douglas Gregor831c93f2008-11-05 20:51:48 +00002891/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002892/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002893/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002894/// emit diagnostics and set the invalid bit to true. In any case, the type
2895/// will be updated to reflect a well-formed type for the constructor and
2896/// returned.
2897QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00002898 StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002899 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002900
2901 // C++ [class.ctor]p3:
2902 // A constructor shall not be virtual (10.3) or static (9.4). A
2903 // constructor can be invoked for a const, volatile or const
2904 // volatile object. A constructor shall not be declared const,
2905 // volatile, or const volatile (9.3.2).
2906 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002907 if (!D.isInvalidType())
2908 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2909 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2910 << SourceRange(D.getIdentifierLoc());
2911 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002912 }
John McCall8e7d6562010-08-26 03:08:43 +00002913 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002914 if (!D.isInvalidType())
2915 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2916 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2917 << SourceRange(D.getIdentifierLoc());
2918 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00002919 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002920 }
Mike Stump11289f42009-09-09 15:08:12 +00002921
Chris Lattner38378bf2009-04-25 08:28:21 +00002922 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2923 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002924 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002925 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2926 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002927 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002928 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2929 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002930 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002931 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2932 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002933 }
Mike Stump11289f42009-09-09 15:08:12 +00002934
Douglas Gregor831c93f2008-11-05 20:51:48 +00002935 // Rebuild the function type "R" without any type qualifiers (in
2936 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002937 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002938 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002939 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2940 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002941 Proto->isVariadic(), 0,
2942 Proto->hasExceptionSpec(),
2943 Proto->hasAnyExceptionSpec(),
2944 Proto->getNumExceptions(),
2945 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002946 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002947}
2948
Douglas Gregor4d87df52008-12-16 21:30:33 +00002949/// CheckConstructor - Checks a fully-formed constructor for
2950/// well-formedness, issuing any diagnostics required. Returns true if
2951/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002952void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002953 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002954 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2955 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002956 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002957
2958 // C++ [class.copy]p3:
2959 // A declaration of a constructor for a class X is ill-formed if
2960 // its first parameter is of type (optionally cv-qualified) X and
2961 // either there are no other parameters or else all other
2962 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002963 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002964 ((Constructor->getNumParams() == 1) ||
2965 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002966 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2967 Constructor->getTemplateSpecializationKind()
2968 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002969 QualType ParamType = Constructor->getParamDecl(0)->getType();
2970 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2971 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002972 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002973 const char *ConstRef
2974 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2975 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002976 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002977 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002978
2979 // FIXME: Rather that making the constructor invalid, we should endeavor
2980 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002981 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002982 }
2983 }
Mike Stump11289f42009-09-09 15:08:12 +00002984
John McCall43314ab2010-04-13 07:45:41 +00002985 // Notify the class that we've added a constructor. In principle we
2986 // don't need to do this for out-of-line declarations; in practice
2987 // we only instantiate the most recent declaration of a method, so
2988 // we have to call this for everything but friends.
2989 if (!Constructor->getFriendObjectKind())
2990 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002991}
2992
John McCalldeb646e2010-08-04 01:04:25 +00002993/// CheckDestructor - Checks a fully-formed destructor definition for
2994/// well-formedness, issuing any diagnostics required. Returns true
2995/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002996bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002997 CXXRecordDecl *RD = Destructor->getParent();
2998
2999 if (Destructor->isVirtual()) {
3000 SourceLocation Loc;
3001
3002 if (!Destructor->isImplicit())
3003 Loc = Destructor->getLocation();
3004 else
3005 Loc = RD->getLocation();
3006
3007 // If we have a virtual destructor, look up the deallocation function
3008 FunctionDecl *OperatorDelete = 0;
3009 DeclarationName Name =
3010 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00003011 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00003012 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00003013
3014 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00003015
3016 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00003017 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00003018
3019 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00003020}
3021
Mike Stump11289f42009-09-09 15:08:12 +00003022static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00003023FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3024 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3025 FTI.ArgInfo[0].Param &&
John McCall48871652010-08-21 09:40:31 +00003026 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson5e965472009-04-30 23:18:11 +00003027}
3028
Douglas Gregor831c93f2008-11-05 20:51:48 +00003029/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3030/// the well-formednes of the destructor declarator @p D with type @p
3031/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00003032/// emit diagnostics and set the declarator to invalid. Even if this happens,
3033/// will be updated to reflect a well-formed type for the destructor and
3034/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00003035QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00003036 StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003037 // C++ [class.dtor]p1:
3038 // [...] A typedef-name that names a class is a class-name
3039 // (7.1.3); however, a typedef-name that names a class shall not
3040 // be used as the identifier in the declarator for a destructor
3041 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00003042 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00003043 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00003044 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00003045 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00003046
3047 // C++ [class.dtor]p2:
3048 // A destructor is used to destroy objects of its class type. A
3049 // destructor takes no parameters, and no return type can be
3050 // specified for it (not even void). The address of a destructor
3051 // shall not be taken. A destructor shall not be static. A
3052 // destructor can be invoked for a const, volatile or const
3053 // volatile object. A destructor shall not be declared const,
3054 // volatile or const volatile (9.3.2).
John McCall8e7d6562010-08-26 03:08:43 +00003055 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00003056 if (!D.isInvalidType())
3057 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3058 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00003059 << SourceRange(D.getIdentifierLoc())
3060 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3061
John McCall8e7d6562010-08-26 03:08:43 +00003062 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00003063 }
Chris Lattner38378bf2009-04-25 08:28:21 +00003064 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003065 // Destructors don't have return types, but the parser will
3066 // happily parse something like:
3067 //
3068 // class X {
3069 // float ~X();
3070 // };
3071 //
3072 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00003073 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3074 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3075 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003076 }
Mike Stump11289f42009-09-09 15:08:12 +00003077
Chris Lattner38378bf2009-04-25 08:28:21 +00003078 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3079 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003080 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003081 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3082 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003083 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003084 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3085 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003086 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003087 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3088 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003089 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003090 }
3091
3092 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003093 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003094 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3095
3096 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003097 FTI.freeArgs();
3098 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003099 }
3100
Mike Stump11289f42009-09-09 15:08:12 +00003101 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003102 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003103 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003104 D.setInvalidType();
3105 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003106
3107 // Rebuild the function type "R" without any type qualifiers or
3108 // parameters (in case any of the errors above fired) and with
3109 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00003110 // types.
3111 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3112 if (!Proto)
3113 return QualType();
3114
Douglas Gregor36c569f2010-02-21 22:15:06 +00003115 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00003116 Proto->hasExceptionSpec(),
3117 Proto->hasAnyExceptionSpec(),
3118 Proto->getNumExceptions(),
3119 Proto->exception_begin(),
3120 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003121}
3122
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003123/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3124/// well-formednes of the conversion function declarator @p D with
3125/// type @p R. If there are any errors in the declarator, this routine
3126/// will emit diagnostics and return true. Otherwise, it will return
3127/// false. Either way, the type @p R will be updated to reflect a
3128/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003129void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCall8e7d6562010-08-26 03:08:43 +00003130 StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003131 // C++ [class.conv.fct]p1:
3132 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003133 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003134 // parameter returning conversion-type-id."
John McCall8e7d6562010-08-26 03:08:43 +00003135 if (SC == SC_Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003136 if (!D.isInvalidType())
3137 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3138 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3139 << SourceRange(D.getIdentifierLoc());
3140 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00003141 SC = SC_None;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003142 }
John McCall212fa2e2010-04-13 00:04:31 +00003143
3144 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3145
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003146 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003147 // Conversion functions don't have return types, but the parser will
3148 // happily parse something like:
3149 //
3150 // class X {
3151 // float operator bool();
3152 // };
3153 //
3154 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003155 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3156 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3157 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003158 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003159 }
3160
John McCall212fa2e2010-04-13 00:04:31 +00003161 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3162
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003163 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003164 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003165 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3166
3167 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003168 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003169 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003170 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003171 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003172 D.setInvalidType();
3173 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003174
John McCall212fa2e2010-04-13 00:04:31 +00003175 // Diagnose "&operator bool()" and other such nonsense. This
3176 // is actually a gcc extension which we don't support.
3177 if (Proto->getResultType() != ConvType) {
3178 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3179 << Proto->getResultType();
3180 D.setInvalidType();
3181 ConvType = Proto->getResultType();
3182 }
3183
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003184 // C++ [class.conv.fct]p4:
3185 // The conversion-type-id shall not represent a function type nor
3186 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003187 if (ConvType->isArrayType()) {
3188 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3189 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003190 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003191 } else if (ConvType->isFunctionType()) {
3192 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3193 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003194 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003195 }
3196
3197 // Rebuild the function type "R" without any parameters (in case any
3198 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003199 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003200 if (D.isInvalidType()) {
3201 R = Context.getFunctionType(ConvType, 0, 0, false,
3202 Proto->getTypeQuals(),
3203 Proto->hasExceptionSpec(),
3204 Proto->hasAnyExceptionSpec(),
3205 Proto->getNumExceptions(),
3206 Proto->exception_begin(),
3207 Proto->getExtInfo());
3208 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003209
Douglas Gregor5fb53972009-01-14 15:45:31 +00003210 // C++0x explicit conversion operators.
3211 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003212 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003213 diag::warn_explicit_conversion_functions)
3214 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003215}
3216
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003217/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3218/// the declaration of the given C++ conversion function. This routine
3219/// is responsible for recording the conversion function in the C++
3220/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00003221Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003222 assert(Conversion && "Expected to receive a conversion function declaration");
3223
Douglas Gregor4287b372008-12-12 08:25:50 +00003224 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003225
3226 // Make sure we aren't redeclaring the conversion function.
3227 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003228
3229 // C++ [class.conv.fct]p1:
3230 // [...] A conversion function is never used to convert a
3231 // (possibly cv-qualified) object to the (possibly cv-qualified)
3232 // same object type (or a reference to it), to a (possibly
3233 // cv-qualified) base class of that type (or a reference to it),
3234 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003235 // FIXME: Suppress this warning if the conversion function ends up being a
3236 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003237 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003238 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003239 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003240 ConvType = ConvTypeRef->getPointeeType();
3241 if (ConvType->isRecordType()) {
3242 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3243 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003244 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003245 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003246 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003247 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003248 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003249 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003250 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003251 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003252 }
3253
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003254 if (Conversion->getPrimaryTemplate()) {
3255 // ignore specializations
3256 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003257 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003258 = Conversion->getDescribedFunctionTemplate()) {
3259 if (ClassDecl->replaceConversion(
3260 ConversionTemplate->getPreviousDeclaration(),
3261 ConversionTemplate))
John McCall48871652010-08-21 09:40:31 +00003262 return ConversionTemplate;
Douglas Gregor133bc742010-01-11 18:53:25 +00003263 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3264 Conversion))
John McCall48871652010-08-21 09:40:31 +00003265 return Conversion;
Douglas Gregor1dc98262008-12-26 15:00:45 +00003266 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003267 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003268 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003269 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003270 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003271 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003272
John McCall48871652010-08-21 09:40:31 +00003273 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003274}
3275
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003276//===----------------------------------------------------------------------===//
3277// Namespace Handling
3278//===----------------------------------------------------------------------===//
3279
John McCallb1be5232010-08-26 09:15:37 +00003280
3281
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003282/// ActOnStartNamespaceDef - This is called at the start of a namespace
3283/// definition.
John McCall48871652010-08-21 09:40:31 +00003284Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
John McCallb1be5232010-08-26 09:15:37 +00003285 SourceLocation IdentLoc,
3286 IdentifierInfo *II,
3287 SourceLocation LBrace,
3288 AttributeList *AttrList) {
Douglas Gregor086cae62010-08-19 20:55:47 +00003289 // anonymous namespace starts at its left brace
3290 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3291 (II ? IdentLoc : LBrace) , II);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003292 Namespc->setLBracLoc(LBrace);
3293
3294 Scope *DeclRegionScope = NamespcScope->getParent();
3295
Anders Carlssona7bcade2010-02-07 01:09:23 +00003296 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3297
Eli Friedman570024a2010-08-05 06:57:20 +00003298 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
John McCallb1be5232010-08-26 09:15:37 +00003299 PushVisibilityAttr(attr);
Eli Friedman570024a2010-08-05 06:57:20 +00003300
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003301 if (II) {
3302 // C++ [namespace.def]p2:
3303 // The identifier in an original-namespace-definition shall not have been
3304 // previously defined in the declarative region in which the
3305 // original-namespace-definition appears. The identifier in an
3306 // original-namespace-definition is the name of the namespace. Subsequently
3307 // in that declarative region, it is treated as an original-namespace-name.
3308
John McCall9f3059a2009-10-09 21:13:30 +00003309 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003310 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003311 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003312
Douglas Gregor91f84212008-12-11 16:49:14 +00003313 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3314 // This is an extended namespace definition.
3315 // Attach this namespace decl to the chain of extended namespace
3316 // definitions.
3317 OrigNS->setNextNamespace(Namespc);
3318 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003319
Mike Stump11289f42009-09-09 15:08:12 +00003320 // Remove the previous declaration from the scope.
John McCall48871652010-08-21 09:40:31 +00003321 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003322 IdResolver.RemoveDecl(OrigNS);
John McCall48871652010-08-21 09:40:31 +00003323 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003324 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003325 } else if (PrevDecl) {
3326 // This is an invalid name redefinition.
3327 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3328 << Namespc->getDeclName();
3329 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3330 Namespc->setInvalidDecl();
3331 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003332 } else if (II->isStr("std") &&
3333 CurContext->getLookupContext()->isTranslationUnit()) {
3334 // This is the first "real" definition of the namespace "std", so update
3335 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003336 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003337 // We had already defined a dummy namespace "std". Link this new
3338 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003339 StdNS->setNextNamespace(Namespc);
3340 StdNS->setLocation(IdentLoc);
3341 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00003342 }
3343
3344 // Make our StdNamespace cache point at the first real definition of the
3345 // "std" namespace.
3346 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003347 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003348
3349 PushOnScopeChains(Namespc, DeclRegionScope);
3350 } else {
John McCall4fa53422009-10-01 00:25:31 +00003351 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003352 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003353
3354 // Link the anonymous namespace into its parent.
3355 NamespaceDecl *PrevDecl;
3356 DeclContext *Parent = CurContext->getLookupContext();
3357 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3358 PrevDecl = TU->getAnonymousNamespace();
3359 TU->setAnonymousNamespace(Namespc);
3360 } else {
3361 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3362 PrevDecl = ND->getAnonymousNamespace();
3363 ND->setAnonymousNamespace(Namespc);
3364 }
3365
3366 // Link the anonymous namespace with its previous declaration.
3367 if (PrevDecl) {
3368 assert(PrevDecl->isAnonymousNamespace());
3369 assert(!PrevDecl->getNextNamespace());
3370 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3371 PrevDecl->setNextNamespace(Namespc);
3372 }
John McCall4fa53422009-10-01 00:25:31 +00003373
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003374 CurContext->addDecl(Namespc);
3375
John McCall4fa53422009-10-01 00:25:31 +00003376 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3377 // behaves as if it were replaced by
3378 // namespace unique { /* empty body */ }
3379 // using namespace unique;
3380 // namespace unique { namespace-body }
3381 // where all occurrences of 'unique' in a translation unit are
3382 // replaced by the same identifier and this identifier differs
3383 // from all other identifiers in the entire program.
3384
3385 // We just create the namespace with an empty name and then add an
3386 // implicit using declaration, just like the standard suggests.
3387 //
3388 // CodeGen enforces the "universally unique" aspect by giving all
3389 // declarations semantically contained within an anonymous
3390 // namespace internal linkage.
3391
John McCall0db42252009-12-16 02:06:49 +00003392 if (!PrevDecl) {
3393 UsingDirectiveDecl* UD
3394 = UsingDirectiveDecl::Create(Context, CurContext,
3395 /* 'using' */ LBrace,
3396 /* 'namespace' */ SourceLocation(),
3397 /* qualifier */ SourceRange(),
3398 /* NNS */ NULL,
3399 /* identifier */ SourceLocation(),
3400 Namespc,
3401 /* Ancestor */ CurContext);
3402 UD->setImplicit();
3403 CurContext->addDecl(UD);
3404 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003405 }
3406
3407 // Although we could have an invalid decl (i.e. the namespace name is a
3408 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003409 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3410 // for the namespace has the declarations that showed up in that particular
3411 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003412 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00003413 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003414}
3415
Sebastian Redla6602e92009-11-23 15:34:23 +00003416/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3417/// is a namespace alias, returns the namespace it points to.
3418static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3419 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3420 return AD->getNamespace();
3421 return dyn_cast_or_null<NamespaceDecl>(D);
3422}
3423
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003424/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3425/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00003426void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003427 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3428 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3429 Namespc->setRBracLoc(RBrace);
3430 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00003431 if (Namespc->hasAttr<VisibilityAttr>())
3432 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003433}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003434
John McCall28a0cf72010-08-25 07:42:41 +00003435CXXRecordDecl *Sema::getStdBadAlloc() const {
3436 return cast_or_null<CXXRecordDecl>(
3437 StdBadAlloc.get(Context.getExternalSource()));
3438}
3439
3440NamespaceDecl *Sema::getStdNamespace() const {
3441 return cast_or_null<NamespaceDecl>(
3442 StdNamespace.get(Context.getExternalSource()));
3443}
3444
Douglas Gregorcdf87022010-06-29 17:53:46 +00003445/// \brief Retrieve the special "std" namespace, which may require us to
3446/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003447NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00003448 if (!StdNamespace) {
3449 // The "std" namespace has not yet been defined, so build one implicitly.
3450 StdNamespace = NamespaceDecl::Create(Context,
3451 Context.getTranslationUnitDecl(),
3452 SourceLocation(),
3453 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003454 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003455 }
3456
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003457 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00003458}
3459
John McCall48871652010-08-21 09:40:31 +00003460Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00003461 SourceLocation UsingLoc,
3462 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003463 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003464 SourceLocation IdentLoc,
3465 IdentifierInfo *NamespcName,
3466 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003467 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3468 assert(NamespcName && "Invalid NamespcName.");
3469 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003470 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003471
Douglas Gregor889ceb72009-02-03 19:21:40 +00003472 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003473 NestedNameSpecifier *Qualifier = 0;
3474 if (SS.isSet())
3475 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3476
Douglas Gregor34074322009-01-14 22:20:51 +00003477 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003478 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3479 LookupParsedName(R, S, &SS);
3480 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00003481 return 0;
John McCall27b18f82009-11-17 02:14:36 +00003482
Douglas Gregorcdf87022010-06-29 17:53:46 +00003483 if (R.empty()) {
3484 // Allow "using namespace std;" or "using namespace ::std;" even if
3485 // "std" hasn't been defined yet, for GCC compatibility.
3486 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3487 NamespcName->isStr("std")) {
3488 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003489 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00003490 R.resolveKind();
3491 }
3492 // Otherwise, attempt typo correction.
3493 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3494 CTC_NoKeywords, 0)) {
3495 if (R.getAsSingle<NamespaceDecl>() ||
3496 R.getAsSingle<NamespaceAliasDecl>()) {
3497 if (DeclContext *DC = computeDeclContext(SS, false))
3498 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3499 << NamespcName << DC << Corrected << SS.getRange()
3500 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3501 else
3502 Diag(IdentLoc, diag::err_using_directive_suggest)
3503 << NamespcName << Corrected
3504 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3505 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3506 << Corrected;
3507
3508 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003509 } else {
3510 R.clear();
3511 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003512 }
3513 }
3514 }
3515
John McCall9f3059a2009-10-09 21:13:30 +00003516 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003517 NamedDecl *Named = R.getFoundDecl();
3518 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3519 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003520 // C++ [namespace.udir]p1:
3521 // A using-directive specifies that the names in the nominated
3522 // namespace can be used in the scope in which the
3523 // using-directive appears after the using-directive. During
3524 // unqualified name lookup (3.4.1), the names appear as if they
3525 // were declared in the nearest enclosing namespace which
3526 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003527 // namespace. [Note: in this context, "contains" means "contains
3528 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003529
3530 // Find enclosing context containing both using-directive and
3531 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003532 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003533 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3534 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3535 CommonAncestor = CommonAncestor->getParent();
3536
Sebastian Redla6602e92009-11-23 15:34:23 +00003537 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003538 SS.getRange(),
3539 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003540 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003541 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003542 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003543 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003544 }
3545
Douglas Gregor889ceb72009-02-03 19:21:40 +00003546 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003547 delete AttrList;
John McCall48871652010-08-21 09:40:31 +00003548 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00003549}
3550
3551void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3552 // If scope has associated entity, then using directive is at namespace
3553 // or translation unit scope. We add UsingDirectiveDecls, into
3554 // it's lookup structure.
3555 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003556 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003557 else
3558 // Otherwise it is block-sope. using-directives will affect lookup
3559 // only to the end of scope.
John McCall48871652010-08-21 09:40:31 +00003560 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003561}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003562
Douglas Gregorfec52632009-06-20 00:51:54 +00003563
John McCall48871652010-08-21 09:40:31 +00003564Decl *Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003565 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003566 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003567 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003568 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003569 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003570 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003571 bool IsTypeName,
3572 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003573 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003574
Douglas Gregor220f4272009-11-04 16:30:06 +00003575 switch (Name.getKind()) {
3576 case UnqualifiedId::IK_Identifier:
3577 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003578 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003579 case UnqualifiedId::IK_ConversionFunctionId:
3580 break;
3581
3582 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003583 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003584 // C++0x inherited constructors.
3585 if (getLangOptions().CPlusPlus0x) break;
3586
Douglas Gregor220f4272009-11-04 16:30:06 +00003587 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3588 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003589 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003590
3591 case UnqualifiedId::IK_DestructorName:
3592 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3593 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003594 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003595
3596 case UnqualifiedId::IK_TemplateId:
3597 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3598 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCall48871652010-08-21 09:40:31 +00003599 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003600 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003601
3602 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3603 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00003604 if (!TargetName)
John McCall48871652010-08-21 09:40:31 +00003605 return 0;
John McCall3969e302009-12-08 07:46:18 +00003606
John McCalla0097262009-12-11 02:10:03 +00003607 // Warn about using declarations.
3608 // TODO: store that the declaration was written without 'using' and
3609 // talk about access decls instead of using decls in the
3610 // diagnostics.
3611 if (!HasUsingKeyword) {
3612 UsingLoc = Name.getSourceRange().getBegin();
3613
3614 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003615 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003616 }
3617
John McCall3f746822009-11-17 05:59:44 +00003618 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003619 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003620 /* IsInstantiation */ false,
3621 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003622 if (UD)
3623 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003624
John McCall48871652010-08-21 09:40:31 +00003625 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00003626}
3627
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003628/// \brief Determine whether a using declaration considers the given
3629/// declarations as "equivalent", e.g., if they are redeclarations of
3630/// the same entity or are both typedefs of the same type.
3631static bool
3632IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3633 bool &SuppressRedeclaration) {
3634 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3635 SuppressRedeclaration = false;
3636 return true;
3637 }
3638
3639 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3640 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3641 SuppressRedeclaration = true;
3642 return Context.hasSameType(TD1->getUnderlyingType(),
3643 TD2->getUnderlyingType());
3644 }
3645
3646 return false;
3647}
3648
3649
John McCall84d87672009-12-10 09:41:52 +00003650/// Determines whether to create a using shadow decl for a particular
3651/// decl, given the set of decls existing prior to this using lookup.
3652bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3653 const LookupResult &Previous) {
3654 // Diagnose finding a decl which is not from a base class of the
3655 // current class. We do this now because there are cases where this
3656 // function will silently decide not to build a shadow decl, which
3657 // will pre-empt further diagnostics.
3658 //
3659 // We don't need to do this in C++0x because we do the check once on
3660 // the qualifier.
3661 //
3662 // FIXME: diagnose the following if we care enough:
3663 // struct A { int foo; };
3664 // struct B : A { using A::foo; };
3665 // template <class T> struct C : A {};
3666 // template <class T> struct D : C<T> { using B::foo; } // <---
3667 // This is invalid (during instantiation) in C++03 because B::foo
3668 // resolves to the using decl in B, which is not a base class of D<T>.
3669 // We can't diagnose it immediately because C<T> is an unknown
3670 // specialization. The UsingShadowDecl in D<T> then points directly
3671 // to A::foo, which will look well-formed when we instantiate.
3672 // The right solution is to not collapse the shadow-decl chain.
3673 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3674 DeclContext *OrigDC = Orig->getDeclContext();
3675
3676 // Handle enums and anonymous structs.
3677 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3678 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3679 while (OrigRec->isAnonymousStructOrUnion())
3680 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3681
3682 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3683 if (OrigDC == CurContext) {
3684 Diag(Using->getLocation(),
3685 diag::err_using_decl_nested_name_specifier_is_current_class)
3686 << Using->getNestedNameRange();
3687 Diag(Orig->getLocation(), diag::note_using_decl_target);
3688 return true;
3689 }
3690
3691 Diag(Using->getNestedNameRange().getBegin(),
3692 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3693 << Using->getTargetNestedNameDecl()
3694 << cast<CXXRecordDecl>(CurContext)
3695 << Using->getNestedNameRange();
3696 Diag(Orig->getLocation(), diag::note_using_decl_target);
3697 return true;
3698 }
3699 }
3700
3701 if (Previous.empty()) return false;
3702
3703 NamedDecl *Target = Orig;
3704 if (isa<UsingShadowDecl>(Target))
3705 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3706
John McCalla17e83e2009-12-11 02:33:26 +00003707 // If the target happens to be one of the previous declarations, we
3708 // don't have a conflict.
3709 //
3710 // FIXME: but we might be increasing its access, in which case we
3711 // should redeclare it.
3712 NamedDecl *NonTag = 0, *Tag = 0;
3713 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3714 I != E; ++I) {
3715 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003716 bool Result;
3717 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3718 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00003719
3720 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3721 }
3722
John McCall84d87672009-12-10 09:41:52 +00003723 if (Target->isFunctionOrFunctionTemplate()) {
3724 FunctionDecl *FD;
3725 if (isa<FunctionTemplateDecl>(Target))
3726 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3727 else
3728 FD = cast<FunctionDecl>(Target);
3729
3730 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003731 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003732 case Ovl_Overload:
3733 return false;
3734
3735 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003736 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003737 break;
3738
3739 // We found a decl with the exact signature.
3740 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003741 // If we're in a record, we want to hide the target, so we
3742 // return true (without a diagnostic) to tell the caller not to
3743 // build a shadow decl.
3744 if (CurContext->isRecord())
3745 return true;
3746
3747 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003748 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003749 break;
3750 }
3751
3752 Diag(Target->getLocation(), diag::note_using_decl_target);
3753 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3754 return true;
3755 }
3756
3757 // Target is not a function.
3758
John McCall84d87672009-12-10 09:41:52 +00003759 if (isa<TagDecl>(Target)) {
3760 // No conflict between a tag and a non-tag.
3761 if (!Tag) return false;
3762
John McCalle29c5cd2009-12-10 19:51:03 +00003763 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003764 Diag(Target->getLocation(), diag::note_using_decl_target);
3765 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3766 return true;
3767 }
3768
3769 // No conflict between a tag and a non-tag.
3770 if (!NonTag) return false;
3771
John McCalle29c5cd2009-12-10 19:51:03 +00003772 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003773 Diag(Target->getLocation(), diag::note_using_decl_target);
3774 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3775 return true;
3776}
3777
John McCall3f746822009-11-17 05:59:44 +00003778/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003779UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003780 UsingDecl *UD,
3781 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003782
3783 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003784 NamedDecl *Target = Orig;
3785 if (isa<UsingShadowDecl>(Target)) {
3786 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3787 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003788 }
3789
3790 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003791 = UsingShadowDecl::Create(Context, CurContext,
3792 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003793 UD->addShadowDecl(Shadow);
3794
3795 if (S)
John McCall3969e302009-12-08 07:46:18 +00003796 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003797 else
John McCall3969e302009-12-08 07:46:18 +00003798 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003799 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003800
John McCallda4458e2010-03-31 01:36:47 +00003801 // Register it as a conversion if appropriate.
3802 if (Shadow->getDeclName().getNameKind()
3803 == DeclarationName::CXXConversionFunctionName)
3804 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3805
John McCall3969e302009-12-08 07:46:18 +00003806 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3807 Shadow->setInvalidDecl();
3808
John McCall84d87672009-12-10 09:41:52 +00003809 return Shadow;
3810}
John McCall3969e302009-12-08 07:46:18 +00003811
John McCall84d87672009-12-10 09:41:52 +00003812/// Hides a using shadow declaration. This is required by the current
3813/// using-decl implementation when a resolvable using declaration in a
3814/// class is followed by a declaration which would hide or override
3815/// one or more of the using decl's targets; for example:
3816///
3817/// struct Base { void foo(int); };
3818/// struct Derived : Base {
3819/// using Base::foo;
3820/// void foo(int);
3821/// };
3822///
3823/// The governing language is C++03 [namespace.udecl]p12:
3824///
3825/// When a using-declaration brings names from a base class into a
3826/// derived class scope, member functions in the derived class
3827/// override and/or hide member functions with the same name and
3828/// parameter types in a base class (rather than conflicting).
3829///
3830/// There are two ways to implement this:
3831/// (1) optimistically create shadow decls when they're not hidden
3832/// by existing declarations, or
3833/// (2) don't create any shadow decls (or at least don't make them
3834/// visible) until we've fully parsed/instantiated the class.
3835/// The problem with (1) is that we might have to retroactively remove
3836/// a shadow decl, which requires several O(n) operations because the
3837/// decl structures are (very reasonably) not designed for removal.
3838/// (2) avoids this but is very fiddly and phase-dependent.
3839void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003840 if (Shadow->getDeclName().getNameKind() ==
3841 DeclarationName::CXXConversionFunctionName)
3842 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3843
John McCall84d87672009-12-10 09:41:52 +00003844 // Remove it from the DeclContext...
3845 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003846
John McCall84d87672009-12-10 09:41:52 +00003847 // ...and the scope, if applicable...
3848 if (S) {
John McCall48871652010-08-21 09:40:31 +00003849 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003850 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003851 }
3852
John McCall84d87672009-12-10 09:41:52 +00003853 // ...and the using decl.
3854 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3855
3856 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003857 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003858}
3859
John McCalle61f2ba2009-11-18 02:36:19 +00003860/// Builds a using declaration.
3861///
3862/// \param IsInstantiation - Whether this call arises from an
3863/// instantiation of an unresolved using declaration. We treat
3864/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003865NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3866 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003867 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003868 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003869 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003870 bool IsInstantiation,
3871 bool IsTypeName,
3872 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003873 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003874 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00003875 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003876
Anders Carlssonf038fc22009-08-28 05:49:21 +00003877 // FIXME: We ignore attributes for now.
3878 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003879
Anders Carlsson59140b32009-08-28 03:16:11 +00003880 if (SS.isEmpty()) {
3881 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003882 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003883 }
Mike Stump11289f42009-09-09 15:08:12 +00003884
John McCall84d87672009-12-10 09:41:52 +00003885 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003886 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00003887 ForRedeclaration);
3888 Previous.setHideTags(false);
3889 if (S) {
3890 LookupName(Previous, S);
3891
3892 // It is really dumb that we have to do this.
3893 LookupResult::Filter F = Previous.makeFilter();
3894 while (F.hasNext()) {
3895 NamedDecl *D = F.next();
3896 if (!isDeclInScope(D, CurContext, S))
3897 F.erase();
3898 }
3899 F.done();
3900 } else {
3901 assert(IsInstantiation && "no scope in non-instantiation");
3902 assert(CurContext->isRecord() && "scope not record in instantiation");
3903 LookupQualifiedName(Previous, CurContext);
3904 }
3905
Mike Stump11289f42009-09-09 15:08:12 +00003906 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003907 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3908
John McCall84d87672009-12-10 09:41:52 +00003909 // Check for invalid redeclarations.
3910 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3911 return 0;
3912
3913 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003914 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3915 return 0;
3916
John McCall84c16cf2009-11-12 03:15:40 +00003917 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003918 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003919 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003920 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003921 // FIXME: not all declaration name kinds are legal here
3922 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3923 UsingLoc, TypenameLoc,
3924 SS.getRange(), NNS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003925 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00003926 } else {
3927 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003928 UsingLoc, SS.getRange(),
3929 NNS, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00003930 }
John McCallb96ec562009-12-04 22:46:56 +00003931 } else {
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003932 D = UsingDecl::Create(Context, CurContext,
3933 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00003934 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003935 }
John McCallb96ec562009-12-04 22:46:56 +00003936 D->setAccess(AS);
3937 CurContext->addDecl(D);
3938
3939 if (!LookupContext) return D;
3940 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003941
John McCall0b66eb32010-05-01 00:40:08 +00003942 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003943 UD->setInvalidDecl();
3944 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003945 }
3946
John McCall3969e302009-12-08 07:46:18 +00003947 // Look up the target name.
3948
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003949 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003950
John McCall3969e302009-12-08 07:46:18 +00003951 // Unlike most lookups, we don't always want to hide tag
3952 // declarations: tag names are visible through the using declaration
3953 // even if hidden by ordinary names, *except* in a dependent context
3954 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003955 if (!IsInstantiation)
3956 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003957
John McCall27b18f82009-11-17 02:14:36 +00003958 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003959
John McCall9f3059a2009-10-09 21:13:30 +00003960 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003961 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003962 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003963 UD->setInvalidDecl();
3964 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003965 }
3966
John McCallb96ec562009-12-04 22:46:56 +00003967 if (R.isAmbiguous()) {
3968 UD->setInvalidDecl();
3969 return UD;
3970 }
Mike Stump11289f42009-09-09 15:08:12 +00003971
John McCalle61f2ba2009-11-18 02:36:19 +00003972 if (IsTypeName) {
3973 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003974 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003975 Diag(IdentLoc, diag::err_using_typename_non_type);
3976 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3977 Diag((*I)->getUnderlyingDecl()->getLocation(),
3978 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003979 UD->setInvalidDecl();
3980 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003981 }
3982 } else {
3983 // If we asked for a non-typename and we got a type, error out,
3984 // but only if this is an instantiation of an unresolved using
3985 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003986 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003987 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3988 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003989 UD->setInvalidDecl();
3990 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003991 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003992 }
3993
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003994 // C++0x N2914 [namespace.udecl]p6:
3995 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003996 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003997 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3998 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003999 UD->setInvalidDecl();
4000 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00004001 }
Mike Stump11289f42009-09-09 15:08:12 +00004002
John McCall84d87672009-12-10 09:41:52 +00004003 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
4004 if (!CheckUsingShadowDecl(UD, *I, Previous))
4005 BuildUsingShadowDecl(S, UD, *I);
4006 }
John McCall3f746822009-11-17 05:59:44 +00004007
4008 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00004009}
4010
John McCall84d87672009-12-10 09:41:52 +00004011/// Checks that the given using declaration is not an invalid
4012/// redeclaration. Note that this is checking only for the using decl
4013/// itself, not for any ill-formedness among the UsingShadowDecls.
4014bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4015 bool isTypeName,
4016 const CXXScopeSpec &SS,
4017 SourceLocation NameLoc,
4018 const LookupResult &Prev) {
4019 // C++03 [namespace.udecl]p8:
4020 // C++0x [namespace.udecl]p10:
4021 // A using-declaration is a declaration and can therefore be used
4022 // repeatedly where (and only where) multiple declarations are
4023 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00004024 //
4025 // That's in non-member contexts.
4026 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00004027 return false;
4028
4029 NestedNameSpecifier *Qual
4030 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4031
4032 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4033 NamedDecl *D = *I;
4034
4035 bool DTypename;
4036 NestedNameSpecifier *DQual;
4037 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4038 DTypename = UD->isTypeName();
4039 DQual = UD->getTargetNestedNameDecl();
4040 } else if (UnresolvedUsingValueDecl *UD
4041 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4042 DTypename = false;
4043 DQual = UD->getTargetNestedNameSpecifier();
4044 } else if (UnresolvedUsingTypenameDecl *UD
4045 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4046 DTypename = true;
4047 DQual = UD->getTargetNestedNameSpecifier();
4048 } else continue;
4049
4050 // using decls differ if one says 'typename' and the other doesn't.
4051 // FIXME: non-dependent using decls?
4052 if (isTypeName != DTypename) continue;
4053
4054 // using decls differ if they name different scopes (but note that
4055 // template instantiation can cause this check to trigger when it
4056 // didn't before instantiation).
4057 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4058 Context.getCanonicalNestedNameSpecifier(DQual))
4059 continue;
4060
4061 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00004062 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00004063 return true;
4064 }
4065
4066 return false;
4067}
4068
John McCall3969e302009-12-08 07:46:18 +00004069
John McCallb96ec562009-12-04 22:46:56 +00004070/// Checks that the given nested-name qualifier used in a using decl
4071/// in the current context is appropriately related to the current
4072/// scope. If an error is found, diagnoses it and returns true.
4073bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4074 const CXXScopeSpec &SS,
4075 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00004076 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00004077
John McCall3969e302009-12-08 07:46:18 +00004078 if (!CurContext->isRecord()) {
4079 // C++03 [namespace.udecl]p3:
4080 // C++0x [namespace.udecl]p8:
4081 // A using-declaration for a class member shall be a member-declaration.
4082
4083 // If we weren't able to compute a valid scope, it must be a
4084 // dependent class scope.
4085 if (!NamedContext || NamedContext->isRecord()) {
4086 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4087 << SS.getRange();
4088 return true;
4089 }
4090
4091 // Otherwise, everything is known to be fine.
4092 return false;
4093 }
4094
4095 // The current scope is a record.
4096
4097 // If the named context is dependent, we can't decide much.
4098 if (!NamedContext) {
4099 // FIXME: in C++0x, we can diagnose if we can prove that the
4100 // nested-name-specifier does not refer to a base class, which is
4101 // still possible in some cases.
4102
4103 // Otherwise we have to conservatively report that things might be
4104 // okay.
4105 return false;
4106 }
4107
4108 if (!NamedContext->isRecord()) {
4109 // Ideally this would point at the last name in the specifier,
4110 // but we don't have that level of source info.
4111 Diag(SS.getRange().getBegin(),
4112 diag::err_using_decl_nested_name_specifier_is_not_class)
4113 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4114 return true;
4115 }
4116
4117 if (getLangOptions().CPlusPlus0x) {
4118 // C++0x [namespace.udecl]p3:
4119 // In a using-declaration used as a member-declaration, the
4120 // nested-name-specifier shall name a base class of the class
4121 // being defined.
4122
4123 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4124 cast<CXXRecordDecl>(NamedContext))) {
4125 if (CurContext == NamedContext) {
4126 Diag(NameLoc,
4127 diag::err_using_decl_nested_name_specifier_is_current_class)
4128 << SS.getRange();
4129 return true;
4130 }
4131
4132 Diag(SS.getRange().getBegin(),
4133 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4134 << (NestedNameSpecifier*) SS.getScopeRep()
4135 << cast<CXXRecordDecl>(CurContext)
4136 << SS.getRange();
4137 return true;
4138 }
4139
4140 return false;
4141 }
4142
4143 // C++03 [namespace.udecl]p4:
4144 // A using-declaration used as a member-declaration shall refer
4145 // to a member of a base class of the class being defined [etc.].
4146
4147 // Salient point: SS doesn't have to name a base class as long as
4148 // lookup only finds members from base classes. Therefore we can
4149 // diagnose here only if we can prove that that can't happen,
4150 // i.e. if the class hierarchies provably don't intersect.
4151
4152 // TODO: it would be nice if "definitely valid" results were cached
4153 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4154 // need to be repeated.
4155
4156 struct UserData {
4157 llvm::DenseSet<const CXXRecordDecl*> Bases;
4158
4159 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4160 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4161 Data->Bases.insert(Base);
4162 return true;
4163 }
4164
4165 bool hasDependentBases(const CXXRecordDecl *Class) {
4166 return !Class->forallBases(collect, this);
4167 }
4168
4169 /// Returns true if the base is dependent or is one of the
4170 /// accumulated base classes.
4171 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4172 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4173 return !Data->Bases.count(Base);
4174 }
4175
4176 bool mightShareBases(const CXXRecordDecl *Class) {
4177 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4178 }
4179 };
4180
4181 UserData Data;
4182
4183 // Returns false if we find a dependent base.
4184 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4185 return false;
4186
4187 // Returns false if the class has a dependent base or if it or one
4188 // of its bases is present in the base set of the current context.
4189 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4190 return false;
4191
4192 Diag(SS.getRange().getBegin(),
4193 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4194 << (NestedNameSpecifier*) SS.getScopeRep()
4195 << cast<CXXRecordDecl>(CurContext)
4196 << SS.getRange();
4197
4198 return true;
John McCallb96ec562009-12-04 22:46:56 +00004199}
4200
John McCall48871652010-08-21 09:40:31 +00004201Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004202 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004203 SourceLocation AliasLoc,
4204 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004205 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004206 SourceLocation IdentLoc,
4207 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004208
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004209 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004210 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4211 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004212
Anders Carlssondca83c42009-03-28 06:23:46 +00004213 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004214 NamedDecl *PrevDecl
4215 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4216 ForRedeclaration);
4217 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4218 PrevDecl = 0;
4219
4220 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004221 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004222 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004223 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004224 // FIXME: At some point, we'll want to create the (redundant)
4225 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004226 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004227 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCall48871652010-08-21 09:40:31 +00004228 return 0;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004229 }
Mike Stump11289f42009-09-09 15:08:12 +00004230
Anders Carlssondca83c42009-03-28 06:23:46 +00004231 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4232 diag::err_redefinition_different_kind;
4233 Diag(AliasLoc, DiagID) << Alias;
4234 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCall48871652010-08-21 09:40:31 +00004235 return 0;
Anders Carlssondca83c42009-03-28 06:23:46 +00004236 }
4237
John McCall27b18f82009-11-17 02:14:36 +00004238 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00004239 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00004240
John McCall9f3059a2009-10-09 21:13:30 +00004241 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004242 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4243 CTC_NoKeywords, 0)) {
4244 if (R.getAsSingle<NamespaceDecl>() ||
4245 R.getAsSingle<NamespaceAliasDecl>()) {
4246 if (DeclContext *DC = computeDeclContext(SS, false))
4247 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4248 << Ident << DC << Corrected << SS.getRange()
4249 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4250 else
4251 Diag(IdentLoc, diag::err_using_directive_suggest)
4252 << Ident << Corrected
4253 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4254
4255 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4256 << Corrected;
4257
4258 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004259 } else {
4260 R.clear();
4261 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004262 }
4263 }
4264
4265 if (R.empty()) {
4266 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004267 return 0;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004268 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004269 }
Mike Stump11289f42009-09-09 15:08:12 +00004270
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004271 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004272 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4273 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004274 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004275 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004276
John McCalld8d0d432010-02-16 06:53:13 +00004277 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00004278 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00004279}
4280
Douglas Gregora57478e2010-05-01 15:04:51 +00004281namespace {
4282 /// \brief Scoped object used to handle the state changes required in Sema
4283 /// to implicitly define the body of a C++ member function;
4284 class ImplicitlyDefinedFunctionScope {
4285 Sema &S;
4286 DeclContext *PreviousContext;
4287
4288 public:
4289 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4290 : S(S), PreviousContext(S.CurContext)
4291 {
4292 S.CurContext = Method;
4293 S.PushFunctionScope();
4294 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4295 }
4296
4297 ~ImplicitlyDefinedFunctionScope() {
4298 S.PopExpressionEvaluationContext();
4299 S.PopFunctionOrBlockScope();
4300 S.CurContext = PreviousContext;
4301 }
4302 };
4303}
4304
Douglas Gregor0be31a22010-07-02 17:43:08 +00004305CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4306 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004307 // C++ [class.ctor]p5:
4308 // A default constructor for a class X is a constructor of class X
4309 // that can be called without an argument. If there is no
4310 // user-declared constructor for class X, a default constructor is
4311 // implicitly declared. An implicitly-declared default constructor
4312 // is an inline public member of its class.
Douglas Gregor9672f922010-07-03 00:47:00 +00004313 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4314 "Should not build implicit default constructor!");
4315
Douglas Gregor6d880b12010-07-01 22:31:05 +00004316 // C++ [except.spec]p14:
4317 // An implicitly declared special member function (Clause 12) shall have an
4318 // exception-specification. [...]
4319 ImplicitExceptionSpecification ExceptSpec(Context);
4320
4321 // Direct base-class destructors.
4322 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4323 BEnd = ClassDecl->bases_end();
4324 B != BEnd; ++B) {
4325 if (B->isVirtual()) // Handled below.
4326 continue;
4327
Douglas Gregor9672f922010-07-03 00:47:00 +00004328 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4329 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4330 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4331 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4332 else if (CXXConstructorDecl *Constructor
4333 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004334 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004335 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004336 }
4337
4338 // Virtual base-class destructors.
4339 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4340 BEnd = ClassDecl->vbases_end();
4341 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00004342 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4343 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4344 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4345 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4346 else if (CXXConstructorDecl *Constructor
4347 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004348 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004349 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004350 }
4351
4352 // Field destructors.
4353 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4354 FEnd = ClassDecl->field_end();
4355 F != FEnd; ++F) {
4356 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00004357 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4358 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4359 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4360 ExceptSpec.CalledDecl(
4361 DeclareImplicitDefaultConstructor(FieldClassDecl));
4362 else if (CXXConstructorDecl *Constructor
4363 = FieldClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004364 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004365 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004366 }
4367
4368
4369 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004370 CanQualType ClassType
4371 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4372 DeclarationName Name
4373 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004374 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004375 CXXConstructorDecl *DefaultCon
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004376 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004377 Context.getFunctionType(Context.VoidTy,
4378 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004379 ExceptSpec.hasExceptionSpecification(),
4380 ExceptSpec.hasAnyExceptionSpecification(),
4381 ExceptSpec.size(),
4382 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004383 FunctionType::ExtInfo()),
4384 /*TInfo=*/0,
4385 /*isExplicit=*/false,
4386 /*isInline=*/true,
4387 /*isImplicitlyDeclared=*/true);
4388 DefaultCon->setAccess(AS_public);
4389 DefaultCon->setImplicit();
4390 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00004391
4392 // Note that we have declared this constructor.
4393 ClassDecl->setDeclaredDefaultConstructor(true);
4394 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4395
Douglas Gregor0be31a22010-07-02 17:43:08 +00004396 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00004397 PushOnScopeChains(DefaultCon, S, false);
4398 ClassDecl->addDecl(DefaultCon);
4399
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004400 return DefaultCon;
4401}
4402
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004403void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4404 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004405 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004406 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004407 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004408
Anders Carlsson423f5d82010-04-23 16:04:08 +00004409 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004410 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004411
Douglas Gregora57478e2010-05-01 15:04:51 +00004412 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004413 ErrorTrap Trap(*this);
4414 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4415 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004416 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004417 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004418 Constructor->setInvalidDecl();
4419 } else {
4420 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004421 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004422 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004423}
4424
Douglas Gregor0be31a22010-07-02 17:43:08 +00004425CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004426 // C++ [class.dtor]p2:
4427 // If a class has no user-declared destructor, a destructor is
4428 // declared implicitly. An implicitly-declared destructor is an
4429 // inline public member of its class.
4430
4431 // C++ [except.spec]p14:
4432 // An implicitly declared special member function (Clause 12) shall have
4433 // an exception-specification.
4434 ImplicitExceptionSpecification ExceptSpec(Context);
4435
4436 // Direct base-class destructors.
4437 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4438 BEnd = ClassDecl->bases_end();
4439 B != BEnd; ++B) {
4440 if (B->isVirtual()) // Handled below.
4441 continue;
4442
4443 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4444 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004445 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004446 }
4447
4448 // Virtual base-class destructors.
4449 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4450 BEnd = ClassDecl->vbases_end();
4451 B != BEnd; ++B) {
4452 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4453 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004454 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004455 }
4456
4457 // Field destructors.
4458 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4459 FEnd = ClassDecl->field_end();
4460 F != FEnd; ++F) {
4461 if (const RecordType *RecordTy
4462 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4463 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004464 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004465 }
4466
Douglas Gregor7454c562010-07-02 20:37:36 +00004467 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00004468 QualType Ty = Context.getFunctionType(Context.VoidTy,
4469 0, 0, false, 0,
4470 ExceptSpec.hasExceptionSpecification(),
4471 ExceptSpec.hasAnyExceptionSpecification(),
4472 ExceptSpec.size(),
4473 ExceptSpec.data(),
4474 FunctionType::ExtInfo());
4475
4476 CanQualType ClassType
4477 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4478 DeclarationName Name
4479 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004480 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf1203042010-07-01 19:09:28 +00004481 CXXDestructorDecl *Destructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004482 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty,
Douglas Gregorf1203042010-07-01 19:09:28 +00004483 /*isInline=*/true,
4484 /*isImplicitlyDeclared=*/true);
4485 Destructor->setAccess(AS_public);
4486 Destructor->setImplicit();
4487 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00004488
4489 // Note that we have declared this destructor.
4490 ClassDecl->setDeclaredDestructor(true);
4491 ++ASTContext::NumImplicitDestructorsDeclared;
4492
4493 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004494 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00004495 PushOnScopeChains(Destructor, S, false);
4496 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00004497
4498 // This could be uniqued if it ever proves significant.
4499 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4500
4501 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00004502
Douglas Gregorf1203042010-07-01 19:09:28 +00004503 return Destructor;
4504}
4505
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004506void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004507 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004508 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004509 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004510 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004511 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004512
Douglas Gregor54818f02010-05-12 16:39:35 +00004513 if (Destructor->isInvalidDecl())
4514 return;
4515
Douglas Gregora57478e2010-05-01 15:04:51 +00004516 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004517
Douglas Gregor54818f02010-05-12 16:39:35 +00004518 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004519 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4520 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004521
Douglas Gregor54818f02010-05-12 16:39:35 +00004522 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004523 Diag(CurrentLocation, diag::note_member_synthesized_at)
4524 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4525
4526 Destructor->setInvalidDecl();
4527 return;
4528 }
4529
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004530 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004531 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004532}
4533
Douglas Gregorb139cd52010-05-01 20:49:11 +00004534/// \brief Builds a statement that copies the given entity from \p From to
4535/// \c To.
4536///
4537/// This routine is used to copy the members of a class with an
4538/// implicitly-declared copy assignment operator. When the entities being
4539/// copied are arrays, this routine builds for loops to copy them.
4540///
4541/// \param S The Sema object used for type-checking.
4542///
4543/// \param Loc The location where the implicit copy is being generated.
4544///
4545/// \param T The type of the expressions being copied. Both expressions must
4546/// have this type.
4547///
4548/// \param To The expression we are copying to.
4549///
4550/// \param From The expression we are copying from.
4551///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004552/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4553/// Otherwise, it's a non-static member subobject.
4554///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004555/// \param Depth Internal parameter recording the depth of the recursion.
4556///
4557/// \returns A statement or a loop that copies the expressions.
John McCalldadc5752010-08-24 06:29:42 +00004558static StmtResult
Douglas Gregorb139cd52010-05-01 20:49:11 +00004559BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCallb268a282010-08-23 23:25:46 +00004560 Expr *To, Expr *From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004561 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004562 // C++0x [class.copy]p30:
4563 // Each subobject is assigned in the manner appropriate to its type:
4564 //
4565 // - if the subobject is of class type, the copy assignment operator
4566 // for the class is used (as if by explicit qualification; that is,
4567 // ignoring any possible virtual overriding functions in more derived
4568 // classes);
4569 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4570 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4571
4572 // Look for operator=.
4573 DeclarationName Name
4574 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4575 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4576 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4577
4578 // Filter out any result that isn't a copy-assignment operator.
4579 LookupResult::Filter F = OpLookup.makeFilter();
4580 while (F.hasNext()) {
4581 NamedDecl *D = F.next();
4582 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4583 if (Method->isCopyAssignmentOperator())
4584 continue;
4585
4586 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004587 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004588 F.done();
4589
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004590 // Suppress the protected check (C++ [class.protected]) for each of the
4591 // assignment operators we found. This strange dance is required when
4592 // we're assigning via a base classes's copy-assignment operator. To
4593 // ensure that we're getting the right base class subobject (without
4594 // ambiguities), we need to cast "this" to that subobject type; to
4595 // ensure that we don't go through the virtual call mechanism, we need
4596 // to qualify the operator= name with the base class (see below). However,
4597 // this means that if the base class has a protected copy assignment
4598 // operator, the protected member access check will fail. So, we
4599 // rewrite "protected" access to "public" access in this case, since we
4600 // know by construction that we're calling from a derived class.
4601 if (CopyingBaseSubobject) {
4602 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4603 L != LEnd; ++L) {
4604 if (L.getAccess() == AS_protected)
4605 L.setAccess(AS_public);
4606 }
4607 }
4608
Douglas Gregorb139cd52010-05-01 20:49:11 +00004609 // Create the nested-name-specifier that will be used to qualify the
4610 // reference to operator=; this is required to suppress the virtual
4611 // call mechanism.
4612 CXXScopeSpec SS;
4613 SS.setRange(Loc);
4614 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4615 T.getTypePtr()));
4616
4617 // Create the reference to operator=.
John McCalldadc5752010-08-24 06:29:42 +00004618 ExprResult OpEqualRef
John McCallb268a282010-08-23 23:25:46 +00004619 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004620 /*FirstQualifierInScope=*/0, OpLookup,
4621 /*TemplateArgs=*/0,
4622 /*SuppressQualifierCheck=*/true);
4623 if (OpEqualRef.isInvalid())
4624 return S.StmtError();
4625
4626 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00004627
John McCalldadc5752010-08-24 06:29:42 +00004628 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004629 OpEqualRef.takeAs<Expr>(),
John McCallb268a282010-08-23 23:25:46 +00004630 Loc, &From, 1, 0, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004631 if (Call.isInvalid())
4632 return S.StmtError();
4633
4634 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004635 }
John McCallab8c2732010-03-16 06:11:48 +00004636
Douglas Gregorb139cd52010-05-01 20:49:11 +00004637 // - if the subobject is of scalar type, the built-in assignment
4638 // operator is used.
4639 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4640 if (!ArrayTy) {
John McCalle3027922010-08-25 11:45:40 +00004641 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004642 if (Assignment.isInvalid())
4643 return S.StmtError();
4644
4645 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004646 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004647
4648 // - if the subobject is an array, each element is assigned, in the
4649 // manner appropriate to the element type;
4650
4651 // Construct a loop over the array bounds, e.g.,
4652 //
4653 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4654 //
4655 // that will copy each of the array elements.
4656 QualType SizeType = S.Context.getSizeType();
4657
4658 // Create the iteration variable.
4659 IdentifierInfo *IterationVarName = 0;
4660 {
4661 llvm::SmallString<8> Str;
4662 llvm::raw_svector_ostream OS(Str);
4663 OS << "__i" << Depth;
4664 IterationVarName = &S.Context.Idents.get(OS.str());
4665 }
4666 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4667 IterationVarName, SizeType,
4668 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00004669 SC_None, SC_None);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004670
4671 // Initialize the iteration variable to zero.
4672 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4673 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4674
4675 // Create a reference to the iteration variable; we'll use this several
4676 // times throughout.
4677 Expr *IterationVarRef
4678 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4679 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4680
4681 // Create the DeclStmt that holds the iteration variable.
4682 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4683
4684 // Create the comparison against the array bound.
4685 llvm::APInt Upper = ArrayTy->getSize();
4686 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCallb268a282010-08-23 23:25:46 +00004687 Expr *Comparison
4688 = new (S.Context) BinaryOperator(IterationVarRef->Retain(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00004689 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
John McCalle3027922010-08-25 11:45:40 +00004690 BO_NE, S.Context.BoolTy, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004691
4692 // Create the pre-increment of the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004693 Expr *Increment
4694 = new (S.Context) UnaryOperator(IterationVarRef->Retain(),
John McCalle3027922010-08-25 11:45:40 +00004695 UO_PreInc,
John McCallb268a282010-08-23 23:25:46 +00004696 SizeType, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004697
4698 // Subscript the "from" and "to" expressions with the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004699 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
4700 IterationVarRef, Loc));
4701 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
4702 IterationVarRef, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004703
4704 // Build the copy for an individual element of the array.
John McCalldadc5752010-08-24 06:29:42 +00004705 StmtResult Copy = BuildSingleCopyAssign(S, Loc,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004706 ArrayTy->getElementType(),
John McCallb268a282010-08-23 23:25:46 +00004707 To, From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004708 CopyingBaseSubobject, Depth+1);
Douglas Gregorb412e172010-07-25 18:17:45 +00004709 if (Copy.isInvalid())
Douglas Gregorb139cd52010-05-01 20:49:11 +00004710 return S.StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004711
4712 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00004713 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004714 S.MakeFullExpr(Comparison),
John McCall48871652010-08-21 09:40:31 +00004715 0, S.MakeFullExpr(Increment),
John McCallb268a282010-08-23 23:25:46 +00004716 Loc, Copy.take());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004717}
4718
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004719/// \brief Determine whether the given class has a copy assignment operator
4720/// that accepts a const-qualified argument.
4721static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4722 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4723
4724 if (!Class->hasDeclaredCopyAssignment())
4725 S.DeclareImplicitCopyAssignment(Class);
4726
4727 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4728 DeclarationName OpName
4729 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4730
4731 DeclContext::lookup_const_iterator Op, OpEnd;
4732 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4733 // C++ [class.copy]p9:
4734 // A user-declared copy assignment operator is a non-static non-template
4735 // member function of class X with exactly one parameter of type X, X&,
4736 // const X&, volatile X& or const volatile X&.
4737 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4738 if (!Method)
4739 continue;
4740
4741 if (Method->isStatic())
4742 continue;
4743 if (Method->getPrimaryTemplate())
4744 continue;
4745 const FunctionProtoType *FnType =
4746 Method->getType()->getAs<FunctionProtoType>();
4747 assert(FnType && "Overloaded operator has no prototype.");
4748 // Don't assert on this; an invalid decl might have been left in the AST.
4749 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4750 continue;
4751 bool AcceptsConst = true;
4752 QualType ArgType = FnType->getArgType(0);
4753 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4754 ArgType = Ref->getPointeeType();
4755 // Is it a non-const lvalue reference?
4756 if (!ArgType.isConstQualified())
4757 AcceptsConst = false;
4758 }
4759 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4760 continue;
4761
4762 // We have a single argument of type cv X or cv X&, i.e. we've found the
4763 // copy assignment operator. Return whether it accepts const arguments.
4764 return AcceptsConst;
4765 }
4766 assert(Class->isInvalidDecl() &&
4767 "No copy assignment operator declared in valid code.");
4768 return false;
4769}
4770
Douglas Gregor0be31a22010-07-02 17:43:08 +00004771CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004772 // Note: The following rules are largely analoguous to the copy
4773 // constructor rules. Note that virtual bases are not taken into account
4774 // for determining the argument type of the operator. Note also that
4775 // operators taking an object instead of a reference are allowed.
Douglas Gregor9672f922010-07-03 00:47:00 +00004776
4777
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004778 // C++ [class.copy]p10:
4779 // If the class definition does not explicitly declare a copy
4780 // assignment operator, one is declared implicitly.
4781 // The implicitly-defined copy assignment operator for a class X
4782 // will have the form
4783 //
4784 // X& X::operator=(const X&)
4785 //
4786 // if
4787 bool HasConstCopyAssignment = true;
4788
4789 // -- each direct base class B of X has a copy assignment operator
4790 // whose parameter is of type const B&, const volatile B& or B,
4791 // and
4792 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4793 BaseEnd = ClassDecl->bases_end();
4794 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4795 assert(!Base->getType()->isDependentType() &&
4796 "Cannot generate implicit members for class with dependent bases.");
4797 const CXXRecordDecl *BaseClassDecl
4798 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004799 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004800 }
4801
4802 // -- for all the nonstatic data members of X that are of a class
4803 // type M (or array thereof), each such class type has a copy
4804 // assignment operator whose parameter is of type const M&,
4805 // const volatile M& or M.
4806 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4807 FieldEnd = ClassDecl->field_end();
4808 HasConstCopyAssignment && Field != FieldEnd;
4809 ++Field) {
4810 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4811 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4812 const CXXRecordDecl *FieldClassDecl
4813 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004814 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004815 }
4816 }
4817
4818 // Otherwise, the implicitly declared copy assignment operator will
4819 // have the form
4820 //
4821 // X& X::operator=(X&)
4822 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4823 QualType RetType = Context.getLValueReferenceType(ArgType);
4824 if (HasConstCopyAssignment)
4825 ArgType = ArgType.withConst();
4826 ArgType = Context.getLValueReferenceType(ArgType);
4827
Douglas Gregor68e11362010-07-01 17:48:08 +00004828 // C++ [except.spec]p14:
4829 // An implicitly declared special member function (Clause 12) shall have an
4830 // exception-specification. [...]
4831 ImplicitExceptionSpecification ExceptSpec(Context);
4832 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4833 BaseEnd = ClassDecl->bases_end();
4834 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004835 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004836 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004837
4838 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4839 DeclareImplicitCopyAssignment(BaseClassDecl);
4840
Douglas Gregor68e11362010-07-01 17:48:08 +00004841 if (CXXMethodDecl *CopyAssign
4842 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4843 ExceptSpec.CalledDecl(CopyAssign);
4844 }
4845 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4846 FieldEnd = ClassDecl->field_end();
4847 Field != FieldEnd;
4848 ++Field) {
4849 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4850 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004851 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004852 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004853
4854 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4855 DeclareImplicitCopyAssignment(FieldClassDecl);
4856
Douglas Gregor68e11362010-07-01 17:48:08 +00004857 if (CXXMethodDecl *CopyAssign
4858 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4859 ExceptSpec.CalledDecl(CopyAssign);
4860 }
4861 }
4862
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004863 // An implicitly-declared copy assignment operator is an inline public
4864 // member of its class.
4865 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004866 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004867 CXXMethodDecl *CopyAssignment
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004868 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004869 Context.getFunctionType(RetType, &ArgType, 1,
4870 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004871 ExceptSpec.hasExceptionSpecification(),
4872 ExceptSpec.hasAnyExceptionSpecification(),
4873 ExceptSpec.size(),
4874 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004875 FunctionType::ExtInfo()),
4876 /*TInfo=*/0, /*isStatic=*/false,
John McCall8e7d6562010-08-26 03:08:43 +00004877 /*StorageClassAsWritten=*/SC_None,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004878 /*isInline=*/true);
4879 CopyAssignment->setAccess(AS_public);
4880 CopyAssignment->setImplicit();
4881 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4882 CopyAssignment->setCopyAssignment(true);
4883
4884 // Add the parameter to the operator.
4885 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4886 ClassDecl->getLocation(),
4887 /*Id=*/0,
4888 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00004889 SC_None,
4890 SC_None, 0);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004891 CopyAssignment->setParams(&FromParam, 1);
4892
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004893 // Note that we have added this copy-assignment operator.
4894 ClassDecl->setDeclaredCopyAssignment(true);
4895 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4896
Douglas Gregor0be31a22010-07-02 17:43:08 +00004897 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004898 PushOnScopeChains(CopyAssignment, S, false);
4899 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004900
4901 AddOverriddenMethods(ClassDecl, CopyAssignment);
4902 return CopyAssignment;
4903}
4904
Douglas Gregorb139cd52010-05-01 20:49:11 +00004905void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4906 CXXMethodDecl *CopyAssignOperator) {
4907 assert((CopyAssignOperator->isImplicit() &&
4908 CopyAssignOperator->isOverloadedOperator() &&
4909 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004910 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004911 "DefineImplicitCopyAssignment called for wrong function");
4912
4913 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4914
4915 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4916 CopyAssignOperator->setInvalidDecl();
4917 return;
4918 }
4919
4920 CopyAssignOperator->setUsed();
4921
4922 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004923 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004924
4925 // C++0x [class.copy]p30:
4926 // The implicitly-defined or explicitly-defaulted copy assignment operator
4927 // for a non-union class X performs memberwise copy assignment of its
4928 // subobjects. The direct base classes of X are assigned first, in the
4929 // order of their declaration in the base-specifier-list, and then the
4930 // immediate non-static data members of X are assigned, in the order in
4931 // which they were declared in the class definition.
4932
4933 // The statements that form the synthesized function body.
John McCall37ad5512010-08-23 06:44:23 +00004934 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004935
4936 // The parameter for the "other" object, which we are copying from.
4937 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4938 Qualifiers OtherQuals = Other->getType().getQualifiers();
4939 QualType OtherRefType = Other->getType();
4940 if (const LValueReferenceType *OtherRef
4941 = OtherRefType->getAs<LValueReferenceType>()) {
4942 OtherRefType = OtherRef->getPointeeType();
4943 OtherQuals = OtherRefType.getQualifiers();
4944 }
4945
4946 // Our location for everything implicitly-generated.
4947 SourceLocation Loc = CopyAssignOperator->getLocation();
4948
4949 // Construct a reference to the "other" object. We'll be using this
4950 // throughout the generated ASTs.
4951 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4952 assert(OtherRef && "Reference to parameter cannot fail!");
4953
4954 // Construct the "this" pointer. We'll be using this throughout the generated
4955 // ASTs.
4956 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4957 assert(This && "Reference to this cannot fail!");
4958
4959 // Assign base classes.
4960 bool Invalid = false;
4961 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4962 E = ClassDecl->bases_end(); Base != E; ++Base) {
4963 // Form the assignment:
4964 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4965 QualType BaseType = Base->getType().getUnqualifiedType();
4966 CXXRecordDecl *BaseClassDecl = 0;
4967 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4968 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4969 else {
4970 Invalid = true;
4971 continue;
4972 }
4973
John McCallcf142162010-08-07 06:22:56 +00004974 CXXCastPath BasePath;
4975 BasePath.push_back(Base);
4976
Douglas Gregorb139cd52010-05-01 20:49:11 +00004977 // Construct the "from" expression, which is an implicit cast to the
4978 // appropriately-qualified base type.
4979 Expr *From = OtherRef->Retain();
4980 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
John McCall2536c6d2010-08-25 10:28:54 +00004981 CK_UncheckedDerivedToBase,
4982 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004983
4984 // Dereference "this".
John McCall2536c6d2010-08-25 10:28:54 +00004985 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004986
4987 // Implicitly cast "this" to the appropriately-qualified base type.
4988 Expr *ToE = To.takeAs<Expr>();
4989 ImpCastExprToType(ToE,
4990 Context.getCVRQualifiedType(BaseType,
4991 CopyAssignOperator->getTypeQualifiers()),
John McCall2536c6d2010-08-25 10:28:54 +00004992 CK_UncheckedDerivedToBase,
4993 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004994 To = Owned(ToE);
4995
4996 // Build the copy.
John McCalldadc5752010-08-24 06:29:42 +00004997 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall2536c6d2010-08-25 10:28:54 +00004998 To.get(), From,
4999 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005000 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005001 Diag(CurrentLocation, diag::note_member_synthesized_at)
5002 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5003 CopyAssignOperator->setInvalidDecl();
5004 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005005 }
5006
5007 // Success! Record the copy.
5008 Statements.push_back(Copy.takeAs<Expr>());
5009 }
5010
5011 // \brief Reference to the __builtin_memcpy function.
5012 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005013 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005014 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005015
5016 // Assign non-static members.
5017 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5018 FieldEnd = ClassDecl->field_end();
5019 Field != FieldEnd; ++Field) {
5020 // Check for members of reference type; we can't copy those.
5021 if (Field->getType()->isReferenceType()) {
5022 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5023 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5024 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005025 Diag(CurrentLocation, diag::note_member_synthesized_at)
5026 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005027 Invalid = true;
5028 continue;
5029 }
5030
5031 // Check for members of const-qualified, non-class type.
5032 QualType BaseType = Context.getBaseElementType(Field->getType());
5033 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5034 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5035 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
5036 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005037 Diag(CurrentLocation, diag::note_member_synthesized_at)
5038 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005039 Invalid = true;
5040 continue;
5041 }
5042
5043 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00005044 if (FieldType->isIncompleteArrayType()) {
5045 assert(ClassDecl->hasFlexibleArrayMember() &&
5046 "Incomplete array type is not valid");
5047 continue;
5048 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005049
5050 // Build references to the field in the object we're copying from and to.
5051 CXXScopeSpec SS; // Intentionally empty
5052 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5053 LookupMemberName);
5054 MemberLookup.addDecl(*Field);
5055 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00005056 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
Douglas Gregorb139cd52010-05-01 20:49:11 +00005057 Loc, /*IsArrow=*/false,
5058 SS, 0, MemberLookup, 0);
John McCalldadc5752010-08-24 06:29:42 +00005059 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005060 Loc, /*IsArrow=*/true,
5061 SS, 0, MemberLookup, 0);
5062 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5063 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5064
5065 // If the field should be copied with __builtin_memcpy rather than via
5066 // explicit assignments, do so. This optimization only applies for arrays
5067 // of scalars and arrays of class type with trivial copy-assignment
5068 // operators.
5069 if (FieldType->isArrayType() &&
5070 (!BaseType->isRecordType() ||
5071 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5072 ->hasTrivialCopyAssignment())) {
5073 // Compute the size of the memory buffer to be copied.
5074 QualType SizeType = Context.getSizeType();
5075 llvm::APInt Size(Context.getTypeSize(SizeType),
5076 Context.getTypeSizeInChars(BaseType).getQuantity());
5077 for (const ConstantArrayType *Array
5078 = Context.getAsConstantArrayType(FieldType);
5079 Array;
5080 Array = Context.getAsConstantArrayType(Array->getElementType())) {
5081 llvm::APInt ArraySize = Array->getSize();
5082 ArraySize.zextOrTrunc(Size.getBitWidth());
5083 Size *= ArraySize;
5084 }
5085
5086 // Take the address of the field references for "from" and "to".
John McCalle3027922010-08-25 11:45:40 +00005087 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
5088 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005089
5090 bool NeedsCollectableMemCpy =
5091 (BaseType->isRecordType() &&
5092 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5093
5094 if (NeedsCollectableMemCpy) {
5095 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005096 // Create a reference to the __builtin_objc_memmove_collectable function.
5097 LookupResult R(*this,
5098 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005099 Loc, LookupOrdinaryName);
5100 LookupName(R, TUScope, true);
5101
5102 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5103 if (!CollectableMemCpy) {
5104 // Something went horribly wrong earlier, and we will have
5105 // complained about it.
5106 Invalid = true;
5107 continue;
5108 }
5109
5110 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5111 CollectableMemCpy->getType(),
5112 Loc, 0).takeAs<Expr>();
5113 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5114 }
5115 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005116 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005117 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00005118 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5119 LookupOrdinaryName);
5120 LookupName(R, TUScope, true);
5121
5122 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5123 if (!BuiltinMemCpy) {
5124 // Something went horribly wrong earlier, and we will have complained
5125 // about it.
5126 Invalid = true;
5127 continue;
5128 }
5129
5130 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5131 BuiltinMemCpy->getType(),
5132 Loc, 0).takeAs<Expr>();
5133 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5134 }
5135
John McCall37ad5512010-08-23 06:44:23 +00005136 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005137 CallArgs.push_back(To.takeAs<Expr>());
5138 CallArgs.push_back(From.takeAs<Expr>());
5139 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5140 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5141 Commas.push_back(Loc);
5142 Commas.push_back(Loc);
John McCalldadc5752010-08-24 06:29:42 +00005143 ExprResult Call = ExprError();
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005144 if (NeedsCollectableMemCpy)
5145 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005146 CollectableMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005147 Loc, move_arg(CallArgs),
5148 Commas.data(), Loc);
5149 else
5150 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005151 BuiltinMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005152 Loc, move_arg(CallArgs),
5153 Commas.data(), Loc);
5154
Douglas Gregorb139cd52010-05-01 20:49:11 +00005155 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5156 Statements.push_back(Call.takeAs<Expr>());
5157 continue;
5158 }
5159
5160 // Build the copy of this field.
John McCalldadc5752010-08-24 06:29:42 +00005161 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCallb268a282010-08-23 23:25:46 +00005162 To.get(), From.get(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00005163 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005164 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005165 Diag(CurrentLocation, diag::note_member_synthesized_at)
5166 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5167 CopyAssignOperator->setInvalidDecl();
5168 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005169 }
5170
5171 // Success! Record the copy.
5172 Statements.push_back(Copy.takeAs<Stmt>());
5173 }
5174
5175 if (!Invalid) {
5176 // Add a "return *this;"
John McCalle3027922010-08-25 11:45:40 +00005177 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005178
John McCalldadc5752010-08-24 06:29:42 +00005179 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00005180 if (Return.isInvalid())
5181 Invalid = true;
5182 else {
5183 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00005184
5185 if (Trap.hasErrorOccurred()) {
5186 Diag(CurrentLocation, diag::note_member_synthesized_at)
5187 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5188 Invalid = true;
5189 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005190 }
5191 }
5192
5193 if (Invalid) {
5194 CopyAssignOperator->setInvalidDecl();
5195 return;
5196 }
5197
John McCalldadc5752010-08-24 06:29:42 +00005198 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005199 /*isStmtExpr=*/false);
5200 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5201 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00005202}
5203
Douglas Gregor0be31a22010-07-02 17:43:08 +00005204CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5205 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00005206 // C++ [class.copy]p4:
5207 // If the class definition does not explicitly declare a copy
5208 // constructor, one is declared implicitly.
5209
Douglas Gregor54be3392010-07-01 17:57:27 +00005210 // C++ [class.copy]p5:
5211 // The implicitly-declared copy constructor for a class X will
5212 // have the form
5213 //
5214 // X::X(const X&)
5215 //
5216 // if
5217 bool HasConstCopyConstructor = true;
5218
5219 // -- each direct or virtual base class B of X has a copy
5220 // constructor whose first parameter is of type const B& or
5221 // const volatile B&, and
5222 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5223 BaseEnd = ClassDecl->bases_end();
5224 HasConstCopyConstructor && Base != BaseEnd;
5225 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005226 // Virtual bases are handled below.
5227 if (Base->isVirtual())
5228 continue;
5229
Douglas Gregora6d69502010-07-02 23:41:54 +00005230 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005231 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005232 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5233 DeclareImplicitCopyConstructor(BaseClassDecl);
5234
Douglas Gregorcfe68222010-07-01 18:27:03 +00005235 HasConstCopyConstructor
5236 = BaseClassDecl->hasConstCopyConstructor(Context);
5237 }
5238
5239 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5240 BaseEnd = ClassDecl->vbases_end();
5241 HasConstCopyConstructor && Base != BaseEnd;
5242 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005243 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00005244 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005245 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5246 DeclareImplicitCopyConstructor(BaseClassDecl);
5247
Douglas Gregor54be3392010-07-01 17:57:27 +00005248 HasConstCopyConstructor
5249 = BaseClassDecl->hasConstCopyConstructor(Context);
5250 }
5251
5252 // -- for all the nonstatic data members of X that are of a
5253 // class type M (or array thereof), each such class type
5254 // has a copy constructor whose first parameter is of type
5255 // const M& or const volatile M&.
5256 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5257 FieldEnd = ClassDecl->field_end();
5258 HasConstCopyConstructor && Field != FieldEnd;
5259 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005260 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005261 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005262 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005263 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005264 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5265 DeclareImplicitCopyConstructor(FieldClassDecl);
5266
Douglas Gregor54be3392010-07-01 17:57:27 +00005267 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005268 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005269 }
5270 }
5271
5272 // Otherwise, the implicitly declared copy constructor will have
5273 // the form
5274 //
5275 // X::X(X&)
5276 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5277 QualType ArgType = ClassType;
5278 if (HasConstCopyConstructor)
5279 ArgType = ArgType.withConst();
5280 ArgType = Context.getLValueReferenceType(ArgType);
5281
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005282 // C++ [except.spec]p14:
5283 // An implicitly declared special member function (Clause 12) shall have an
5284 // exception-specification. [...]
5285 ImplicitExceptionSpecification ExceptSpec(Context);
5286 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5287 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5288 BaseEnd = ClassDecl->bases_end();
5289 Base != BaseEnd;
5290 ++Base) {
5291 // Virtual bases are handled below.
5292 if (Base->isVirtual())
5293 continue;
5294
Douglas Gregora6d69502010-07-02 23:41:54 +00005295 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005296 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005297 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5298 DeclareImplicitCopyConstructor(BaseClassDecl);
5299
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005300 if (CXXConstructorDecl *CopyConstructor
5301 = BaseClassDecl->getCopyConstructor(Context, Quals))
5302 ExceptSpec.CalledDecl(CopyConstructor);
5303 }
5304 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5305 BaseEnd = ClassDecl->vbases_end();
5306 Base != BaseEnd;
5307 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005308 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005309 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005310 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5311 DeclareImplicitCopyConstructor(BaseClassDecl);
5312
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005313 if (CXXConstructorDecl *CopyConstructor
5314 = BaseClassDecl->getCopyConstructor(Context, Quals))
5315 ExceptSpec.CalledDecl(CopyConstructor);
5316 }
5317 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5318 FieldEnd = ClassDecl->field_end();
5319 Field != FieldEnd;
5320 ++Field) {
5321 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5322 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005323 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005324 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005325 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5326 DeclareImplicitCopyConstructor(FieldClassDecl);
5327
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005328 if (CXXConstructorDecl *CopyConstructor
5329 = FieldClassDecl->getCopyConstructor(Context, Quals))
5330 ExceptSpec.CalledDecl(CopyConstructor);
5331 }
5332 }
5333
Douglas Gregor54be3392010-07-01 17:57:27 +00005334 // An implicitly-declared copy constructor is an inline public
5335 // member of its class.
5336 DeclarationName Name
5337 = Context.DeclarationNames.getCXXConstructorName(
5338 Context.getCanonicalType(ClassType));
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005339 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor54be3392010-07-01 17:57:27 +00005340 CXXConstructorDecl *CopyConstructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005341 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00005342 Context.getFunctionType(Context.VoidTy,
5343 &ArgType, 1,
5344 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005345 ExceptSpec.hasExceptionSpecification(),
5346 ExceptSpec.hasAnyExceptionSpecification(),
5347 ExceptSpec.size(),
5348 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005349 FunctionType::ExtInfo()),
5350 /*TInfo=*/0,
5351 /*isExplicit=*/false,
5352 /*isInline=*/true,
5353 /*isImplicitlyDeclared=*/true);
5354 CopyConstructor->setAccess(AS_public);
5355 CopyConstructor->setImplicit();
5356 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5357
Douglas Gregora6d69502010-07-02 23:41:54 +00005358 // Note that we have declared this constructor.
5359 ClassDecl->setDeclaredCopyConstructor(true);
5360 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5361
Douglas Gregor54be3392010-07-01 17:57:27 +00005362 // Add the parameter to the constructor.
5363 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5364 ClassDecl->getLocation(),
5365 /*IdentifierInfo=*/0,
5366 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00005367 SC_None,
5368 SC_None, 0);
Douglas Gregor54be3392010-07-01 17:57:27 +00005369 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005370 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00005371 PushOnScopeChains(CopyConstructor, S, false);
5372 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor54be3392010-07-01 17:57:27 +00005373
5374 return CopyConstructor;
5375}
5376
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005377void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5378 CXXConstructorDecl *CopyConstructor,
5379 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005380 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005381 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005382 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005383 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005384
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005385 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005386 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005387
Douglas Gregora57478e2010-05-01 15:04:51 +00005388 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005389 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005390
Douglas Gregor54818f02010-05-12 16:39:35 +00005391 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5392 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005393 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005394 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005395 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005396 } else {
5397 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5398 CopyConstructor->getLocation(),
5399 MultiStmtArg(*this, 0, 0),
5400 /*isStmtExpr=*/false)
5401 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005402 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005403
5404 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005405}
5406
John McCalldadc5752010-08-24 06:29:42 +00005407ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005408Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005409 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005410 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005411 bool RequiresZeroInit,
John McCallbfd822c2010-08-24 07:32:53 +00005412 unsigned ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005413 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005414
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005415 // C++0x [class.copy]p34:
5416 // When certain criteria are met, an implementation is allowed to
5417 // omit the copy/move construction of a class object, even if the
5418 // copy/move constructor and/or destructor for the object have
5419 // side effects. [...]
5420 // - when a temporary class object that has not been bound to a
5421 // reference (12.2) would be copied/moved to a class object
5422 // with the same cv-unqualified type, the copy/move operation
5423 // can be omitted by constructing the temporary object
5424 // directly into the target of the omitted copy/move
5425 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5426 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5427 Elidable = SubExpr->isTemporaryObject() &&
Douglas Gregorec3a3f52010-08-22 18:27:02 +00005428 ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005429 Context.hasSameUnqualifiedType(SubExpr->getType(),
5430 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00005431 }
Mike Stump11289f42009-09-09 15:08:12 +00005432
5433 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005434 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005435 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00005436}
5437
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005438/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5439/// including handling of its default argument expressions.
John McCalldadc5752010-08-24 06:29:42 +00005440ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005441Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5442 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005443 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005444 bool RequiresZeroInit,
John McCallbfd822c2010-08-24 07:32:53 +00005445 unsigned ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005446 unsigned NumExprs = ExprArgs.size();
5447 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005448
Douglas Gregor27381f32009-11-23 12:27:39 +00005449 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005450 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005451 Constructor, Elidable, Exprs, NumExprs,
John McCallbfd822c2010-08-24 07:32:53 +00005452 RequiresZeroInit,
5453 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind)));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005454}
5455
Mike Stump11289f42009-09-09 15:08:12 +00005456bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005457 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005458 MultiExprArg Exprs) {
John McCalldadc5752010-08-24 06:29:42 +00005459 ExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005460 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
John McCallbfd822c2010-08-24 07:32:53 +00005461 move(Exprs), false, CXXConstructExpr::CK_Complete);
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005462 if (TempResult.isInvalid())
5463 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005464
Anders Carlsson6eb55572009-08-25 05:12:04 +00005465 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00005466 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005467 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005468 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005469
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005470 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005471}
5472
John McCall03c48482010-02-02 09:10:11 +00005473void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5474 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005475 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005476 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005477 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005478 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005479 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005480 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005481 << VD->getDeclName()
5482 << VD->getType());
John McCall47e40932010-08-01 20:20:59 +00005483
5484 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5485 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall6781b052010-02-02 08:45:54 +00005486 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005487}
5488
Mike Stump11289f42009-09-09 15:08:12 +00005489/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005490/// ActOnDeclarator, when a C++ direct initializer is present.
5491/// e.g: "int x(1);"
John McCall48871652010-08-21 09:40:31 +00005492void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00005493 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005494 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005495 SourceLocation *CommaLocs,
5496 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005497 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005498
5499 // If there is no declaration, there was an error parsing it. Just ignore
5500 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005501 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005502 return;
Mike Stump11289f42009-09-09 15:08:12 +00005503
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005504 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5505 if (!VDecl) {
5506 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5507 RealDecl->setInvalidDecl();
5508 return;
5509 }
5510
Douglas Gregor402250f2009-08-26 21:14:46 +00005511 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005512 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005513 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5514 //
5515 // Clients that want to distinguish between the two forms, can check for
5516 // direct initializer using VarDecl::hasCXXDirectInitializer().
5517 // A major benefit is that clients that don't particularly care about which
5518 // exactly form was it (like the CodeGen) can handle both cases without
5519 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005520
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005521 // C++ 8.5p11:
5522 // The form of initialization (using parentheses or '=') is generally
5523 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005524 // class type.
5525
Douglas Gregor50dc2192010-02-11 22:55:30 +00005526 if (!VDecl->getType()->isDependentType() &&
5527 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005528 diag::err_typecheck_decl_incomplete_type)) {
5529 VDecl->setInvalidDecl();
5530 return;
5531 }
5532
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005533 // The variable can not have an abstract class type.
5534 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5535 diag::err_abstract_type_in_decl,
5536 AbstractVariableType))
5537 VDecl->setInvalidDecl();
5538
Sebastian Redl5ca79842010-02-01 20:16:42 +00005539 const VarDecl *Def;
5540 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005541 Diag(VDecl->getLocation(), diag::err_redefinition)
5542 << VDecl->getDeclName();
5543 Diag(Def->getLocation(), diag::note_previous_definition);
5544 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005545 return;
5546 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005547
Douglas Gregorf0f83692010-08-24 05:27:49 +00005548 // C++ [class.static.data]p4
5549 // If a static data member is of const integral or const
5550 // enumeration type, its declaration in the class definition can
5551 // specify a constant-initializer which shall be an integral
5552 // constant expression (5.19). In that case, the member can appear
5553 // in integral constant expressions. The member shall still be
5554 // defined in a namespace scope if it is used in the program and the
5555 // namespace scope definition shall not contain an initializer.
5556 //
5557 // We already performed a redefinition check above, but for static
5558 // data members we also need to check whether there was an in-class
5559 // declaration with an initializer.
5560 const VarDecl* PrevInit = 0;
5561 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
5562 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
5563 Diag(PrevInit->getLocation(), diag::note_previous_definition);
5564 return;
5565 }
5566
Douglas Gregor50dc2192010-02-11 22:55:30 +00005567 // If either the declaration has a dependent type or if any of the
5568 // expressions is type-dependent, we represent the initialization
5569 // via a ParenListExpr for later use during template instantiation.
5570 if (VDecl->getType()->isDependentType() ||
5571 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5572 // Let clients know that initialization was done with a direct initializer.
5573 VDecl->setCXXDirectInitializer(true);
5574
5575 // Store the initialization expressions as a ParenListExpr.
5576 unsigned NumExprs = Exprs.size();
5577 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5578 (Expr **)Exprs.release(),
5579 NumExprs, RParenLoc));
5580 return;
5581 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005582
5583 // Capture the variable that is being initialized and the style of
5584 // initialization.
5585 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5586
5587 // FIXME: Poor source location information.
5588 InitializationKind Kind
5589 = InitializationKind::CreateDirect(VDecl->getLocation(),
5590 LParenLoc, RParenLoc);
5591
5592 InitializationSequence InitSeq(*this, Entity, Kind,
John McCallb268a282010-08-23 23:25:46 +00005593 Exprs.get(), Exprs.size());
John McCalldadc5752010-08-24 06:29:42 +00005594 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005595 if (Result.isInvalid()) {
5596 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005597 return;
5598 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005599
John McCallb268a282010-08-23 23:25:46 +00005600 Result = MaybeCreateCXXExprWithTemporaries(Result.get());
Douglas Gregord5058122010-02-11 01:19:42 +00005601 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005602 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005603
John McCall8b0f4ff2010-08-02 21:13:48 +00005604 if (!VDecl->isInvalidDecl() &&
5605 !VDecl->getDeclContext()->isDependentContext() &&
5606 VDecl->hasGlobalStorage() &&
5607 !VDecl->getInit()->isConstantInitializer(Context,
5608 VDecl->getType()->isReferenceType()))
5609 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5610 << VDecl->getInit()->getSourceRange();
5611
John McCall03c48482010-02-02 09:10:11 +00005612 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5613 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005614}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005615
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005616/// \brief Given a constructor and the set of arguments provided for the
5617/// constructor, convert the arguments and add any required default arguments
5618/// to form a proper call to this constructor.
5619///
5620/// \returns true if an error occurred, false otherwise.
5621bool
5622Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5623 MultiExprArg ArgsPtr,
5624 SourceLocation Loc,
John McCall37ad5512010-08-23 06:44:23 +00005625 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005626 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5627 unsigned NumArgs = ArgsPtr.size();
5628 Expr **Args = (Expr **)ArgsPtr.get();
5629
5630 const FunctionProtoType *Proto
5631 = Constructor->getType()->getAs<FunctionProtoType>();
5632 assert(Proto && "Constructor without a prototype?");
5633 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005634
5635 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005636 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005637 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005638 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005639 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005640
5641 VariadicCallType CallType =
5642 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5643 llvm::SmallVector<Expr *, 8> AllArgs;
5644 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5645 Proto, 0, Args, NumArgs, AllArgs,
5646 CallType);
5647 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5648 ConvertedArgs.push_back(AllArgs[i]);
5649 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005650}
5651
Anders Carlssone363c8e2009-12-12 00:32:00 +00005652static inline bool
5653CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5654 const FunctionDecl *FnDecl) {
5655 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5656 if (isa<NamespaceDecl>(DC)) {
5657 return SemaRef.Diag(FnDecl->getLocation(),
5658 diag::err_operator_new_delete_declared_in_namespace)
5659 << FnDecl->getDeclName();
5660 }
5661
5662 if (isa<TranslationUnitDecl>(DC) &&
John McCall8e7d6562010-08-26 03:08:43 +00005663 FnDecl->getStorageClass() == SC_Static) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005664 return SemaRef.Diag(FnDecl->getLocation(),
5665 diag::err_operator_new_delete_declared_static)
5666 << FnDecl->getDeclName();
5667 }
5668
Anders Carlsson60659a82009-12-12 02:43:16 +00005669 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005670}
5671
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005672static inline bool
5673CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5674 CanQualType ExpectedResultType,
5675 CanQualType ExpectedFirstParamType,
5676 unsigned DependentParamTypeDiag,
5677 unsigned InvalidParamTypeDiag) {
5678 QualType ResultType =
5679 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5680
5681 // Check that the result type is not dependent.
5682 if (ResultType->isDependentType())
5683 return SemaRef.Diag(FnDecl->getLocation(),
5684 diag::err_operator_new_delete_dependent_result_type)
5685 << FnDecl->getDeclName() << ExpectedResultType;
5686
5687 // Check that the result type is what we expect.
5688 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5689 return SemaRef.Diag(FnDecl->getLocation(),
5690 diag::err_operator_new_delete_invalid_result_type)
5691 << FnDecl->getDeclName() << ExpectedResultType;
5692
5693 // A function template must have at least 2 parameters.
5694 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5695 return SemaRef.Diag(FnDecl->getLocation(),
5696 diag::err_operator_new_delete_template_too_few_parameters)
5697 << FnDecl->getDeclName();
5698
5699 // The function decl must have at least 1 parameter.
5700 if (FnDecl->getNumParams() == 0)
5701 return SemaRef.Diag(FnDecl->getLocation(),
5702 diag::err_operator_new_delete_too_few_parameters)
5703 << FnDecl->getDeclName();
5704
5705 // Check the the first parameter type is not dependent.
5706 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5707 if (FirstParamType->isDependentType())
5708 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5709 << FnDecl->getDeclName() << ExpectedFirstParamType;
5710
5711 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005712 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005713 ExpectedFirstParamType)
5714 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5715 << FnDecl->getDeclName() << ExpectedFirstParamType;
5716
5717 return false;
5718}
5719
Anders Carlsson12308f42009-12-11 23:23:22 +00005720static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005721CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005722 // C++ [basic.stc.dynamic.allocation]p1:
5723 // A program is ill-formed if an allocation function is declared in a
5724 // namespace scope other than global scope or declared static in global
5725 // scope.
5726 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5727 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005728
5729 CanQualType SizeTy =
5730 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5731
5732 // C++ [basic.stc.dynamic.allocation]p1:
5733 // The return type shall be void*. The first parameter shall have type
5734 // std::size_t.
5735 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5736 SizeTy,
5737 diag::err_operator_new_dependent_param_type,
5738 diag::err_operator_new_param_type))
5739 return true;
5740
5741 // C++ [basic.stc.dynamic.allocation]p1:
5742 // The first parameter shall not have an associated default argument.
5743 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005744 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005745 diag::err_operator_new_default_arg)
5746 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5747
5748 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005749}
5750
5751static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005752CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5753 // C++ [basic.stc.dynamic.deallocation]p1:
5754 // A program is ill-formed if deallocation functions are declared in a
5755 // namespace scope other than global scope or declared static in global
5756 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005757 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5758 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005759
5760 // C++ [basic.stc.dynamic.deallocation]p2:
5761 // Each deallocation function shall return void and its first parameter
5762 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005763 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5764 SemaRef.Context.VoidPtrTy,
5765 diag::err_operator_delete_dependent_param_type,
5766 diag::err_operator_delete_param_type))
5767 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005768
Anders Carlsson12308f42009-12-11 23:23:22 +00005769 return false;
5770}
5771
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005772/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5773/// of this overloaded operator is well-formed. If so, returns false;
5774/// otherwise, emits appropriate diagnostics and returns true.
5775bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005776 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005777 "Expected an overloaded operator declaration");
5778
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005779 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5780
Mike Stump11289f42009-09-09 15:08:12 +00005781 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005782 // The allocation and deallocation functions, operator new,
5783 // operator new[], operator delete and operator delete[], are
5784 // described completely in 3.7.3. The attributes and restrictions
5785 // found in the rest of this subclause do not apply to them unless
5786 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005787 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005788 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005789
Anders Carlsson22f443f2009-12-12 00:26:23 +00005790 if (Op == OO_New || Op == OO_Array_New)
5791 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005792
5793 // C++ [over.oper]p6:
5794 // An operator function shall either be a non-static member
5795 // function or be a non-member function and have at least one
5796 // parameter whose type is a class, a reference to a class, an
5797 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005798 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5799 if (MethodDecl->isStatic())
5800 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005801 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005802 } else {
5803 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005804 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5805 ParamEnd = FnDecl->param_end();
5806 Param != ParamEnd; ++Param) {
5807 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005808 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5809 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005810 ClassOrEnumParam = true;
5811 break;
5812 }
5813 }
5814
Douglas Gregord69246b2008-11-17 16:14:12 +00005815 if (!ClassOrEnumParam)
5816 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005817 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005818 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005819 }
5820
5821 // C++ [over.oper]p8:
5822 // An operator function cannot have default arguments (8.3.6),
5823 // except where explicitly stated below.
5824 //
Mike Stump11289f42009-09-09 15:08:12 +00005825 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005826 // (C++ [over.call]p1).
5827 if (Op != OO_Call) {
5828 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5829 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005830 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005831 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005832 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005833 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005834 }
5835 }
5836
Douglas Gregor6cf08062008-11-10 13:38:07 +00005837 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5838 { false, false, false }
5839#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5840 , { Unary, Binary, MemberOnly }
5841#include "clang/Basic/OperatorKinds.def"
5842 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005843
Douglas Gregor6cf08062008-11-10 13:38:07 +00005844 bool CanBeUnaryOperator = OperatorUses[Op][0];
5845 bool CanBeBinaryOperator = OperatorUses[Op][1];
5846 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005847
5848 // C++ [over.oper]p8:
5849 // [...] Operator functions cannot have more or fewer parameters
5850 // than the number required for the corresponding operator, as
5851 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005852 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005853 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005854 if (Op != OO_Call &&
5855 ((NumParams == 1 && !CanBeUnaryOperator) ||
5856 (NumParams == 2 && !CanBeBinaryOperator) ||
5857 (NumParams < 1) || (NumParams > 2))) {
5858 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005859 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005860 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005861 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005862 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005863 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005864 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005865 assert(CanBeBinaryOperator &&
5866 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005867 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005868 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005869
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005870 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005871 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005872 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005873
Douglas Gregord69246b2008-11-17 16:14:12 +00005874 // Overloaded operators other than operator() cannot be variadic.
5875 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005876 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005877 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005878 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005879 }
5880
5881 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005882 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5883 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005884 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005885 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005886 }
5887
5888 // C++ [over.inc]p1:
5889 // The user-defined function called operator++ implements the
5890 // prefix and postfix ++ operator. If this function is a member
5891 // function with no parameters, or a non-member function with one
5892 // parameter of class or enumeration type, it defines the prefix
5893 // increment operator ++ for objects of that type. If the function
5894 // is a member function with one parameter (which shall be of type
5895 // int) or a non-member function with two parameters (the second
5896 // of which shall be of type int), it defines the postfix
5897 // increment operator ++ for objects of that type.
5898 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5899 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5900 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005901 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005902 ParamIsInt = BT->getKind() == BuiltinType::Int;
5903
Chris Lattner2b786902008-11-21 07:50:02 +00005904 if (!ParamIsInt)
5905 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005906 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005907 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005908 }
5909
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005910 // Notify the class if it got an assignment operator.
5911 if (Op == OO_Equal) {
5912 // Would have returned earlier otherwise.
5913 assert(isa<CXXMethodDecl>(FnDecl) &&
5914 "Overloaded = not member, but not filtered.");
5915 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5916 Method->getParent()->addedAssignmentOperator(Context, Method);
5917 }
5918
Douglas Gregord69246b2008-11-17 16:14:12 +00005919 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005920}
Chris Lattner3b024a32008-12-17 07:09:26 +00005921
Alexis Huntc88db062010-01-13 09:01:02 +00005922/// CheckLiteralOperatorDeclaration - Check whether the declaration
5923/// of this literal operator function is well-formed. If so, returns
5924/// false; otherwise, emits appropriate diagnostics and returns true.
5925bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5926 DeclContext *DC = FnDecl->getDeclContext();
5927 Decl::Kind Kind = DC->getDeclKind();
5928 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5929 Kind != Decl::LinkageSpec) {
5930 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5931 << FnDecl->getDeclName();
5932 return true;
5933 }
5934
5935 bool Valid = false;
5936
Alexis Hunt7dd26172010-04-07 23:11:06 +00005937 // template <char...> type operator "" name() is the only valid template
5938 // signature, and the only valid signature with no parameters.
5939 if (FnDecl->param_size() == 0) {
5940 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5941 // Must have only one template parameter
5942 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5943 if (Params->size() == 1) {
5944 NonTypeTemplateParmDecl *PmDecl =
5945 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005946
Alexis Hunt7dd26172010-04-07 23:11:06 +00005947 // The template parameter must be a char parameter pack.
5948 // FIXME: This test will always fail because non-type parameter packs
5949 // have not been implemented.
5950 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5951 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5952 Valid = true;
5953 }
5954 }
5955 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005956 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005957 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5958
Alexis Huntc88db062010-01-13 09:01:02 +00005959 QualType T = (*Param)->getType();
5960
Alexis Hunt079a6f72010-04-07 22:57:35 +00005961 // unsigned long long int, long double, and any character type are allowed
5962 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005963 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5964 Context.hasSameType(T, Context.LongDoubleTy) ||
5965 Context.hasSameType(T, Context.CharTy) ||
5966 Context.hasSameType(T, Context.WCharTy) ||
5967 Context.hasSameType(T, Context.Char16Ty) ||
5968 Context.hasSameType(T, Context.Char32Ty)) {
5969 if (++Param == FnDecl->param_end())
5970 Valid = true;
5971 goto FinishedParams;
5972 }
5973
Alexis Hunt079a6f72010-04-07 22:57:35 +00005974 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005975 const PointerType *PT = T->getAs<PointerType>();
5976 if (!PT)
5977 goto FinishedParams;
5978 T = PT->getPointeeType();
5979 if (!T.isConstQualified())
5980 goto FinishedParams;
5981 T = T.getUnqualifiedType();
5982
5983 // Move on to the second parameter;
5984 ++Param;
5985
5986 // If there is no second parameter, the first must be a const char *
5987 if (Param == FnDecl->param_end()) {
5988 if (Context.hasSameType(T, Context.CharTy))
5989 Valid = true;
5990 goto FinishedParams;
5991 }
5992
5993 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5994 // are allowed as the first parameter to a two-parameter function
5995 if (!(Context.hasSameType(T, Context.CharTy) ||
5996 Context.hasSameType(T, Context.WCharTy) ||
5997 Context.hasSameType(T, Context.Char16Ty) ||
5998 Context.hasSameType(T, Context.Char32Ty)))
5999 goto FinishedParams;
6000
6001 // The second and final parameter must be an std::size_t
6002 T = (*Param)->getType().getUnqualifiedType();
6003 if (Context.hasSameType(T, Context.getSizeType()) &&
6004 ++Param == FnDecl->param_end())
6005 Valid = true;
6006 }
6007
6008 // FIXME: This diagnostic is absolutely terrible.
6009FinishedParams:
6010 if (!Valid) {
6011 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6012 << FnDecl->getDeclName();
6013 return true;
6014 }
6015
6016 return false;
6017}
6018
Douglas Gregor07665a62009-01-05 19:45:36 +00006019/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6020/// linkage specification, including the language and (if present)
6021/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6022/// the location of the language string literal, which is provided
6023/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6024/// the '{' brace. Otherwise, this linkage specification does not
6025/// have any braces.
John McCall48871652010-08-21 09:40:31 +00006026Decl *Sema::ActOnStartLinkageSpecification(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00006027 SourceLocation ExternLoc,
6028 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00006029 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00006030 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00006031 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00006032 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00006033 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00006034 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00006035 Language = LinkageSpecDecl::lang_cxx;
6036 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00006037 Diag(LangLoc, diag::err_bad_language);
John McCall48871652010-08-21 09:40:31 +00006038 return 0;
Chris Lattner438e5012008-12-17 07:13:27 +00006039 }
Mike Stump11289f42009-09-09 15:08:12 +00006040
Chris Lattner438e5012008-12-17 07:13:27 +00006041 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00006042
Douglas Gregor07665a62009-01-05 19:45:36 +00006043 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00006044 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00006045 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006046 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00006047 PushDeclContext(S, D);
John McCall48871652010-08-21 09:40:31 +00006048 return D;
Chris Lattner438e5012008-12-17 07:13:27 +00006049}
6050
Abramo Bagnaraed5b6892010-07-30 16:47:02 +00006051/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +00006052/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6053/// valid, it's the position of the closing '}' brace in a linkage
6054/// specification that uses braces.
John McCall48871652010-08-21 09:40:31 +00006055Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6056 Decl *LinkageSpec,
Chris Lattner83f095c2009-03-28 19:18:32 +00006057 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00006058 if (LinkageSpec)
6059 PopDeclContext();
6060 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00006061}
6062
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006063/// \brief Perform semantic analysis for the variable declaration that
6064/// occurs within a C++ catch clause, returning the newly-created
6065/// variable.
6066VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00006067 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006068 IdentifierInfo *Name,
6069 SourceLocation Loc,
6070 SourceRange Range) {
6071 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006072
6073 // Arrays and functions decay.
6074 if (ExDeclType->isArrayType())
6075 ExDeclType = Context.getArrayDecayedType(ExDeclType);
6076 else if (ExDeclType->isFunctionType())
6077 ExDeclType = Context.getPointerType(ExDeclType);
6078
6079 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6080 // The exception-declaration shall not denote a pointer or reference to an
6081 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00006082 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00006083 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006084 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00006085 Invalid = true;
6086 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006087
Douglas Gregor104ee002010-03-08 01:47:36 +00006088 // GCC allows catching pointers and references to incomplete types
6089 // as an extension; so do we, but we warn by default.
6090
Sebastian Redl54c04d42008-12-22 19:15:10 +00006091 QualType BaseType = ExDeclType;
6092 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00006093 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00006094 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006095 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006096 BaseType = Ptr->getPointeeType();
6097 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00006098 DK = diag::ext_catch_incomplete_ptr;
6099 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00006100 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00006101 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006102 BaseType = Ref->getPointeeType();
6103 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00006104 DK = diag::ext_catch_incomplete_ref;
6105 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006106 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00006107 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00006108 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6109 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00006110 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006111
Mike Stump11289f42009-09-09 15:08:12 +00006112 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006113 RequireNonAbstractType(Loc, ExDeclType,
6114 diag::err_abstract_type_in_decl,
6115 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00006116 Invalid = true;
6117
John McCall2ca705e2010-07-24 00:37:23 +00006118 // Only the non-fragile NeXT runtime currently supports C++ catches
6119 // of ObjC types, and no runtime supports catching ObjC types by value.
6120 if (!Invalid && getLangOptions().ObjC1) {
6121 QualType T = ExDeclType;
6122 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6123 T = RT->getPointeeType();
6124
6125 if (T->isObjCObjectType()) {
6126 Diag(Loc, diag::err_objc_object_catch);
6127 Invalid = true;
6128 } else if (T->isObjCObjectPointerType()) {
6129 if (!getLangOptions().NeXTRuntime) {
6130 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6131 Invalid = true;
6132 } else if (!getLangOptions().ObjCNonFragileABI) {
6133 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6134 Invalid = true;
6135 }
6136 }
6137 }
6138
Mike Stump11289f42009-09-09 15:08:12 +00006139 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
John McCall8e7d6562010-08-26 03:08:43 +00006140 Name, ExDeclType, TInfo, SC_None,
6141 SC_None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00006142 ExDecl->setExceptionVariable(true);
6143
Douglas Gregor6de584c2010-03-05 23:38:39 +00006144 if (!Invalid) {
6145 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6146 // C++ [except.handle]p16:
6147 // The object declared in an exception-declaration or, if the
6148 // exception-declaration does not specify a name, a temporary (12.2) is
6149 // copy-initialized (8.5) from the exception object. [...]
6150 // The object is destroyed when the handler exits, after the destruction
6151 // of any automatic objects initialized within the handler.
6152 //
6153 // We just pretend to initialize the object with itself, then make sure
6154 // it can be destroyed later.
6155 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6156 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6157 Loc, ExDeclType, 0);
6158 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6159 SourceLocation());
6160 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
John McCalldadc5752010-08-24 06:29:42 +00006161 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00006162 MultiExprArg(*this, &ExDeclRef, 1));
Douglas Gregor6de584c2010-03-05 23:38:39 +00006163 if (Result.isInvalid())
6164 Invalid = true;
6165 else
6166 FinalizeVarWithDestructor(ExDecl, RecordTy);
6167 }
6168 }
6169
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006170 if (Invalid)
6171 ExDecl->setInvalidDecl();
6172
6173 return ExDecl;
6174}
6175
6176/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6177/// handler.
John McCall48871652010-08-21 09:40:31 +00006178Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00006179 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6180 QualType ExDeclType = TInfo->getType();
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006181
6182 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00006183 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006184 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00006185 LookupOrdinaryName,
6186 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006187 // The scope should be freshly made just for us. There is just no way
6188 // it contains any previous declaration.
John McCall48871652010-08-21 09:40:31 +00006189 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl54c04d42008-12-22 19:15:10 +00006190 if (PrevDecl->isTemplateParameter()) {
6191 // Maybe we will complain about the shadowed template parameter.
6192 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006193 }
6194 }
6195
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006196 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006197 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6198 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006199 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006200 }
6201
John McCallbcd03502009-12-07 02:54:59 +00006202 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006203 D.getIdentifier(),
6204 D.getIdentifierLoc(),
6205 D.getDeclSpec().getSourceRange());
6206
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006207 if (Invalid)
6208 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00006209
Sebastian Redl54c04d42008-12-22 19:15:10 +00006210 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006211 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006212 PushOnScopeChains(ExDecl, S);
6213 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006214 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006215
Douglas Gregor758a8692009-06-17 21:51:59 +00006216 ProcessDeclAttributes(S, ExDecl, D);
John McCall48871652010-08-21 09:40:31 +00006217 return ExDecl;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006218}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006219
John McCall48871652010-08-21 09:40:31 +00006220Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
John McCallb268a282010-08-23 23:25:46 +00006221 Expr *AssertExpr,
6222 Expr *AssertMessageExpr_) {
6223 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006224
Anders Carlsson54b26982009-03-14 00:33:21 +00006225 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6226 llvm::APSInt Value(32);
6227 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6228 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6229 AssertExpr->getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006230 return 0;
Anders Carlsson54b26982009-03-14 00:33:21 +00006231 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006232
Anders Carlsson54b26982009-03-14 00:33:21 +00006233 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00006234 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00006235 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00006236 }
6237 }
Mike Stump11289f42009-09-09 15:08:12 +00006238
Mike Stump11289f42009-09-09 15:08:12 +00006239 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006240 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00006241
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006242 CurContext->addDecl(Decl);
John McCall48871652010-08-21 09:40:31 +00006243 return Decl;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006244}
Sebastian Redlf769df52009-03-24 22:27:57 +00006245
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006246/// \brief Perform semantic analysis of the given friend type declaration.
6247///
6248/// \returns A friend declaration that.
6249FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6250 TypeSourceInfo *TSInfo) {
6251 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6252
6253 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006254 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006255
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006256 if (!getLangOptions().CPlusPlus0x) {
6257 // C++03 [class.friend]p2:
6258 // An elaborated-type-specifier shall be used in a friend declaration
6259 // for a class.*
6260 //
6261 // * The class-key of the elaborated-type-specifier is required.
6262 if (!ActiveTemplateInstantiations.empty()) {
6263 // Do not complain about the form of friend template types during
6264 // template instantiation; we will already have complained when the
6265 // template was declared.
6266 } else if (!T->isElaboratedTypeSpecifier()) {
6267 // If we evaluated the type to a record type, suggest putting
6268 // a tag in front.
6269 if (const RecordType *RT = T->getAs<RecordType>()) {
6270 RecordDecl *RD = RT->getDecl();
6271
6272 std::string InsertionText = std::string(" ") + RD->getKindName();
6273
6274 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6275 << (unsigned) RD->getTagKind()
6276 << T
6277 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6278 InsertionText);
6279 } else {
6280 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6281 << T
6282 << SourceRange(FriendLoc, TypeRange.getEnd());
6283 }
6284 } else if (T->getAs<EnumType>()) {
6285 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006286 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006287 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006288 }
6289 }
6290
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006291 // C++0x [class.friend]p3:
6292 // If the type specifier in a friend declaration designates a (possibly
6293 // cv-qualified) class type, that class is declared as a friend; otherwise,
6294 // the friend declaration is ignored.
6295
6296 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6297 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006298
6299 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6300}
6301
John McCall11083da2009-09-16 22:47:08 +00006302/// Handle a friend type declaration. This works in tandem with
6303/// ActOnTag.
6304///
6305/// Notes on friend class templates:
6306///
6307/// We generally treat friend class declarations as if they were
6308/// declaring a class. So, for example, the elaborated type specifier
6309/// in a friend declaration is required to obey the restrictions of a
6310/// class-head (i.e. no typedefs in the scope chain), template
6311/// parameters are required to match up with simple template-ids, &c.
6312/// However, unlike when declaring a template specialization, it's
6313/// okay to refer to a template specialization without an empty
6314/// template parameter declaration, e.g.
6315/// friend class A<T>::B<unsigned>;
6316/// We permit this as a special case; if there are any template
6317/// parameters present at all, require proper matching, i.e.
6318/// template <> template <class T> friend class A<int>::B;
John McCall48871652010-08-21 09:40:31 +00006319Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00006320 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006321 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00006322
6323 assert(DS.isFriendSpecified());
6324 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6325
John McCall11083da2009-09-16 22:47:08 +00006326 // Try to convert the decl specifier to a type. This works for
6327 // friend templates because ActOnTag never produces a ClassTemplateDecl
6328 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00006329 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00006330 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6331 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00006332 if (TheDeclarator.isInvalidType())
John McCall48871652010-08-21 09:40:31 +00006333 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006334
John McCall11083da2009-09-16 22:47:08 +00006335 // This is definitely an error in C++98. It's probably meant to
6336 // be forbidden in C++0x, too, but the specification is just
6337 // poorly written.
6338 //
6339 // The problem is with declarations like the following:
6340 // template <T> friend A<T>::foo;
6341 // where deciding whether a class C is a friend or not now hinges
6342 // on whether there exists an instantiation of A that causes
6343 // 'foo' to equal C. There are restrictions on class-heads
6344 // (which we declare (by fiat) elaborated friend declarations to
6345 // be) that makes this tractable.
6346 //
6347 // FIXME: handle "template <> friend class A<T>;", which
6348 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00006349 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00006350 Diag(Loc, diag::err_tagless_friend_type_template)
6351 << DS.getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006352 return 0;
John McCall11083da2009-09-16 22:47:08 +00006353 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006354
John McCallaa74a0c2009-08-28 07:59:38 +00006355 // C++98 [class.friend]p1: A friend of a class is a function
6356 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00006357 // This is fixed in DR77, which just barely didn't make the C++03
6358 // deadline. It's also a very silly restriction that seriously
6359 // affects inner classes and which nobody else seems to implement;
6360 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00006361 //
6362 // But note that we could warn about it: it's always useless to
6363 // friend one of your own members (it's not, however, worthless to
6364 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00006365
John McCall11083da2009-09-16 22:47:08 +00006366 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006367 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00006368 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006369 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00006370 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00006371 TSI,
John McCall11083da2009-09-16 22:47:08 +00006372 DS.getFriendSpecLoc());
6373 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006374 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6375
6376 if (!D)
John McCall48871652010-08-21 09:40:31 +00006377 return 0;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006378
John McCall11083da2009-09-16 22:47:08 +00006379 D->setAccess(AS_public);
6380 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006381
John McCall48871652010-08-21 09:40:31 +00006382 return D;
John McCallaa74a0c2009-08-28 07:59:38 +00006383}
6384
John McCall48871652010-08-21 09:40:31 +00006385Decl *Sema::ActOnFriendFunctionDecl(Scope *S,
6386 Declarator &D,
6387 bool IsDefinition,
John McCall2f212b32009-09-11 21:02:39 +00006388 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006389 const DeclSpec &DS = D.getDeclSpec();
6390
6391 assert(DS.isFriendSpecified());
6392 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6393
6394 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00006395 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6396 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00006397
6398 // C++ [class.friend]p1
6399 // A friend of a class is a function or class....
6400 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00006401 // It *doesn't* see through dependent types, which is correct
6402 // according to [temp.arg.type]p3:
6403 // If a declaration acquires a function type through a
6404 // type dependent on a template-parameter and this causes
6405 // a declaration that does not use the syntactic form of a
6406 // function declarator to have a function type, the program
6407 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00006408 if (!T->isFunctionType()) {
6409 Diag(Loc, diag::err_unexpected_friend);
6410
6411 // It might be worthwhile to try to recover by creating an
6412 // appropriate declaration.
John McCall48871652010-08-21 09:40:31 +00006413 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006414 }
6415
6416 // C++ [namespace.memdef]p3
6417 // - If a friend declaration in a non-local class first declares a
6418 // class or function, the friend class or function is a member
6419 // of the innermost enclosing namespace.
6420 // - The name of the friend is not found by simple name lookup
6421 // until a matching declaration is provided in that namespace
6422 // scope (either before or after the class declaration granting
6423 // friendship).
6424 // - If a friend function is called, its name may be found by the
6425 // name lookup that considers functions from namespaces and
6426 // classes associated with the types of the function arguments.
6427 // - When looking for a prior declaration of a class or a function
6428 // declared as a friend, scopes outside the innermost enclosing
6429 // namespace scope are not considered.
6430
John McCallaa74a0c2009-08-28 07:59:38 +00006431 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006432 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6433 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +00006434 assert(Name);
6435
John McCall07e91c02009-08-06 02:15:43 +00006436 // The context we found the declaration in, or in which we should
6437 // create the declaration.
6438 DeclContext *DC;
6439
6440 // FIXME: handle local classes
6441
6442 // Recover from invalid scope qualifiers as if they just weren't there.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006443 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +00006444 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00006445 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6446 DC = computeDeclContext(ScopeQual);
6447
6448 // FIXME: handle dependent contexts
John McCall48871652010-08-21 09:40:31 +00006449 if (!DC) return 0;
6450 if (RequireCompleteDeclContext(ScopeQual, DC)) return 0;
John McCall07e91c02009-08-06 02:15:43 +00006451
John McCall1f82f242009-11-18 22:49:29 +00006452 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006453
John McCall45831862010-05-28 01:41:47 +00006454 // Ignore things found implicitly in the wrong scope.
John McCall07e91c02009-08-06 02:15:43 +00006455 // TODO: better diagnostics for this case. Suggesting the right
6456 // qualified scope would be nice...
John McCall45831862010-05-28 01:41:47 +00006457 LookupResult::Filter F = Previous.makeFilter();
6458 while (F.hasNext()) {
6459 NamedDecl *D = F.next();
6460 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6461 F.erase();
6462 }
6463 F.done();
6464
6465 if (Previous.empty()) {
John McCallaa74a0c2009-08-28 07:59:38 +00006466 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00006467 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
John McCall48871652010-08-21 09:40:31 +00006468 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006469 }
6470
6471 // C++ [class.friend]p1: A friend of a class is a function or
6472 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006473 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00006474 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6475
John McCall07e91c02009-08-06 02:15:43 +00006476 // Otherwise walk out to the nearest namespace scope looking for matches.
6477 } else {
6478 // TODO: handle local class contexts.
6479
6480 DC = CurContext;
6481 while (true) {
6482 // Skip class contexts. If someone can cite chapter and verse
6483 // for this behavior, that would be nice --- it's what GCC and
6484 // EDG do, and it seems like a reasonable intent, but the spec
6485 // really only says that checks for unqualified existing
6486 // declarations should stop at the nearest enclosing namespace,
6487 // not that they should only consider the nearest enclosing
6488 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006489 while (DC->isRecord())
6490 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00006491
John McCall1f82f242009-11-18 22:49:29 +00006492 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006493
6494 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00006495 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00006496 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006497
John McCall07e91c02009-08-06 02:15:43 +00006498 if (DC->isFileContext()) break;
6499 DC = DC->getParent();
6500 }
6501
6502 // C++ [class.friend]p1: A friend of a class is a function or
6503 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00006504 // C++0x changes this for both friend types and functions.
6505 // Most C++ 98 compilers do seem to give an error here, so
6506 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00006507 if (!Previous.empty() && DC->Equals(CurContext)
6508 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00006509 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6510 }
6511
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006512 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00006513 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00006514 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6515 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6516 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00006517 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00006518 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6519 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall48871652010-08-21 09:40:31 +00006520 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006521 }
John McCall07e91c02009-08-06 02:15:43 +00006522 }
6523
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006524 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00006525 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006526 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00006527 IsDefinition,
6528 Redeclaration);
John McCall48871652010-08-21 09:40:31 +00006529 if (!ND) return 0;
John McCall759e32b2009-08-31 22:39:49 +00006530
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006531 assert(ND->getDeclContext() == DC);
6532 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00006533
John McCall759e32b2009-08-31 22:39:49 +00006534 // Add the function declaration to the appropriate lookup tables,
6535 // adjusting the redeclarations list as necessary. We don't
6536 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00006537 //
John McCall759e32b2009-08-31 22:39:49 +00006538 // Also update the scope-based lookup if the target context's
6539 // lookup context is in lexical scope.
6540 if (!CurContext->isDependentContext()) {
6541 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006542 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006543 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006544 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006545 }
John McCallaa74a0c2009-08-28 07:59:38 +00006546
6547 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006548 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00006549 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00006550 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00006551 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00006552
John McCall48871652010-08-21 09:40:31 +00006553 return ND;
Anders Carlsson38811702009-05-11 22:55:49 +00006554}
6555
John McCall48871652010-08-21 09:40:31 +00006556void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
6557 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00006558
Sebastian Redlf769df52009-03-24 22:27:57 +00006559 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6560 if (!Fn) {
6561 Diag(DelLoc, diag::err_deleted_non_function);
6562 return;
6563 }
6564 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6565 Diag(DelLoc, diag::err_deleted_decl_not_first);
6566 Diag(Prev->getLocation(), diag::note_previous_declaration);
6567 // If the declaration wasn't the first, we delete the function anyway for
6568 // recovery.
6569 }
6570 Fn->setDeleted();
6571}
Sebastian Redl4c018662009-04-27 21:33:24 +00006572
6573static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6574 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6575 ++CI) {
6576 Stmt *SubStmt = *CI;
6577 if (!SubStmt)
6578 continue;
6579 if (isa<ReturnStmt>(SubStmt))
6580 Self.Diag(SubStmt->getSourceRange().getBegin(),
6581 diag::err_return_in_constructor_handler);
6582 if (!isa<Expr>(SubStmt))
6583 SearchForReturnInStmt(Self, SubStmt);
6584 }
6585}
6586
6587void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6588 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6589 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6590 SearchForReturnInStmt(*this, Handler);
6591 }
6592}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006593
Mike Stump11289f42009-09-09 15:08:12 +00006594bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006595 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00006596 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6597 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006598
Chandler Carruth284bb2e2010-02-15 11:53:20 +00006599 if (Context.hasSameType(NewTy, OldTy) ||
6600 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006601 return false;
Mike Stump11289f42009-09-09 15:08:12 +00006602
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006603 // Check if the return types are covariant
6604 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00006605
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006606 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006607 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6608 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006609 NewClassTy = NewPT->getPointeeType();
6610 OldClassTy = OldPT->getPointeeType();
6611 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006612 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6613 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6614 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6615 NewClassTy = NewRT->getPointeeType();
6616 OldClassTy = OldRT->getPointeeType();
6617 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006618 }
6619 }
Mike Stump11289f42009-09-09 15:08:12 +00006620
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006621 // The return types aren't either both pointers or references to a class type.
6622 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00006623 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006624 diag::err_different_return_type_for_overriding_virtual_function)
6625 << New->getDeclName() << NewTy << OldTy;
6626 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00006627
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006628 return true;
6629 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006630
Anders Carlssone60365b2009-12-31 18:34:24 +00006631 // C++ [class.virtual]p6:
6632 // If the return type of D::f differs from the return type of B::f, the
6633 // class type in the return type of D::f shall be complete at the point of
6634 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006635 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6636 if (!RT->isBeingDefined() &&
6637 RequireCompleteType(New->getLocation(), NewClassTy,
6638 PDiag(diag::err_covariant_return_incomplete)
6639 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00006640 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006641 }
Anders Carlssone60365b2009-12-31 18:34:24 +00006642
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00006643 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006644 // Check if the new class derives from the old class.
6645 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6646 Diag(New->getLocation(),
6647 diag::err_covariant_return_not_derived)
6648 << New->getDeclName() << NewTy << OldTy;
6649 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6650 return true;
6651 }
Mike Stump11289f42009-09-09 15:08:12 +00006652
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006653 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00006654 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00006655 diag::err_covariant_return_inaccessible_base,
6656 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6657 // FIXME: Should this point to the return type?
6658 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006659 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6660 return true;
6661 }
6662 }
Mike Stump11289f42009-09-09 15:08:12 +00006663
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006664 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006665 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006666 Diag(New->getLocation(),
6667 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006668 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006669 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6670 return true;
6671 };
Mike Stump11289f42009-09-09 15:08:12 +00006672
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006673
6674 // The new class type must have the same or less qualifiers as the old type.
6675 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6676 Diag(New->getLocation(),
6677 diag::err_covariant_return_type_class_type_more_qualified)
6678 << New->getDeclName() << NewTy << OldTy;
6679 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6680 return true;
6681 };
Mike Stump11289f42009-09-09 15:08:12 +00006682
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006683 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006684}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006685
Alexis Hunt96d5c762009-11-21 08:43:09 +00006686bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6687 const CXXMethodDecl *Old)
6688{
6689 if (Old->hasAttr<FinalAttr>()) {
6690 Diag(New->getLocation(), diag::err_final_function_overridden)
6691 << New->getDeclName();
6692 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6693 return true;
6694 }
6695
6696 return false;
6697}
6698
Douglas Gregor21920e372009-12-01 17:24:26 +00006699/// \brief Mark the given method pure.
6700///
6701/// \param Method the method to be marked pure.
6702///
6703/// \param InitRange the source range that covers the "0" initializer.
6704bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6705 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6706 Method->setPure();
6707
6708 // A class is abstract if at least one function is pure virtual.
6709 Method->getParent()->setAbstract(true);
6710 return false;
6711 }
6712
6713 if (!Method->isInvalidDecl())
6714 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6715 << Method->getDeclName() << InitRange;
6716 return true;
6717}
6718
John McCall1f4ee7b2009-12-19 09:28:58 +00006719/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6720/// an initializer for the out-of-line declaration 'Dcl'. The scope
6721/// is a fresh scope pushed for just this purpose.
6722///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006723/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6724/// static data member of class X, names should be looked up in the scope of
6725/// class X.
John McCall48871652010-08-21 09:40:31 +00006726void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006727 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006728 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006729
John McCall1f4ee7b2009-12-19 09:28:58 +00006730 // We should only get called for declarations with scope specifiers, like:
6731 // int foo::bar;
6732 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006733 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006734}
6735
6736/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall48871652010-08-21 09:40:31 +00006737/// initializer for the out-of-line declaration 'D'.
6738void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006739 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006740 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006741
John McCall1f4ee7b2009-12-19 09:28:58 +00006742 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006743 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006744}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006745
6746/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6747/// C++ if/switch/while/for statement.
6748/// e.g: "if (int x = f()) {...}"
John McCall48871652010-08-21 09:40:31 +00006749DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006750 // C++ 6.4p2:
6751 // The declarator shall not specify a function or an array.
6752 // The type-specifier-seq shall not contain typedef and shall not declare a
6753 // new class or enumeration.
6754 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6755 "Parser allowed 'typedef' as storage class of condition decl.");
6756
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006757 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00006758 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6759 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006760
6761 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6762 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6763 // would be created and CXXConditionDeclExpr wants a VarDecl.
6764 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6765 << D.getSourceRange();
6766 return DeclResult();
6767 } else if (OwnedTag && OwnedTag->isDefinition()) {
6768 // The type-specifier-seq shall not declare a new class or enumeration.
6769 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6770 }
6771
John McCall48871652010-08-21 09:40:31 +00006772 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006773 if (!Dcl)
6774 return DeclResult();
6775
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006776 return Dcl;
6777}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006778
Douglas Gregor88d292c2010-05-13 16:44:06 +00006779void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6780 bool DefinitionRequired) {
6781 // Ignore any vtable uses in unevaluated operands or for classes that do
6782 // not have a vtable.
6783 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6784 CurContext->isDependentContext() ||
6785 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006786 return;
6787
Douglas Gregor88d292c2010-05-13 16:44:06 +00006788 // Try to insert this class into the map.
6789 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6790 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6791 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6792 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00006793 // If we already had an entry, check to see if we are promoting this vtable
6794 // to required a definition. If so, we need to reappend to the VTableUses
6795 // list, since we may have already processed the first entry.
6796 if (DefinitionRequired && !Pos.first->second) {
6797 Pos.first->second = true;
6798 } else {
6799 // Otherwise, we can early exit.
6800 return;
6801 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006802 }
6803
6804 // Local classes need to have their virtual members marked
6805 // immediately. For all other classes, we mark their virtual members
6806 // at the end of the translation unit.
6807 if (Class->isLocalClass())
6808 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006809 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006810 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006811}
6812
Douglas Gregor88d292c2010-05-13 16:44:06 +00006813bool Sema::DefineUsedVTables() {
6814 // If any dynamic classes have their key function defined within
6815 // this translation unit, then those vtables are considered "used" and must
6816 // be emitted.
6817 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6818 if (const CXXMethodDecl *KeyFunction
6819 = Context.getKeyFunction(DynamicClasses[I])) {
6820 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006821 if (KeyFunction->hasBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006822 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6823 }
6824 }
6825
6826 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006827 return false;
6828
Douglas Gregor88d292c2010-05-13 16:44:06 +00006829 // Note: The VTableUses vector could grow as a result of marking
6830 // the members of a class as "used", so we check the size each
6831 // time through the loop and prefer indices (with are stable) to
6832 // iterators (which are not).
6833 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00006834 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006835 if (!Class)
6836 continue;
6837
6838 SourceLocation Loc = VTableUses[I].second;
6839
6840 // If this class has a key function, but that key function is
6841 // defined in another translation unit, we don't need to emit the
6842 // vtable even though we're using it.
6843 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006844 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00006845 switch (KeyFunction->getTemplateSpecializationKind()) {
6846 case TSK_Undeclared:
6847 case TSK_ExplicitSpecialization:
6848 case TSK_ExplicitInstantiationDeclaration:
6849 // The key function is in another translation unit.
6850 continue;
6851
6852 case TSK_ExplicitInstantiationDefinition:
6853 case TSK_ImplicitInstantiation:
6854 // We will be instantiating the key function.
6855 break;
6856 }
6857 } else if (!KeyFunction) {
6858 // If we have a class with no key function that is the subject
6859 // of an explicit instantiation declaration, suppress the
6860 // vtable; it will live with the explicit instantiation
6861 // definition.
6862 bool IsExplicitInstantiationDeclaration
6863 = Class->getTemplateSpecializationKind()
6864 == TSK_ExplicitInstantiationDeclaration;
6865 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6866 REnd = Class->redecls_end();
6867 R != REnd; ++R) {
6868 TemplateSpecializationKind TSK
6869 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6870 if (TSK == TSK_ExplicitInstantiationDeclaration)
6871 IsExplicitInstantiationDeclaration = true;
6872 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6873 IsExplicitInstantiationDeclaration = false;
6874 break;
6875 }
6876 }
6877
6878 if (IsExplicitInstantiationDeclaration)
6879 continue;
6880 }
6881
6882 // Mark all of the virtual members of this class as referenced, so
6883 // that we can build a vtable. Then, tell the AST consumer that a
6884 // vtable for this class is required.
6885 MarkVirtualMembersReferenced(Loc, Class);
6886 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6887 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6888
6889 // Optionally warn if we're emitting a weak vtable.
6890 if (Class->getLinkage() == ExternalLinkage &&
6891 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006892 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006893 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6894 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006895 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006896 VTableUses.clear();
6897
Anders Carlsson82fccd02009-12-07 08:24:59 +00006898 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006899}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006900
Rafael Espindola5b334082010-03-26 00:36:59 +00006901void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6902 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006903 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6904 e = RD->method_end(); i != e; ++i) {
6905 CXXMethodDecl *MD = *i;
6906
6907 // C++ [basic.def.odr]p2:
6908 // [...] A virtual member function is used if it is not pure. [...]
6909 if (MD->isVirtual() && !MD->isPure())
6910 MarkDeclarationReferenced(Loc, MD);
6911 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006912
6913 // Only classes that have virtual bases need a VTT.
6914 if (RD->getNumVBases() == 0)
6915 return;
6916
6917 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6918 e = RD->bases_end(); i != e; ++i) {
6919 const CXXRecordDecl *Base =
6920 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +00006921 if (Base->getNumVBases() == 0)
6922 continue;
6923 MarkVirtualMembersReferenced(Loc, Base);
6924 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006925}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006926
6927/// SetIvarInitializers - This routine builds initialization ASTs for the
6928/// Objective-C implementation whose ivars need be initialized.
6929void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6930 if (!getLangOptions().CPlusPlus)
6931 return;
Fariborz Jahaniana50b3a22010-08-20 21:21:08 +00006932 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006933 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6934 CollectIvarsToConstructOrDestruct(OID, ivars);
6935 if (ivars.empty())
6936 return;
6937 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6938 for (unsigned i = 0; i < ivars.size(); i++) {
6939 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00006940 if (Field->isInvalidDecl())
6941 continue;
6942
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006943 CXXBaseOrMemberInitializer *Member;
6944 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6945 InitializationKind InitKind =
6946 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6947
6948 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00006949 ExprResult MemberInit =
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006950 InitSeq.Perform(*this, InitEntity, InitKind,
6951 Sema::MultiExprArg(*this, 0, 0));
John McCallb268a282010-08-23 23:25:46 +00006952 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006953 // Note, MemberInit could actually come back empty if no initialization
6954 // is required (e.g., because it would call a trivial default constructor)
6955 if (!MemberInit.get() || MemberInit.isInvalid())
6956 continue;
6957
6958 Member =
6959 new (Context) CXXBaseOrMemberInitializer(Context,
6960 Field, SourceLocation(),
6961 SourceLocation(),
6962 MemberInit.takeAs<Expr>(),
6963 SourceLocation());
6964 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00006965
6966 // Be sure that the destructor is accessible and is marked as referenced.
6967 if (const RecordType *RecordTy
6968 = Context.getBaseElementType(Field->getType())
6969 ->getAs<RecordType>()) {
6970 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00006971 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00006972 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6973 CheckDestructorAccess(Field->getLocation(), Destructor,
6974 PDiag(diag::err_access_dtor_ivar)
6975 << Context.getBaseElementType(Field->getType()));
6976 }
6977 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006978 }
6979 ObjCImplementation->setIvarInitializers(Context,
6980 AllToInit.data(), AllToInit.size());
6981 }
6982}