blob: d590a3c0e5820131047db0e7523929d74eeabcf6 [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
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000014#include "clang/Sema/Sema.h"
15#include "clang/Sema/Initialization.h"
16#include "clang/Sema/Lookup.h"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000017#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000018#include "clang/AST/ASTContext.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000019#include "clang/AST/CharUnits.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000020#include "clang/AST/CXXInheritance.h"
Anders Carlssonb5a27b42009-03-24 01:19:16 +000021#include "clang/AST/DeclVisitor.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000022#include "clang/AST/RecordLayout.h"
23#include "clang/AST/StmtVisitor.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000024#include "clang/AST/TypeLoc.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000025#include "clang/AST/TypeOrdering.h"
John McCall8b0666c2010-08-20 18:27:03 +000026#include "clang/Sema/DeclSpec.h"
27#include "clang/Sema/ParsedTemplate.h"
Anders Carlssond624e162009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000030#include "llvm/ADT/STLExtras.h"
Douglas Gregor29a92472008-10-22 17:49:05 +000031#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000032#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000033
34using namespace clang;
35
Chris Lattner58258242008-04-10 02:22:51 +000036//===----------------------------------------------------------------------===//
37// CheckDefaultArgumentVisitor
38//===----------------------------------------------------------------------===//
39
Chris Lattnerb0d38442008-04-12 23:52:44 +000040namespace {
41 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
42 /// the default argument of a parameter to determine whether it
43 /// contains any ill-formed subexpressions. For example, this will
44 /// diagnose the use of local variables or parameters within the
45 /// default argument expression.
Benjamin Kramer337e3a52009-11-28 19:45:26 +000046 class CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000047 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000048 Expr *DefaultArg;
49 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000050
Chris Lattnerb0d38442008-04-12 23:52:44 +000051 public:
Mike Stump11289f42009-09-09 15:08:12 +000052 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000053 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000054
Chris Lattnerb0d38442008-04-12 23:52:44 +000055 bool VisitExpr(Expr *Node);
56 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000057 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000058 };
Chris Lattner58258242008-04-10 02:22:51 +000059
Chris Lattnerb0d38442008-04-12 23:52:44 +000060 /// VisitExpr - Visit all of the children of this expression.
61 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
62 bool IsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +000063 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattner574dee62008-07-26 22:17:49 +000064 E = Node->child_end(); I != E; ++I)
65 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000066 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000067 }
68
Chris Lattnerb0d38442008-04-12 23:52:44 +000069 /// VisitDeclRefExpr - Visit a reference to a declaration, to
70 /// determine whether this declaration can be used in the default
71 /// argument expression.
72 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +000073 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-04-12 23:52:44 +000074 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
75 // C++ [dcl.fct.default]p9
76 // Default arguments are evaluated each time the function is
77 // called. The order of evaluation of function arguments is
78 // unspecified. Consequently, parameters of a function shall not
79 // be used in default argument expressions, even if they are not
80 // evaluated. Parameters of a function declared before a default
81 // argument expression are in scope and can hide namespace and
82 // class member names.
Mike Stump11289f42009-09-09 15:08:12 +000083 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000084 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000085 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000086 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000087 // C++ [dcl.fct.default]p7
88 // Local variables shall not be used in default argument
89 // expressions.
Steve Naroff08899ff2008-04-15 22:42:06 +000090 if (VDecl->isBlockVarDecl())
Mike Stump11289f42009-09-09 15:08:12 +000091 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +000093 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +000094 }
Chris Lattner58258242008-04-10 02:22:51 +000095
Douglas Gregor8e12c382008-11-04 13:41:56 +000096 return false;
97 }
Chris Lattnerb0d38442008-04-12 23:52:44 +000098
Douglas Gregor97a9c812008-11-04 14:32:21 +000099 /// VisitCXXThisExpr - Visit a C++ "this" expression.
100 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
101 // C++ [dcl.fct.default]p8:
102 // The keyword this shall not be used in a default argument of a
103 // member function.
104 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000105 diag::err_param_default_argument_references_this)
106 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000107 }
Chris Lattner58258242008-04-10 02:22:51 +0000108}
109
Anders Carlssonc80a1272009-08-25 02:29:20 +0000110bool
John McCallb268a282010-08-23 23:25:46 +0000111Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump11289f42009-09-09 15:08:12 +0000112 SourceLocation EqualLoc) {
Anders Carlsson114056f2009-08-25 13:46:13 +0000113 if (RequireCompleteType(Param->getLocation(), Param->getType(),
114 diag::err_typecheck_decl_incomplete_type)) {
115 Param->setInvalidDecl();
116 return true;
117 }
118
Anders Carlssonc80a1272009-08-25 02:29:20 +0000119 // C++ [dcl.fct.default]p5
120 // A default argument expression is implicitly converted (clause
121 // 4) to the parameter type. The default argument expression has
122 // the same semantic constraints as the initializer expression in
123 // a declaration of a variable of the parameter type, using the
124 // copy-initialization semantics (8.5).
Douglas Gregor85dabae2009-12-16 01:38:02 +0000125 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
126 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
127 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000128 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
129 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +0000130 MultiExprArg(*this, &Arg, 1));
Eli Friedman5f101b92009-12-22 02:46:13 +0000131 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000132 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000133 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000134
Anders Carlsson6e997b22009-12-15 20:51:39 +0000135 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000136
Anders Carlssonc80a1272009-08-25 02:29:20 +0000137 // Okay: add the default argument to the parameter
138 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000139
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000140 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000141}
142
Chris Lattner58258242008-04-10 02:22:51 +0000143/// ActOnParamDefaultArgument - Check whether the default argument
144/// provided for a function parameter is well-formed. If so, attach it
145/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000146void
John McCall48871652010-08-21 09:40:31 +0000147Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000148 Expr *DefaultArg) {
149 if (!param || !DefaultArg)
Douglas Gregor71a57182009-06-22 23:20:33 +0000150 return;
Mike Stump11289f42009-09-09 15:08:12 +0000151
John McCall48871652010-08-21 09:40:31 +0000152 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000153 UnparsedDefaultArgLocs.erase(Param);
154
Chris Lattner199abbc2008-04-08 05:04:30 +0000155 // Default arguments are only permitted in C++
156 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000157 Diag(EqualLoc, diag::err_param_default_argument)
158 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000159 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000160 return;
161 }
162
Anders Carlssonf1c26952009-08-25 01:02:06 +0000163 // Check that the default argument is well-formed
John McCallb268a282010-08-23 23:25:46 +0000164 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
165 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlssonf1c26952009-08-25 01:02:06 +0000166 Param->setInvalidDecl();
167 return;
168 }
Mike Stump11289f42009-09-09 15:08:12 +0000169
John McCallb268a282010-08-23 23:25:46 +0000170 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000171}
172
Douglas Gregor58354032008-12-24 00:01:03 +0000173/// ActOnParamUnparsedDefaultArgument - We've seen a default
174/// argument for a function parameter, but we can't parse it yet
175/// because we're inside a class definition. Note that this default
176/// argument will be parsed later.
John McCall48871652010-08-21 09:40:31 +0000177void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000178 SourceLocation EqualLoc,
179 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000180 if (!param)
181 return;
Mike Stump11289f42009-09-09 15:08:12 +0000182
John McCall48871652010-08-21 09:40:31 +0000183 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor58354032008-12-24 00:01:03 +0000184 if (Param)
185 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000186
Anders Carlsson84613c42009-06-12 16:51:40 +0000187 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000188}
189
Douglas Gregor4d87df52008-12-16 21:30:33 +0000190/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
191/// the default argument for the parameter param failed.
John McCall48871652010-08-21 09:40:31 +0000192void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000193 if (!param)
194 return;
Mike Stump11289f42009-09-09 15:08:12 +0000195
John McCall48871652010-08-21 09:40:31 +0000196 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump11289f42009-09-09 15:08:12 +0000197
Anders Carlsson84613c42009-06-12 16:51:40 +0000198 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000199
Anders Carlsson84613c42009-06-12 16:51:40 +0000200 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000201}
202
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000203/// CheckExtraCXXDefaultArguments - Check for any extra default
204/// arguments in the declarator, which is not a function declaration
205/// or definition and therefore is not permitted to have default
206/// arguments. This routine should be invoked for every declarator
207/// that is not a function declaration or definition.
208void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
209 // C++ [dcl.fct.default]p3
210 // A default argument expression shall be specified only in the
211 // parameter-declaration-clause of a function declaration or in a
212 // template-parameter (14.1). It shall not be specified for a
213 // parameter pack. If it is specified in a
214 // parameter-declaration-clause, it shall not occur within a
215 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000216 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000217 DeclaratorChunk &chunk = D.getTypeObject(i);
218 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000219 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
220 ParmVarDecl *Param =
John McCall48871652010-08-21 09:40:31 +0000221 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor58354032008-12-24 00:01:03 +0000222 if (Param->hasUnparsedDefaultArg()) {
223 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000224 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
225 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
226 delete Toks;
227 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000228 } else if (Param->getDefaultArg()) {
229 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
230 << Param->getDefaultArg()->getSourceRange();
231 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000232 }
233 }
234 }
235 }
236}
237
Chris Lattner199abbc2008-04-08 05:04:30 +0000238// MergeCXXFunctionDecl - Merge two declarations of the same C++
239// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000240// type. Subroutine of MergeFunctionDecl. Returns true if there was an
241// error, false otherwise.
242bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
243 bool Invalid = false;
244
Chris Lattner199abbc2008-04-08 05:04:30 +0000245 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000246 // For non-template functions, default arguments can be added in
247 // later declarations of a function in the same
248 // scope. Declarations in different scopes have completely
249 // distinct sets of default arguments. That is, declarations in
250 // inner scopes do not acquire default arguments from
251 // declarations in outer scopes, and vice versa. In a given
252 // function declaration, all parameters subsequent to a
253 // parameter with a default argument shall have default
254 // arguments supplied in this or previous declarations. A
255 // default argument shall not be redefined by a later
256 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000257 //
258 // C++ [dcl.fct.default]p6:
259 // Except for member functions of class templates, the default arguments
260 // in a member function definition that appears outside of the class
261 // definition are added to the set of default arguments provided by the
262 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000263 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
264 ParmVarDecl *OldParam = Old->getParamDecl(p);
265 ParmVarDecl *NewParam = New->getParamDecl(p);
266
Douglas Gregorc732aba2009-09-11 18:44:32 +0000267 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor08dc5842010-01-13 00:12:48 +0000268 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
269 // hint here. Alternatively, we could walk the type-source information
270 // for NewParam to find the last source location in the type... but it
271 // isn't worth the effort right now. This is the kind of test case that
272 // is hard to get right:
273
274 // int f(int);
275 // void g(int (*fp)(int) = f);
276 // void g(int (*fp)(int) = &f);
Mike Stump11289f42009-09-09 15:08:12 +0000277 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000278 diag::err_param_default_argument_redefinition)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000279 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000280
281 // Look for the function declaration where the default argument was
282 // actually written, which may be a declaration prior to Old.
283 for (FunctionDecl *Older = Old->getPreviousDeclaration();
284 Older; Older = Older->getPreviousDeclaration()) {
285 if (!Older->getParamDecl(p)->hasDefaultArg())
286 break;
287
288 OldParam = Older->getParamDecl(p);
289 }
290
291 Diag(OldParam->getLocation(), diag::note_previous_definition)
292 << OldParam->getDefaultArgRange();
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000293 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000294 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000295 // Merge the old default argument into the new parameter.
296 // It's important to use getInit() here; getDefaultArg()
297 // strips off any top-level CXXExprWithTemporaries.
John McCallf3cd6652010-03-12 18:31:32 +0000298 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000299 if (OldParam->hasUninstantiatedDefaultArg())
300 NewParam->setUninstantiatedDefaultArg(
301 OldParam->getUninstantiatedDefaultArg());
302 else
John McCalle61b02b2010-05-04 01:53:42 +0000303 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000304 } else if (NewParam->hasDefaultArg()) {
305 if (New->getDescribedFunctionTemplate()) {
306 // Paragraph 4, quoted above, only applies to non-template functions.
307 Diag(NewParam->getLocation(),
308 diag::err_param_default_argument_template_redecl)
309 << NewParam->getDefaultArgRange();
310 Diag(Old->getLocation(), diag::note_template_prev_declaration)
311 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000312 } else if (New->getTemplateSpecializationKind()
313 != TSK_ImplicitInstantiation &&
314 New->getTemplateSpecializationKind() != TSK_Undeclared) {
315 // C++ [temp.expr.spec]p21:
316 // Default function arguments shall not be specified in a declaration
317 // or a definition for one of the following explicit specializations:
318 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000319 // - the explicit specialization of a member function template;
320 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000321 // template where the class template specialization to which the
322 // member function specialization belongs is implicitly
323 // instantiated.
324 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
325 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
326 << New->getDeclName()
327 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000328 } else if (New->getDeclContext()->isDependentContext()) {
329 // C++ [dcl.fct.default]p6 (DR217):
330 // Default arguments for a member function of a class template shall
331 // be specified on the initial declaration of the member function
332 // within the class template.
333 //
334 // Reading the tea leaves a bit in DR217 and its reference to DR205
335 // leads me to the conclusion that one cannot add default function
336 // arguments for an out-of-line definition of a member function of a
337 // dependent type.
338 int WhichKind = 2;
339 if (CXXRecordDecl *Record
340 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
341 if (Record->getDescribedClassTemplate())
342 WhichKind = 0;
343 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
344 WhichKind = 1;
345 else
346 WhichKind = 2;
347 }
348
349 Diag(NewParam->getLocation(),
350 diag::err_param_default_argument_member_template_redecl)
351 << WhichKind
352 << NewParam->getDefaultArgRange();
353 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000354 }
355 }
356
Douglas Gregorf40863c2010-02-12 07:32:17 +0000357 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000358 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000359
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000360 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000361}
362
363/// CheckCXXDefaultArguments - Verify that the default arguments for a
364/// function declaration are well-formed according to C++
365/// [dcl.fct.default].
366void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
367 unsigned NumParams = FD->getNumParams();
368 unsigned p;
369
370 // Find first parameter with a default argument
371 for (p = 0; p < NumParams; ++p) {
372 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000373 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000374 break;
375 }
376
377 // C++ [dcl.fct.default]p4:
378 // In a given function declaration, all parameters
379 // subsequent to a parameter with a default argument shall
380 // have default arguments supplied in this or previous
381 // declarations. A default argument shall not be redefined
382 // by a later declaration (not even to the same value).
383 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000384 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000385 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000386 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000387 if (Param->isInvalidDecl())
388 /* We already complained about this parameter. */;
389 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000390 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000391 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000392 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000393 else
Mike Stump11289f42009-09-09 15:08:12 +0000394 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000395 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000396
Chris Lattner199abbc2008-04-08 05:04:30 +0000397 LastMissingDefaultArg = p;
398 }
399 }
400
401 if (LastMissingDefaultArg > 0) {
402 // Some default arguments were missing. Clear out all of the
403 // default arguments up to (and including) the last missing
404 // default argument, so that we leave the function parameters
405 // in a semantically valid state.
406 for (p = 0; p <= LastMissingDefaultArg; ++p) {
407 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000408 if (Param->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000409 Param->setDefaultArg(0);
410 }
411 }
412 }
413}
Douglas Gregor556877c2008-04-13 21:30:24 +0000414
Douglas Gregor61956c42008-10-31 09:07:45 +0000415/// isCurrentClassName - Determine whether the identifier II is the
416/// name of the class type currently being defined. In the case of
417/// nested classes, this will only return true if II is the name of
418/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000419bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
420 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000421 assert(getLangOptions().CPlusPlus && "No class names in C!");
422
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000423 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000424 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000425 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000426 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
427 } else
428 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
429
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000430 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000431 return &II == CurDecl->getIdentifier();
432 else
433 return false;
434}
435
Mike Stump11289f42009-09-09 15:08:12 +0000436/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000437///
438/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
439/// and returns NULL otherwise.
440CXXBaseSpecifier *
441Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
442 SourceRange SpecifierRange,
443 bool Virtual, AccessSpecifier Access,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000444 TypeSourceInfo *TInfo) {
445 QualType BaseType = TInfo->getType();
446
Douglas Gregor463421d2009-03-03 04:44:36 +0000447 // C++ [class.union]p1:
448 // A union shall not have base classes.
449 if (Class->isUnion()) {
450 Diag(Class->getLocation(), diag::err_base_clause_on_union)
451 << SpecifierRange;
452 return 0;
453 }
454
455 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000456 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000457 Class->getTagKind() == TTK_Class,
458 Access, TInfo);
459
460 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor463421d2009-03-03 04:44:36 +0000461
462 // Base specifiers must be record types.
463 if (!BaseType->isRecordType()) {
464 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
465 return 0;
466 }
467
468 // C++ [class.union]p1:
469 // A union shall not be used as a base class.
470 if (BaseType->isUnionType()) {
471 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
472 return 0;
473 }
474
475 // C++ [class.derived]p2:
476 // The class-name in a base-specifier shall not be an incompletely
477 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000478 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000479 PDiag(diag::err_incomplete_base_class)
John McCall3696dcb2010-08-17 07:23:57 +0000480 << SpecifierRange)) {
481 Class->setInvalidDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000482 return 0;
John McCall3696dcb2010-08-17 07:23:57 +0000483 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000484
Eli Friedmanc96d4962009-08-15 21:55:26 +0000485 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000486 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000487 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000488 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000489 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000490 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
491 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000492
Alexis Hunt96d5c762009-11-21 08:43:09 +0000493 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
494 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
495 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregore7488b92009-12-01 16:58:18 +0000496 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
497 << BaseType;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000498 return 0;
499 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000500
Eli Friedman89c038e2009-12-05 23:03:49 +0000501 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
John McCall3696dcb2010-08-17 07:23:57 +0000502
503 if (BaseDecl->isInvalidDecl())
504 Class->setInvalidDecl();
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000505
506 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000507 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000508 Class->getTagKind() == TTK_Class,
509 Access, TInfo);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000510}
511
512void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
513 const CXXRecordDecl *BaseClass,
514 bool BaseIsVirtual) {
Eli Friedman89c038e2009-12-05 23:03:49 +0000515 // A class with a non-empty base class is not empty.
516 // FIXME: Standard ref?
517 if (!BaseClass->isEmpty())
518 Class->setEmpty(false);
519
520 // C++ [class.virtual]p1:
521 // A class that [...] inherits a virtual function is called a polymorphic
522 // class.
523 if (BaseClass->isPolymorphic())
524 Class->setPolymorphic(true);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000525
Douglas Gregor463421d2009-03-03 04:44:36 +0000526 // C++ [dcl.init.aggr]p1:
527 // An aggregate is [...] a class with [...] no base classes [...].
528 Class->setAggregate(false);
Eli Friedman89c038e2009-12-05 23:03:49 +0000529
530 // C++ [class]p4:
531 // A POD-struct is an aggregate class...
Douglas Gregor463421d2009-03-03 04:44:36 +0000532 Class->setPOD(false);
533
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000534 if (BaseIsVirtual) {
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000535 // C++ [class.ctor]p5:
536 // A constructor is trivial if its class has no virtual base classes.
537 Class->setHasTrivialConstructor(false);
Douglas Gregor8a273912009-07-22 18:25:24 +0000538
539 // C++ [class.copy]p6:
540 // A copy constructor is trivial if its class has no virtual base classes.
541 Class->setHasTrivialCopyConstructor(false);
542
543 // C++ [class.copy]p11:
544 // A copy assignment operator is trivial if its class has no virtual
545 // base classes.
546 Class->setHasTrivialCopyAssignment(false);
Eli Friedmanc96d4962009-08-15 21:55:26 +0000547
548 // C++0x [meta.unary.prop] is_empty:
549 // T is a class type, but not a union type, with ... no virtual base
550 // classes
551 Class->setEmpty(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000552 } else {
553 // C++ [class.ctor]p5:
Mike Stump11289f42009-09-09 15:08:12 +0000554 // A constructor is trivial if all the direct base classes of its
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000555 // class have trivial constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000556 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000557 Class->setHasTrivialConstructor(false);
558
559 // C++ [class.copy]p6:
560 // A copy constructor is trivial if all the direct base classes of its
561 // class have trivial copy constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000562 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000563 Class->setHasTrivialCopyConstructor(false);
564
565 // C++ [class.copy]p11:
566 // A copy assignment operator is trivial if all the direct base classes
567 // of its class have trivial copy assignment operators.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000568 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor8a273912009-07-22 18:25:24 +0000569 Class->setHasTrivialCopyAssignment(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000570 }
Anders Carlsson6dc35752009-04-17 02:34:54 +0000571
572 // C++ [class.ctor]p3:
573 // A destructor is trivial if all the direct base classes of its class
574 // have trivial destructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000575 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000576 Class->setHasTrivialDestructor(false);
Douglas Gregor463421d2009-03-03 04:44:36 +0000577}
578
Douglas Gregor556877c2008-04-13 21:30:24 +0000579/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
580/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +0000581/// example:
582/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000583/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump11289f42009-09-09 15:08:12 +0000584Sema::BaseResult
John McCall48871652010-08-21 09:40:31 +0000585Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000586 bool Virtual, AccessSpecifier Access,
587 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000588 if (!classdecl)
589 return true;
590
Douglas Gregorc40290e2009-03-09 23:48:35 +0000591 AdjustDeclIfTemplate(classdecl);
John McCall48871652010-08-21 09:40:31 +0000592 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000593 if (!Class)
594 return true;
595
Nick Lewycky19b9f952010-07-26 16:56:01 +0000596 TypeSourceInfo *TInfo = 0;
597 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor463421d2009-03-03 04:44:36 +0000598 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000599 Virtual, Access, TInfo))
Douglas Gregor463421d2009-03-03 04:44:36 +0000600 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000601
Douglas Gregor463421d2009-03-03 04:44:36 +0000602 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000603}
Douglas Gregor556877c2008-04-13 21:30:24 +0000604
Douglas Gregor463421d2009-03-03 04:44:36 +0000605/// \brief Performs the actual work of attaching the given base class
606/// specifiers to a C++ class.
607bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
608 unsigned NumBases) {
609 if (NumBases == 0)
610 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +0000611
612 // Used to keep track of which base types we have already seen, so
613 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000614 // that the key is always the unqualified canonical type of the base
615 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000616 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
617
618 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000619 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000620 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000621 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000622 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000623 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000624 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian2792f302010-05-20 23:34:56 +0000625 if (!Class->hasObjectMember()) {
626 if (const RecordType *FDTTy =
627 NewBaseType.getTypePtr()->getAs<RecordType>())
628 if (FDTTy->getDecl()->hasObjectMember())
629 Class->setHasObjectMember(true);
630 }
631
Douglas Gregor29a92472008-10-22 17:49:05 +0000632 if (KnownBaseTypes[NewBaseType]) {
633 // C++ [class.mi]p3:
634 // A class shall not be specified as a direct base class of a
635 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000636 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000637 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000638 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000639 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000640
641 // Delete the duplicate base class specifier; we're going to
642 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000643 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000644
645 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000646 } else {
647 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000648 KnownBaseTypes[NewBaseType] = Bases[idx];
649 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000650 }
651 }
652
653 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000654 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000655
656 // Delete the remaining (good) base class specifiers, since their
657 // data has been copied into the CXXRecordDecl.
658 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000659 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000660
661 return Invalid;
662}
663
664/// ActOnBaseSpecifiers - Attach the given base specifiers to the
665/// class, after checking whether there are any duplicate base
666/// classes.
John McCall48871652010-08-21 09:40:31 +0000667void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000668 unsigned NumBases) {
669 if (!ClassDecl || !Bases || !NumBases)
670 return;
671
672 AdjustDeclIfTemplate(ClassDecl);
John McCall48871652010-08-21 09:40:31 +0000673 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor463421d2009-03-03 04:44:36 +0000674 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000675}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000676
John McCalle78aac42010-03-10 03:28:59 +0000677static CXXRecordDecl *GetClassForType(QualType T) {
678 if (const RecordType *RT = T->getAs<RecordType>())
679 return cast<CXXRecordDecl>(RT->getDecl());
680 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
681 return ICT->getDecl();
682 else
683 return 0;
684}
685
Douglas Gregor36d1b142009-10-06 17:59:45 +0000686/// \brief Determine whether the type \p Derived is a C++ class that is
687/// derived from the type \p Base.
688bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
689 if (!getLangOptions().CPlusPlus)
690 return false;
John McCalle78aac42010-03-10 03:28:59 +0000691
692 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
693 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000694 return false;
695
John McCalle78aac42010-03-10 03:28:59 +0000696 CXXRecordDecl *BaseRD = GetClassForType(Base);
697 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000698 return false;
699
John McCall67da35c2010-02-04 22:26:26 +0000700 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
701 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000702}
703
704/// \brief Determine whether the type \p Derived is a C++ class that is
705/// derived from the type \p Base.
706bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
707 if (!getLangOptions().CPlusPlus)
708 return false;
709
John McCalle78aac42010-03-10 03:28:59 +0000710 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
711 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000712 return false;
713
John McCalle78aac42010-03-10 03:28:59 +0000714 CXXRecordDecl *BaseRD = GetClassForType(Base);
715 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000716 return false;
717
Douglas Gregor36d1b142009-10-06 17:59:45 +0000718 return DerivedRD->isDerivedFrom(BaseRD, Paths);
719}
720
Anders Carlssona70cff62010-04-24 19:06:50 +0000721void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +0000722 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000723 assert(BasePathArray.empty() && "Base path array must be empty!");
724 assert(Paths.isRecordingPaths() && "Must record paths!");
725
726 const CXXBasePath &Path = Paths.front();
727
728 // We first go backward and check if we have a virtual base.
729 // FIXME: It would be better if CXXBasePath had the base specifier for
730 // the nearest virtual base.
731 unsigned Start = 0;
732 for (unsigned I = Path.size(); I != 0; --I) {
733 if (Path[I - 1].Base->isVirtual()) {
734 Start = I - 1;
735 break;
736 }
737 }
738
739 // Now add all bases.
740 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +0000741 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +0000742}
743
Douglas Gregor88d292c2010-05-13 16:44:06 +0000744/// \brief Determine whether the given base path includes a virtual
745/// base class.
John McCallcf142162010-08-07 06:22:56 +0000746bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
747 for (CXXCastPath::const_iterator B = BasePath.begin(),
748 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000749 B != BEnd; ++B)
750 if ((*B)->isVirtual())
751 return true;
752
753 return false;
754}
755
Douglas Gregor36d1b142009-10-06 17:59:45 +0000756/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
757/// conversion (where Derived and Base are class types) is
758/// well-formed, meaning that the conversion is unambiguous (and
759/// that all of the base classes are accessible). Returns true
760/// and emits a diagnostic if the code is ill-formed, returns false
761/// otherwise. Loc is the location where this routine should point to
762/// if there is an error, and Range is the source range to highlight
763/// if there is an error.
764bool
765Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000766 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000767 unsigned AmbigiousBaseConvID,
768 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000769 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +0000770 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000771 // First, determine whether the path from Derived to Base is
772 // ambiguous. This is slightly more expensive than checking whether
773 // the Derived to Base conversion exists, because here we need to
774 // explore multiple paths to determine if there is an ambiguity.
775 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
776 /*DetectVirtual=*/false);
777 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
778 assert(DerivationOkay &&
779 "Can only be used with a derived-to-base conversion");
780 (void)DerivationOkay;
781
782 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000783 if (InaccessibleBaseID) {
784 // Check that the base class can be accessed.
785 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
786 InaccessibleBaseID)) {
787 case AR_inaccessible:
788 return true;
789 case AR_accessible:
790 case AR_dependent:
791 case AR_delayed:
792 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000793 }
John McCall5b0829a2010-02-10 09:31:12 +0000794 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000795
796 // Build a base path if necessary.
797 if (BasePath)
798 BuildBasePathArray(Paths, *BasePath);
799 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000800 }
801
802 // We know that the derived-to-base conversion is ambiguous, and
803 // we're going to produce a diagnostic. Perform the derived-to-base
804 // search just one more time to compute all of the possible paths so
805 // that we can print them out. This is more expensive than any of
806 // the previous derived-to-base checks we've done, but at this point
807 // performance isn't as much of an issue.
808 Paths.clear();
809 Paths.setRecordingPaths(true);
810 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
811 assert(StillOkay && "Can only be used with a derived-to-base conversion");
812 (void)StillOkay;
813
814 // Build up a textual representation of the ambiguous paths, e.g.,
815 // D -> B -> A, that will be used to illustrate the ambiguous
816 // conversions in the diagnostic. We only print one of the paths
817 // to each base class subobject.
818 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
819
820 Diag(Loc, AmbigiousBaseConvID)
821 << Derived << Base << PathDisplayStr << Range << Name;
822 return true;
823}
824
825bool
826Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000827 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +0000828 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000829 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000830 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000831 IgnoreAccess ? 0
832 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000833 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000834 Loc, Range, DeclarationName(),
835 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000836}
837
838
839/// @brief Builds a string representing ambiguous paths from a
840/// specific derived class to different subobjects of the same base
841/// class.
842///
843/// This function builds a string that can be used in error messages
844/// to show the different paths that one can take through the
845/// inheritance hierarchy to go from the derived class to different
846/// subobjects of a base class. The result looks something like this:
847/// @code
848/// struct D -> struct B -> struct A
849/// struct D -> struct C -> struct A
850/// @endcode
851std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
852 std::string PathDisplayStr;
853 std::set<unsigned> DisplayedPaths;
854 for (CXXBasePaths::paths_iterator Path = Paths.begin();
855 Path != Paths.end(); ++Path) {
856 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
857 // We haven't displayed a path to this particular base
858 // class subobject yet.
859 PathDisplayStr += "\n ";
860 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
861 for (CXXBasePath::const_iterator Element = Path->begin();
862 Element != Path->end(); ++Element)
863 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
864 }
865 }
866
867 return PathDisplayStr;
868}
869
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000870//===----------------------------------------------------------------------===//
871// C++ class member Handling
872//===----------------------------------------------------------------------===//
873
Abramo Bagnarad7340582010-06-05 05:09:32 +0000874/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCall48871652010-08-21 09:40:31 +0000875Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
876 SourceLocation ASLoc,
877 SourceLocation ColonLoc) {
Abramo Bagnarad7340582010-06-05 05:09:32 +0000878 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCall48871652010-08-21 09:40:31 +0000879 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnarad7340582010-06-05 05:09:32 +0000880 ASLoc, ColonLoc);
881 CurContext->addHiddenDecl(ASDecl);
John McCall48871652010-08-21 09:40:31 +0000882 return ASDecl;
Abramo Bagnarad7340582010-06-05 05:09:32 +0000883}
884
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000885/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
886/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
887/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000888/// any.
John McCall48871652010-08-21 09:40:31 +0000889Decl *
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000890Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000891 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000892 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
893 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000894 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000895 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
896 DeclarationName Name = NameInfo.getName();
897 SourceLocation Loc = NameInfo.getLoc();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000898 Expr *BitWidth = static_cast<Expr*>(BW);
899 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000900
John McCallb1cd7da2010-06-04 08:34:12 +0000901 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +0000902 assert(!DS.isFriendSpecified());
903
John McCallb1cd7da2010-06-04 08:34:12 +0000904 bool isFunc = false;
905 if (D.isFunctionDeclarator())
906 isFunc = true;
907 else if (D.getNumTypeObjects() == 0 &&
908 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
909 QualType TDType = GetTypeFromParser(DS.getTypeRep());
910 isFunc = TDType->isFunctionType();
911 }
912
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000913 // C++ 9.2p6: A member shall not be declared to have automatic storage
914 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000915 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
916 // data members and cannot be applied to names declared const or static,
917 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000918 switch (DS.getStorageClassSpec()) {
919 case DeclSpec::SCS_unspecified:
920 case DeclSpec::SCS_typedef:
921 case DeclSpec::SCS_static:
922 // FALL THROUGH.
923 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000924 case DeclSpec::SCS_mutable:
925 if (isFunc) {
926 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000927 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000928 else
Chris Lattner3b054132008-11-19 05:08:23 +0000929 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000930
Sebastian Redl8071edb2008-11-17 23:24:37 +0000931 // FIXME: It would be nicer if the keyword was ignored only for this
932 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000933 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000934 }
935 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000936 default:
937 if (DS.getStorageClassSpecLoc().isValid())
938 Diag(DS.getStorageClassSpecLoc(),
939 diag::err_storageclass_invalid_for_member);
940 else
941 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
942 D.getMutableDeclSpec().ClearStorageClassSpecs();
943 }
944
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000945 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
946 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000947 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000948
949 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000950 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000951 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000952 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
953 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000954 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000955 } else {
John McCall48871652010-08-21 09:40:31 +0000956 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner97e277e2009-03-05 23:03:49 +0000957 if (!Member) {
958 if (BitWidth) DeleteExpr(BitWidth);
John McCall48871652010-08-21 09:40:31 +0000959 return 0;
Chris Lattner97e277e2009-03-05 23:03:49 +0000960 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000961
962 // Non-instance-fields can't have a bitfield.
963 if (BitWidth) {
964 if (Member->isInvalidDecl()) {
965 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000966 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000967 // C++ 9.6p3: A bit-field shall not be a static member.
968 // "static member 'A' cannot be a bit-field"
969 Diag(Loc, diag::err_static_not_bitfield)
970 << Name << BitWidth->getSourceRange();
971 } else if (isa<TypedefDecl>(Member)) {
972 // "typedef member 'x' cannot be a bit-field"
973 Diag(Loc, diag::err_typedef_not_bitfield)
974 << Name << BitWidth->getSourceRange();
975 } else {
976 // A function typedef ("typedef int f(); f a;").
977 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
978 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000979 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000980 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000981 }
Mike Stump11289f42009-09-09 15:08:12 +0000982
Chris Lattnerd26760a2009-03-05 23:01:03 +0000983 DeleteExpr(BitWidth);
984 BitWidth = 0;
985 Member->setInvalidDecl();
986 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000987
988 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000989
Douglas Gregor3447e762009-08-20 22:52:58 +0000990 // If we have declared a member function template, set the access of the
991 // templated declaration as well.
992 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
993 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +0000994 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000995
Douglas Gregor92751d42008-11-17 22:58:34 +0000996 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000997
Douglas Gregor0c880302009-03-11 23:00:04 +0000998 if (Init)
John McCallb268a282010-08-23 23:25:46 +0000999 AddInitializerToDecl(Member, Init, false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001000 if (Deleted) // FIXME: Source location is not very good.
John McCall48871652010-08-21 09:40:31 +00001001 SetDeclDeleted(Member, D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001002
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001003 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +00001004 FieldCollector->Add(cast<FieldDecl>(Member));
John McCall48871652010-08-21 09:40:31 +00001005 return 0;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001006 }
John McCall48871652010-08-21 09:40:31 +00001007 return Member;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001008}
1009
Douglas Gregor15e77a22009-12-31 09:10:24 +00001010/// \brief Find the direct and/or virtual base specifiers that
1011/// correspond to the given base type, for use in base initialization
1012/// within a constructor.
1013static bool FindBaseInitializer(Sema &SemaRef,
1014 CXXRecordDecl *ClassDecl,
1015 QualType BaseType,
1016 const CXXBaseSpecifier *&DirectBaseSpec,
1017 const CXXBaseSpecifier *&VirtualBaseSpec) {
1018 // First, check for a direct base class.
1019 DirectBaseSpec = 0;
1020 for (CXXRecordDecl::base_class_const_iterator Base
1021 = ClassDecl->bases_begin();
1022 Base != ClassDecl->bases_end(); ++Base) {
1023 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1024 // We found a direct base of this type. That's what we're
1025 // initializing.
1026 DirectBaseSpec = &*Base;
1027 break;
1028 }
1029 }
1030
1031 // Check for a virtual base class.
1032 // FIXME: We might be able to short-circuit this if we know in advance that
1033 // there are no virtual bases.
1034 VirtualBaseSpec = 0;
1035 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1036 // We haven't found a base yet; search the class hierarchy for a
1037 // virtual base class.
1038 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1039 /*DetectVirtual=*/false);
1040 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1041 BaseType, Paths)) {
1042 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1043 Path != Paths.end(); ++Path) {
1044 if (Path->back().Base->isVirtual()) {
1045 VirtualBaseSpec = Path->back().Base;
1046 break;
1047 }
1048 }
1049 }
1050 }
1051
1052 return DirectBaseSpec || VirtualBaseSpec;
1053}
1054
Douglas Gregore8381c02008-11-05 04:29:56 +00001055/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +00001056Sema::MemInitResult
John McCall48871652010-08-21 09:40:31 +00001057Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001058 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001059 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001060 IdentifierInfo *MemberOrBase,
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001061 TypeTy *TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001062 SourceLocation IdLoc,
1063 SourceLocation LParenLoc,
1064 ExprTy **Args, unsigned NumArgs,
1065 SourceLocation *CommaLocs,
1066 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001067 if (!ConstructorD)
1068 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001069
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001070 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001071
1072 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00001073 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregore8381c02008-11-05 04:29:56 +00001074 if (!Constructor) {
1075 // The user wrote a constructor initializer on a function that is
1076 // not a C++ constructor. Ignore the error for now, because we may
1077 // have more member initializers coming; we'll diagnose it just
1078 // once in ActOnMemInitializers.
1079 return true;
1080 }
1081
1082 CXXRecordDecl *ClassDecl = Constructor->getParent();
1083
1084 // C++ [class.base.init]p2:
1085 // Names in a mem-initializer-id are looked up in the scope of the
1086 // constructor’s class and, if not found in that scope, are looked
1087 // up in the scope containing the constructor’s
1088 // definition. [Note: if the constructor’s class contains a member
1089 // with the same name as a direct or virtual base class of the
1090 // class, a mem-initializer-id naming the member or base class and
1091 // composed of a single identifier refers to the class member. A
1092 // mem-initializer-id for the hidden base class may be specified
1093 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001094 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001095 // Look for a member, first.
1096 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001097 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001098 = ClassDecl->lookup(MemberOrBase);
1099 if (Result.first != Result.second)
1100 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001101
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001102 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001103
Eli Friedman8e1433b2009-07-29 19:44:27 +00001104 if (Member)
1105 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001106 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001107 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001108 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001109 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001110 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001111
1112 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001113 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001114 } else {
1115 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1116 LookupParsedName(R, S, &SS);
1117
1118 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1119 if (!TyD) {
1120 if (R.isAmbiguous()) return true;
1121
John McCallda6841b2010-04-09 19:01:14 +00001122 // We don't want access-control diagnostics here.
1123 R.suppressDiagnostics();
1124
Douglas Gregora3b624a2010-01-19 06:46:48 +00001125 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1126 bool NotUnknownSpecialization = false;
1127 DeclContext *DC = computeDeclContext(SS, false);
1128 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1129 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1130
1131 if (!NotUnknownSpecialization) {
1132 // When the scope specifier can refer to a member of an unknown
1133 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001134 BaseType = CheckTypenameType(ETK_None,
1135 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00001136 *MemberOrBase, SourceLocation(),
1137 SS.getRange(), IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001138 if (BaseType.isNull())
1139 return true;
1140
Douglas Gregora3b624a2010-01-19 06:46:48 +00001141 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00001142 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001143 }
1144 }
1145
Douglas Gregor15e77a22009-12-31 09:10:24 +00001146 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001147 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001148 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1149 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001150 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1151 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1152 // We have found a non-static data member with a similar
1153 // name to what was typed; complain and initialize that
1154 // member.
1155 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1156 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001157 << FixItHint::CreateReplacement(R.getNameLoc(),
1158 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001159 Diag(Member->getLocation(), diag::note_previous_decl)
1160 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001161
1162 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1163 LParenLoc, RParenLoc);
1164 }
1165 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1166 const CXXBaseSpecifier *DirectBaseSpec;
1167 const CXXBaseSpecifier *VirtualBaseSpec;
1168 if (FindBaseInitializer(*this, ClassDecl,
1169 Context.getTypeDeclType(Type),
1170 DirectBaseSpec, VirtualBaseSpec)) {
1171 // We have found a direct or virtual base class with a
1172 // similar name to what was typed; complain and initialize
1173 // that base class.
1174 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1175 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001176 << FixItHint::CreateReplacement(R.getNameLoc(),
1177 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001178
1179 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1180 : VirtualBaseSpec;
1181 Diag(BaseSpec->getSourceRange().getBegin(),
1182 diag::note_base_class_specified_here)
1183 << BaseSpec->getType()
1184 << BaseSpec->getSourceRange();
1185
Douglas Gregor15e77a22009-12-31 09:10:24 +00001186 TyD = Type;
1187 }
1188 }
1189 }
1190
Douglas Gregora3b624a2010-01-19 06:46:48 +00001191 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001192 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1193 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1194 return true;
1195 }
John McCallb5a0d312009-12-21 10:41:20 +00001196 }
1197
Douglas Gregora3b624a2010-01-19 06:46:48 +00001198 if (BaseType.isNull()) {
1199 BaseType = Context.getTypeDeclType(TyD);
1200 if (SS.isSet()) {
1201 NestedNameSpecifier *Qualifier =
1202 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001203
Douglas Gregora3b624a2010-01-19 06:46:48 +00001204 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001205 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001206 }
John McCallb5a0d312009-12-21 10:41:20 +00001207 }
1208 }
Mike Stump11289f42009-09-09 15:08:12 +00001209
John McCallbcd03502009-12-07 02:54:59 +00001210 if (!TInfo)
1211 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001212
John McCallbcd03502009-12-07 02:54:59 +00001213 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001214 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001215}
1216
John McCalle22a04a2009-11-04 23:02:40 +00001217/// Checks an initializer expression for use of uninitialized fields, such as
1218/// containing the field that is being initialized. Returns true if there is an
1219/// uninitialized field was used an updates the SourceLocation parameter; false
1220/// otherwise.
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001221static bool InitExprContainsUninitializedFields(const Stmt *S,
1222 const FieldDecl *LhsField,
1223 SourceLocation *L) {
1224 if (isa<CallExpr>(S)) {
1225 // Do not descend into function calls or constructors, as the use
1226 // of an uninitialized field may be valid. One would have to inspect
1227 // the contents of the function/ctor to determine if it is safe or not.
1228 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1229 // may be safe, depending on what the function/ctor does.
1230 return false;
1231 }
1232 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1233 const NamedDecl *RhsField = ME->getMemberDecl();
John McCalle22a04a2009-11-04 23:02:40 +00001234 if (RhsField == LhsField) {
1235 // Initializing a field with itself. Throw a warning.
1236 // But wait; there are exceptions!
1237 // Exception #1: The field may not belong to this record.
1238 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001239 const Expr *base = ME->getBase();
John McCalle22a04a2009-11-04 23:02:40 +00001240 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1241 // Even though the field matches, it does not belong to this record.
1242 return false;
1243 }
1244 // None of the exceptions triggered; return true to indicate an
1245 // uninitialized field was used.
1246 *L = ME->getMemberLoc();
1247 return true;
1248 }
1249 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001250 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1251 it != e; ++it) {
1252 if (!*it) {
1253 // An expression such as 'member(arg ?: "")' may trigger this.
John McCalle22a04a2009-11-04 23:02:40 +00001254 continue;
1255 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001256 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1257 return true;
John McCalle22a04a2009-11-04 23:02:40 +00001258 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001259 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001260}
1261
Eli Friedman8e1433b2009-07-29 19:44:27 +00001262Sema::MemInitResult
1263Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1264 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001265 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001266 SourceLocation RParenLoc) {
John McCalle22a04a2009-11-04 23:02:40 +00001267 // Diagnose value-uses of fields to initialize themselves, e.g.
1268 // foo(foo)
1269 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001270 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001271 for (unsigned i = 0; i < NumArgs; ++i) {
1272 SourceLocation L;
1273 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1274 // FIXME: Return true in the case when other fields are used before being
1275 // uninitialized. For example, let this field be the i'th field. When
1276 // initializing the i'th field, throw a warning if any of the >= i'th
1277 // fields are used, as they are not yet initialized.
1278 // Right now we are only handling the case where the i'th field uses
1279 // itself in its initializer.
1280 Diag(L, diag::warn_field_is_uninit);
1281 }
1282 }
1283
Eli Friedman8e1433b2009-07-29 19:44:27 +00001284 bool HasDependentArg = false;
1285 for (unsigned i = 0; i < NumArgs; i++)
1286 HasDependentArg |= Args[i]->isTypeDependent();
1287
Eli Friedman9255adf2010-07-24 21:19:15 +00001288 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001289 // Can't check initialization for a member of dependent type or when
1290 // any of the arguments are type-dependent expressions.
John McCallb268a282010-08-23 23:25:46 +00001291 Expr *Init
1292 = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1293 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001294
1295 // Erase any temporaries within this evaluation context; we're not
1296 // going to track them in the AST, since we'll be rebuilding the
1297 // ASTs during template instantiation.
1298 ExprTemporaries.erase(
1299 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1300 ExprTemporaries.end());
1301
1302 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1303 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001304 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001305 RParenLoc);
1306
Douglas Gregore8381c02008-11-05 04:29:56 +00001307 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001308
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001309 if (Member->isInvalidDecl())
1310 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001311
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001312 // Initialize the member.
1313 InitializedEntity MemberEntity =
1314 InitializedEntity::InitializeMember(Member, 0);
1315 InitializationKind Kind =
1316 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1317
1318 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1319
1320 OwningExprResult MemberInit =
1321 InitSeq.Perform(*this, MemberEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001322 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001323 if (MemberInit.isInvalid())
1324 return true;
1325
1326 // C++0x [class.base.init]p7:
1327 // The initialization of each base and member constitutes a
1328 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001329 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001330 if (MemberInit.isInvalid())
1331 return true;
1332
1333 // If we are in a dependent context, template instantiation will
1334 // perform this type-checking again. Just save the arguments that we
1335 // received in a ParenListExpr.
1336 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1337 // of the information that we have about the member
1338 // initializer. However, deconstructing the ASTs is a dicey process,
1339 // and this approach is far more likely to get the corner cases right.
1340 if (CurContext->isDependentContext()) {
1341 // Bump the reference count of all of the arguments.
1342 for (unsigned I = 0; I != NumArgs; ++I)
1343 Args[I]->Retain();
1344
John McCallb268a282010-08-23 23:25:46 +00001345 Expr *Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1346 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001347 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1348 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001349 Init,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001350 RParenLoc);
1351 }
1352
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001353 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001354 LParenLoc,
John McCallb268a282010-08-23 23:25:46 +00001355 MemberInit.get(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001356 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001357}
1358
1359Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001360Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001361 Expr **Args, unsigned NumArgs,
1362 SourceLocation LParenLoc, SourceLocation RParenLoc,
1363 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001364 bool HasDependentArg = false;
1365 for (unsigned i = 0; i < NumArgs; i++)
1366 HasDependentArg |= Args[i]->isTypeDependent();
1367
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001368 SourceLocation BaseLoc
1369 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1370
1371 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1372 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1373 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1374
1375 // C++ [class.base.init]p2:
1376 // [...] Unless the mem-initializer-id names a nonstatic data
1377 // member of the constructor’s class or a direct or virtual base
1378 // of that class, the mem-initializer is ill-formed. A
1379 // mem-initializer-list can initialize a base class using any
1380 // name that denotes that base class type.
1381 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1382
1383 // Check for direct and virtual base classes.
1384 const CXXBaseSpecifier *DirectBaseSpec = 0;
1385 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1386 if (!Dependent) {
1387 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1388 VirtualBaseSpec);
1389
1390 // C++ [base.class.init]p2:
1391 // Unless the mem-initializer-id names a nonstatic data member of the
1392 // constructor's class or a direct or virtual base of that class, the
1393 // mem-initializer is ill-formed.
1394 if (!DirectBaseSpec && !VirtualBaseSpec) {
1395 // If the class has any dependent bases, then it's possible that
1396 // one of those types will resolve to the same type as
1397 // BaseType. Therefore, just treat this as a dependent base
1398 // class initialization. FIXME: Should we try to check the
1399 // initialization anyway? It seems odd.
1400 if (ClassDecl->hasAnyDependentBases())
1401 Dependent = true;
1402 else
1403 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1404 << BaseType << Context.getTypeDeclType(ClassDecl)
1405 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1406 }
1407 }
1408
1409 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001410 // Can't check initialization for a base of dependent type or when
1411 // any of the arguments are type-dependent expressions.
1412 OwningExprResult BaseInit
1413 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1414 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001415
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001416 // Erase any temporaries within this evaluation context; we're not
1417 // going to track them in the AST, since we'll be rebuilding the
1418 // ASTs during template instantiation.
1419 ExprTemporaries.erase(
1420 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1421 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001422
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001423 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001424 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001425 LParenLoc,
1426 BaseInit.takeAs<Expr>(),
1427 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001428 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001429
1430 // C++ [base.class.init]p2:
1431 // If a mem-initializer-id is ambiguous because it designates both
1432 // a direct non-virtual base class and an inherited virtual base
1433 // class, the mem-initializer is ill-formed.
1434 if (DirectBaseSpec && VirtualBaseSpec)
1435 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001436 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001437
1438 CXXBaseSpecifier *BaseSpec
1439 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1440 if (!BaseSpec)
1441 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1442
1443 // Initialize the base.
1444 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001445 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001446 InitializationKind Kind =
1447 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1448
1449 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1450
1451 OwningExprResult BaseInit =
1452 InitSeq.Perform(*this, BaseEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001453 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001454 if (BaseInit.isInvalid())
1455 return true;
1456
1457 // C++0x [class.base.init]p7:
1458 // The initialization of each base and member constitutes a
1459 // full-expression.
John McCallb268a282010-08-23 23:25:46 +00001460 BaseInit = MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001461 if (BaseInit.isInvalid())
1462 return true;
1463
1464 // If we are in a dependent context, template instantiation will
1465 // perform this type-checking again. Just save the arguments that we
1466 // received in a ParenListExpr.
1467 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1468 // of the information that we have about the base
1469 // initializer. However, deconstructing the ASTs is a dicey process,
1470 // and this approach is far more likely to get the corner cases right.
1471 if (CurContext->isDependentContext()) {
1472 // Bump the reference count of all of the arguments.
1473 for (unsigned I = 0; I != NumArgs; ++I)
1474 Args[I]->Retain();
1475
1476 OwningExprResult Init
1477 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1478 RParenLoc));
1479 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001480 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001481 LParenLoc,
1482 Init.takeAs<Expr>(),
1483 RParenLoc);
1484 }
1485
1486 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001487 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001488 LParenLoc,
1489 BaseInit.takeAs<Expr>(),
1490 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001491}
1492
Anders Carlsson1b00e242010-04-23 03:10:23 +00001493/// ImplicitInitializerKind - How an implicit base or member initializer should
1494/// initialize its base or member.
1495enum ImplicitInitializerKind {
1496 IIK_Default,
1497 IIK_Copy,
1498 IIK_Move
1499};
1500
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001501static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001502BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001503 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001504 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001505 bool IsInheritedVirtualBase,
1506 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001507 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001508 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1509 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001510
John McCall37ad5512010-08-23 06:44:23 +00001511 Sema::OwningExprResult BaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001512
1513 switch (ImplicitInitKind) {
1514 case IIK_Default: {
1515 InitializationKind InitKind
1516 = InitializationKind::CreateDefault(Constructor->getLocation());
1517 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1518 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1519 Sema::MultiExprArg(SemaRef, 0, 0));
1520 break;
1521 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001522
Anders Carlsson1b00e242010-04-23 03:10:23 +00001523 case IIK_Copy: {
1524 ParmVarDecl *Param = Constructor->getParamDecl(0);
1525 QualType ParamType = Param->getType().getNonReferenceType();
1526
1527 Expr *CopyCtorArg =
1528 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001529 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001530
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001531 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001532 QualType ArgTy =
1533 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1534 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001535
1536 CXXCastPath BasePath;
1537 BasePath.push_back(BaseSpec);
Sebastian Redlc57d34b2010-07-20 04:20:21 +00001538 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001539 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00001540 ImplicitCastExpr::LValue, &BasePath);
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001541
Anders Carlsson1b00e242010-04-23 03:10:23 +00001542 InitializationKind InitKind
1543 = InitializationKind::CreateDirect(Constructor->getLocation(),
1544 SourceLocation(), SourceLocation());
1545 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1546 &CopyCtorArg, 1);
1547 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1548 Sema::MultiExprArg(SemaRef,
John McCall37ad5512010-08-23 06:44:23 +00001549 &CopyCtorArg, 1));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001550 break;
1551 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001552
Anders Carlsson1b00e242010-04-23 03:10:23 +00001553 case IIK_Move:
1554 assert(false && "Unhandled initializer kind!");
1555 }
John McCallb268a282010-08-23 23:25:46 +00001556
1557 if (BaseInit.isInvalid())
1558 return true;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001559
John McCallb268a282010-08-23 23:25:46 +00001560 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(BaseInit.get());
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001561 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001562 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001563
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001564 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001565 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1566 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1567 SourceLocation()),
1568 BaseSpec->isVirtual(),
1569 SourceLocation(),
1570 BaseInit.takeAs<Expr>(),
1571 SourceLocation());
1572
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001573 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001574}
1575
Anders Carlsson3c1db572010-04-23 02:15:47 +00001576static bool
1577BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001578 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001579 FieldDecl *Field,
1580 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001581 if (Field->isInvalidDecl())
1582 return true;
1583
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001584 SourceLocation Loc = Constructor->getLocation();
1585
Anders Carlsson423f5d82010-04-23 16:04:08 +00001586 if (ImplicitInitKind == IIK_Copy) {
1587 ParmVarDecl *Param = Constructor->getParamDecl(0);
1588 QualType ParamType = Param->getType().getNonReferenceType();
1589
1590 Expr *MemberExprBase =
1591 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001592 Loc, ParamType, 0);
1593
1594 // Build a reference to this field within the parameter.
1595 CXXScopeSpec SS;
1596 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1597 Sema::LookupMemberName);
1598 MemberLookup.addDecl(Field, AS_public);
1599 MemberLookup.resolveKind();
1600 Sema::OwningExprResult CopyCtorArg
John McCallb268a282010-08-23 23:25:46 +00001601 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001602 ParamType, Loc,
1603 /*IsArrow=*/false,
1604 SS,
1605 /*FirstQualifierInScope=*/0,
1606 MemberLookup,
1607 /*TemplateArgs=*/0);
1608 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001609 return true;
1610
Douglas Gregor94f9a482010-05-05 05:51:00 +00001611 // When the field we are copying is an array, create index variables for
1612 // each dimension of the array. We use these index variables to subscript
1613 // the source array, and other clients (e.g., CodeGen) will perform the
1614 // necessary iteration with these index variables.
1615 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1616 QualType BaseType = Field->getType();
1617 QualType SizeType = SemaRef.Context.getSizeType();
1618 while (const ConstantArrayType *Array
1619 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1620 // Create the iteration variable for this array index.
1621 IdentifierInfo *IterationVarName = 0;
1622 {
1623 llvm::SmallString<8> Str;
1624 llvm::raw_svector_ostream OS(Str);
1625 OS << "__i" << IndexVariables.size();
1626 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1627 }
1628 VarDecl *IterationVar
1629 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1630 IterationVarName, SizeType,
1631 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1632 VarDecl::None, VarDecl::None);
1633 IndexVariables.push_back(IterationVar);
1634
1635 // Create a reference to the iteration variable.
1636 Sema::OwningExprResult IterationVarRef
1637 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1638 assert(!IterationVarRef.isInvalid() &&
1639 "Reference to invented variable cannot fail!");
1640
1641 // Subscript the array with this iteration variable.
John McCallb268a282010-08-23 23:25:46 +00001642 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001643 Loc,
John McCallb268a282010-08-23 23:25:46 +00001644 IterationVarRef.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001645 Loc);
1646 if (CopyCtorArg.isInvalid())
1647 return true;
1648
1649 BaseType = Array->getElementType();
1650 }
1651
1652 // Construct the entity that we will be initializing. For an array, this
1653 // will be first element in the array, which may require several levels
1654 // of array-subscript entities.
1655 llvm::SmallVector<InitializedEntity, 4> Entities;
1656 Entities.reserve(1 + IndexVariables.size());
1657 Entities.push_back(InitializedEntity::InitializeMember(Field));
1658 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1659 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1660 0,
1661 Entities.back()));
1662
1663 // Direct-initialize to use the copy constructor.
1664 InitializationKind InitKind =
1665 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1666
1667 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1668 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1669 &CopyCtorArgE, 1);
1670
1671 Sema::OwningExprResult MemberInit
1672 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCall37ad5512010-08-23 06:44:23 +00001673 Sema::MultiExprArg(SemaRef, &CopyCtorArgE, 1));
John McCallb268a282010-08-23 23:25:46 +00001674 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Douglas Gregor94f9a482010-05-05 05:51:00 +00001675 if (MemberInit.isInvalid())
1676 return true;
1677
1678 CXXMemberInit
1679 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1680 MemberInit.takeAs<Expr>(), Loc,
1681 IndexVariables.data(),
1682 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001683 return false;
1684 }
1685
Anders Carlsson423f5d82010-04-23 16:04:08 +00001686 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1687
Anders Carlsson3c1db572010-04-23 02:15:47 +00001688 QualType FieldBaseElementType =
1689 SemaRef.Context.getBaseElementType(Field->getType());
1690
Anders Carlsson3c1db572010-04-23 02:15:47 +00001691 if (FieldBaseElementType->isRecordType()) {
1692 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001693 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001694 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001695
1696 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1697 Sema::OwningExprResult MemberInit =
1698 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1699 Sema::MultiExprArg(SemaRef, 0, 0));
John McCallb268a282010-08-23 23:25:46 +00001700 if (MemberInit.isInvalid())
1701 return true;
1702
1703 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001704 if (MemberInit.isInvalid())
1705 return true;
1706
1707 CXXMemberInit =
1708 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001709 Field, Loc, Loc,
John McCallb268a282010-08-23 23:25:46 +00001710 MemberInit.get(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001711 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001712 return false;
1713 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001714
1715 if (FieldBaseElementType->isReferenceType()) {
1716 SemaRef.Diag(Constructor->getLocation(),
1717 diag::err_uninitialized_member_in_ctor)
1718 << (int)Constructor->isImplicit()
1719 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1720 << 0 << Field->getDeclName();
1721 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1722 return true;
1723 }
1724
1725 if (FieldBaseElementType.isConstQualified()) {
1726 SemaRef.Diag(Constructor->getLocation(),
1727 diag::err_uninitialized_member_in_ctor)
1728 << (int)Constructor->isImplicit()
1729 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1730 << 1 << Field->getDeclName();
1731 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1732 return true;
1733 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001734
1735 // Nothing to initialize.
1736 CXXMemberInit = 0;
1737 return false;
1738}
John McCallbc83b3f2010-05-20 23:23:51 +00001739
1740namespace {
1741struct BaseAndFieldInfo {
1742 Sema &S;
1743 CXXConstructorDecl *Ctor;
1744 bool AnyErrorsInInits;
1745 ImplicitInitializerKind IIK;
1746 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1747 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1748
1749 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1750 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1751 // FIXME: Handle implicit move constructors.
1752 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1753 IIK = IIK_Copy;
1754 else
1755 IIK = IIK_Default;
1756 }
1757};
1758}
1759
Chandler Carruth139e9622010-06-30 02:59:29 +00001760static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1761 FieldDecl *Top, FieldDecl *Field,
1762 CXXBaseOrMemberInitializer *Init) {
1763 // If the member doesn't need to be initialized, Init will still be null.
1764 if (!Init)
1765 return;
1766
1767 Info.AllToInit.push_back(Init);
1768 if (Field != Top) {
1769 Init->setMember(Top);
1770 Init->setAnonUnionMember(Field);
1771 }
1772}
1773
John McCallbc83b3f2010-05-20 23:23:51 +00001774static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1775 FieldDecl *Top, FieldDecl *Field) {
1776
Chandler Carruth139e9622010-06-30 02:59:29 +00001777 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001778 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001779 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001780 return false;
1781 }
1782
1783 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1784 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1785 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001786 CXXRecordDecl *FieldClassDecl
1787 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001788
1789 // Even though union members never have non-trivial default
1790 // constructions in C++03, we still build member initializers for aggregate
1791 // record types which can be union members, and C++0x allows non-trivial
1792 // default constructors for union members, so we ensure that only one
1793 // member is initialized for these.
1794 if (FieldClassDecl->isUnion()) {
1795 // First check for an explicit initializer for one field.
1796 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1797 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1798 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1799 RecordFieldInitializer(Info, Top, *FA, Init);
1800
1801 // Once we've initialized a field of an anonymous union, the union
1802 // field in the class is also initialized, so exit immediately.
1803 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00001804 } else if ((*FA)->isAnonymousStructOrUnion()) {
1805 if (CollectFieldInitializer(Info, Top, *FA))
1806 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00001807 }
1808 }
1809
1810 // Fallthrough and construct a default initializer for the union as
1811 // a whole, which can call its default constructor if such a thing exists
1812 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1813 // behavior going forward with C++0x, when anonymous unions there are
1814 // finalized, we should revisit this.
1815 } else {
1816 // For structs, we simply descend through to initialize all members where
1817 // necessary.
1818 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1819 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1820 if (CollectFieldInitializer(Info, Top, *FA))
1821 return true;
1822 }
1823 }
John McCallbc83b3f2010-05-20 23:23:51 +00001824 }
1825
1826 // Don't try to build an implicit initializer if there were semantic
1827 // errors in any of the initializers (and therefore we might be
1828 // missing some that the user actually wrote).
1829 if (Info.AnyErrorsInInits)
1830 return false;
1831
1832 CXXBaseOrMemberInitializer *Init = 0;
1833 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1834 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001835
Chandler Carruth139e9622010-06-30 02:59:29 +00001836 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001837 return false;
1838}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001839
Eli Friedman9cf6b592009-11-09 19:20:36 +00001840bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001841Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001842 CXXBaseOrMemberInitializer **Initializers,
1843 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001844 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001845 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001846 // Just store the initializers as written, they will be checked during
1847 // instantiation.
1848 if (NumInitializers > 0) {
1849 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1850 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1851 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1852 memcpy(baseOrMemberInitializers, Initializers,
1853 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1854 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1855 }
1856
1857 return false;
1858 }
1859
John McCallbc83b3f2010-05-20 23:23:51 +00001860 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001861
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001862 // We need to build the initializer AST according to order of construction
1863 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001864 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001865 if (!ClassDecl)
1866 return true;
1867
Eli Friedman9cf6b592009-11-09 19:20:36 +00001868 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001869
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001870 for (unsigned i = 0; i < NumInitializers; i++) {
1871 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001872
1873 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001874 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001875 else
John McCallbc83b3f2010-05-20 23:23:51 +00001876 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001877 }
1878
Anders Carlsson43c64af2010-04-21 19:52:01 +00001879 // Keep track of the direct virtual bases.
1880 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1881 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1882 E = ClassDecl->bases_end(); I != E; ++I) {
1883 if (I->isVirtual())
1884 DirectVBases.insert(I);
1885 }
1886
Anders Carlssondb0a9652010-04-02 06:26:44 +00001887 // Push virtual bases before others.
1888 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1889 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1890
1891 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001892 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1893 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001894 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001895 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001896 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001897 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001898 VBase, IsInheritedVirtualBase,
1899 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001900 HadError = true;
1901 continue;
1902 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001903
John McCallbc83b3f2010-05-20 23:23:51 +00001904 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001905 }
1906 }
Mike Stump11289f42009-09-09 15:08:12 +00001907
John McCallbc83b3f2010-05-20 23:23:51 +00001908 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001909 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1910 E = ClassDecl->bases_end(); Base != E; ++Base) {
1911 // Virtuals are in the virtual base list and already constructed.
1912 if (Base->isVirtual())
1913 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001914
Anders Carlssondb0a9652010-04-02 06:26:44 +00001915 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001916 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1917 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001918 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001919 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001920 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001921 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001922 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001923 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001924 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001925 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001926
John McCallbc83b3f2010-05-20 23:23:51 +00001927 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001928 }
1929 }
Mike Stump11289f42009-09-09 15:08:12 +00001930
John McCallbc83b3f2010-05-20 23:23:51 +00001931 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001932 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001933 E = ClassDecl->field_end(); Field != E; ++Field) {
1934 if ((*Field)->getType()->isIncompleteArrayType()) {
1935 assert(ClassDecl->hasFlexibleArrayMember() &&
1936 "Incomplete array type is not valid");
1937 continue;
1938 }
John McCallbc83b3f2010-05-20 23:23:51 +00001939 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001940 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001941 }
Mike Stump11289f42009-09-09 15:08:12 +00001942
John McCallbc83b3f2010-05-20 23:23:51 +00001943 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001944 if (NumInitializers > 0) {
1945 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1946 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1947 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001948 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001949 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001950 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001951
John McCalla6309952010-03-16 21:39:52 +00001952 // Constructors implicitly reference the base and member
1953 // destructors.
1954 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1955 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001956 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001957
1958 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001959}
1960
Eli Friedman952c15d2009-07-21 19:28:10 +00001961static void *GetKeyForTopLevelField(FieldDecl *Field) {
1962 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001963 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001964 if (RT->getDecl()->isAnonymousStructOrUnion())
1965 return static_cast<void *>(RT->getDecl());
1966 }
1967 return static_cast<void *>(Field);
1968}
1969
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001970static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1971 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001972}
1973
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001974static void *GetKeyForMember(ASTContext &Context,
1975 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001976 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001977 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001978 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001979
Eli Friedman952c15d2009-07-21 19:28:10 +00001980 // For fields injected into the class via declaration of an anonymous union,
1981 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001982 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001983
Anders Carlssona942dcd2010-03-30 15:39:27 +00001984 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1985 // data member of the class. Data member used in the initializer list is
1986 // in AnonUnionMember field.
1987 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1988 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001989
John McCall23eebd92010-04-10 09:28:51 +00001990 // If the field is a member of an anonymous struct or union, our key
1991 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001992 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001993 if (RD->isAnonymousStructOrUnion()) {
1994 while (true) {
1995 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1996 if (Parent->isAnonymousStructOrUnion())
1997 RD = Parent;
1998 else
1999 break;
2000 }
2001
Anders Carlsson83ac3122010-03-30 16:19:37 +00002002 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00002003 }
Mike Stump11289f42009-09-09 15:08:12 +00002004
Anders Carlssona942dcd2010-03-30 15:39:27 +00002005 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00002006}
2007
Anders Carlssone857b292010-04-02 03:37:03 +00002008static void
2009DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002010 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00002011 CXXBaseOrMemberInitializer **Inits,
2012 unsigned NumInits) {
2013 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002014 return;
Mike Stump11289f42009-09-09 15:08:12 +00002015
John McCallbb7b6582010-04-10 07:37:23 +00002016 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2017 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002018 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002019
John McCallbb7b6582010-04-10 07:37:23 +00002020 // Build the list of bases and members in the order that they'll
2021 // actually be initialized. The explicit initializers should be in
2022 // this same order but may be missing things.
2023 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002024
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002025 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2026
John McCallbb7b6582010-04-10 07:37:23 +00002027 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002028 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002029 ClassDecl->vbases_begin(),
2030 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002031 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002032
John McCallbb7b6582010-04-10 07:37:23 +00002033 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002034 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002035 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002036 if (Base->isVirtual())
2037 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002038 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002039 }
Mike Stump11289f42009-09-09 15:08:12 +00002040
John McCallbb7b6582010-04-10 07:37:23 +00002041 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002042 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2043 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002044 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002045
John McCallbb7b6582010-04-10 07:37:23 +00002046 unsigned NumIdealInits = IdealInitKeys.size();
2047 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002048
John McCallbb7b6582010-04-10 07:37:23 +00002049 CXXBaseOrMemberInitializer *PrevInit = 0;
2050 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2051 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2052 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2053
2054 // Scan forward to try to find this initializer in the idealized
2055 // initializers list.
2056 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2057 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002058 break;
John McCallbb7b6582010-04-10 07:37:23 +00002059
2060 // If we didn't find this initializer, it must be because we
2061 // scanned past it on a previous iteration. That can only
2062 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002063 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002064 Sema::SemaDiagnosticBuilder D =
2065 SemaRef.Diag(PrevInit->getSourceLocation(),
2066 diag::warn_initializer_out_of_order);
2067
2068 if (PrevInit->isMemberInitializer())
2069 D << 0 << PrevInit->getMember()->getDeclName();
2070 else
2071 D << 1 << PrevInit->getBaseClassInfo()->getType();
2072
2073 if (Init->isMemberInitializer())
2074 D << 0 << Init->getMember()->getDeclName();
2075 else
2076 D << 1 << Init->getBaseClassInfo()->getType();
2077
2078 // Move back to the initializer's location in the ideal list.
2079 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2080 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002081 break;
John McCallbb7b6582010-04-10 07:37:23 +00002082
2083 assert(IdealIndex != NumIdealInits &&
2084 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002085 }
John McCallbb7b6582010-04-10 07:37:23 +00002086
2087 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002088 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002089}
2090
John McCall23eebd92010-04-10 09:28:51 +00002091namespace {
2092bool CheckRedundantInit(Sema &S,
2093 CXXBaseOrMemberInitializer *Init,
2094 CXXBaseOrMemberInitializer *&PrevInit) {
2095 if (!PrevInit) {
2096 PrevInit = Init;
2097 return false;
2098 }
2099
2100 if (FieldDecl *Field = Init->getMember())
2101 S.Diag(Init->getSourceLocation(),
2102 diag::err_multiple_mem_initialization)
2103 << Field->getDeclName()
2104 << Init->getSourceRange();
2105 else {
2106 Type *BaseClass = Init->getBaseClass();
2107 assert(BaseClass && "neither field nor base");
2108 S.Diag(Init->getSourceLocation(),
2109 diag::err_multiple_base_initialization)
2110 << QualType(BaseClass, 0)
2111 << Init->getSourceRange();
2112 }
2113 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2114 << 0 << PrevInit->getSourceRange();
2115
2116 return true;
2117}
2118
2119typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2120typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2121
2122bool CheckRedundantUnionInit(Sema &S,
2123 CXXBaseOrMemberInitializer *Init,
2124 RedundantUnionMap &Unions) {
2125 FieldDecl *Field = Init->getMember();
2126 RecordDecl *Parent = Field->getParent();
2127 if (!Parent->isAnonymousStructOrUnion())
2128 return false;
2129
2130 NamedDecl *Child = Field;
2131 do {
2132 if (Parent->isUnion()) {
2133 UnionEntry &En = Unions[Parent];
2134 if (En.first && En.first != Child) {
2135 S.Diag(Init->getSourceLocation(),
2136 diag::err_multiple_mem_union_initialization)
2137 << Field->getDeclName()
2138 << Init->getSourceRange();
2139 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2140 << 0 << En.second->getSourceRange();
2141 return true;
2142 } else if (!En.first) {
2143 En.first = Child;
2144 En.second = Init;
2145 }
2146 }
2147
2148 Child = Parent;
2149 Parent = cast<RecordDecl>(Parent->getDeclContext());
2150 } while (Parent->isAnonymousStructOrUnion());
2151
2152 return false;
2153}
2154}
2155
Anders Carlssone857b292010-04-02 03:37:03 +00002156/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00002157void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00002158 SourceLocation ColonLoc,
2159 MemInitTy **meminits, unsigned NumMemInits,
2160 bool AnyErrors) {
2161 if (!ConstructorDecl)
2162 return;
2163
2164 AdjustDeclIfTemplate(ConstructorDecl);
2165
2166 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002167 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00002168
2169 if (!Constructor) {
2170 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2171 return;
2172 }
2173
2174 CXXBaseOrMemberInitializer **MemInits =
2175 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002176
2177 // Mapping for the duplicate initializers check.
2178 // For member initializers, this is keyed with a FieldDecl*.
2179 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002180 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002181
2182 // Mapping for the inconsistent anonymous-union initializers check.
2183 RedundantUnionMap MemberUnions;
2184
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002185 bool HadError = false;
2186 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002187 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002188
Abramo Bagnara341d7832010-05-26 18:09:23 +00002189 // Set the source order index.
2190 Init->setSourceOrder(i);
2191
John McCall23eebd92010-04-10 09:28:51 +00002192 if (Init->isMemberInitializer()) {
2193 FieldDecl *Field = Init->getMember();
2194 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2195 CheckRedundantUnionInit(*this, Init, MemberUnions))
2196 HadError = true;
2197 } else {
2198 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2199 if (CheckRedundantInit(*this, Init, Members[Key]))
2200 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002201 }
Anders Carlssone857b292010-04-02 03:37:03 +00002202 }
2203
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002204 if (HadError)
2205 return;
2206
Anders Carlssone857b292010-04-02 03:37:03 +00002207 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002208
2209 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002210}
2211
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002212void
John McCalla6309952010-03-16 21:39:52 +00002213Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2214 CXXRecordDecl *ClassDecl) {
2215 // Ignore dependent contexts.
2216 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002217 return;
John McCall1064d7e2010-03-16 05:22:47 +00002218
2219 // FIXME: all the access-control diagnostics are positioned on the
2220 // field/base declaration. That's probably good; that said, the
2221 // user might reasonably want to know why the destructor is being
2222 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002223
Anders Carlssondee9a302009-11-17 04:44:12 +00002224 // Non-static data members.
2225 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2226 E = ClassDecl->field_end(); I != E; ++I) {
2227 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002228 if (Field->isInvalidDecl())
2229 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002230 QualType FieldType = Context.getBaseElementType(Field->getType());
2231
2232 const RecordType* RT = FieldType->getAs<RecordType>();
2233 if (!RT)
2234 continue;
2235
2236 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2237 if (FieldClassDecl->hasTrivialDestructor())
2238 continue;
2239
Douglas Gregore71edda2010-07-01 22:47:18 +00002240 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002241 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002242 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002243 << Field->getDeclName()
2244 << FieldType);
2245
John McCalla6309952010-03-16 21:39:52 +00002246 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002247 }
2248
John McCall1064d7e2010-03-16 05:22:47 +00002249 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2250
Anders Carlssondee9a302009-11-17 04:44:12 +00002251 // Bases.
2252 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2253 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002254 // Bases are always records in a well-formed non-dependent class.
2255 const RecordType *RT = Base->getType()->getAs<RecordType>();
2256
2257 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002258 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002259 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002260
2261 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002262 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002263 if (BaseClassDecl->hasTrivialDestructor())
2264 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002265
Douglas Gregore71edda2010-07-01 22:47:18 +00002266 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002267
2268 // FIXME: caret should be on the start of the class name
2269 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002270 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002271 << Base->getType()
2272 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002273
John McCalla6309952010-03-16 21:39:52 +00002274 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002275 }
2276
2277 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002278 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2279 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002280
2281 // Bases are always records in a well-formed non-dependent class.
2282 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2283
2284 // Ignore direct virtual bases.
2285 if (DirectVirtualBases.count(RT))
2286 continue;
2287
Anders Carlssondee9a302009-11-17 04:44:12 +00002288 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002289 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002290 if (BaseClassDecl->hasTrivialDestructor())
2291 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002292
Douglas Gregore71edda2010-07-01 22:47:18 +00002293 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002294 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002295 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002296 << VBase->getType());
2297
John McCalla6309952010-03-16 21:39:52 +00002298 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002299 }
2300}
2301
John McCall48871652010-08-21 09:40:31 +00002302void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002303 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002304 return;
Mike Stump11289f42009-09-09 15:08:12 +00002305
Mike Stump11289f42009-09-09 15:08:12 +00002306 if (CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002307 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002308 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002309}
2310
Mike Stump11289f42009-09-09 15:08:12 +00002311bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002312 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002313 if (SelID == -1)
John McCall02db245d2010-08-18 09:41:07 +00002314 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssoneabf7702009-08-27 00:13:57 +00002315 else
John McCall02db245d2010-08-18 09:41:07 +00002316 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump11289f42009-09-09 15:08:12 +00002317}
2318
Anders Carlssoneabf7702009-08-27 00:13:57 +00002319bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002320 const PartialDiagnostic &PD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002321 if (!getLangOptions().CPlusPlus)
2322 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002323
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002324 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall02db245d2010-08-18 09:41:07 +00002325 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump11289f42009-09-09 15:08:12 +00002326
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002327 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002328 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002329 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002330 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002331
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002332 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall02db245d2010-08-18 09:41:07 +00002333 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002334 }
Mike Stump11289f42009-09-09 15:08:12 +00002335
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002336 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002337 if (!RT)
2338 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002339
John McCall67da35c2010-02-04 22:26:26 +00002340 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002341
John McCall02db245d2010-08-18 09:41:07 +00002342 // We can't answer whether something is abstract until it has a
2343 // definition. If it's currently being defined, we'll walk back
2344 // over all the declarations when we have a full definition.
2345 const CXXRecordDecl *Def = RD->getDefinition();
2346 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00002347 return false;
2348
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002349 if (!RD->isAbstract())
2350 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002351
Anders Carlssoneabf7702009-08-27 00:13:57 +00002352 Diag(Loc, PD) << RD->getDeclName();
John McCall02db245d2010-08-18 09:41:07 +00002353 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002354
John McCall02db245d2010-08-18 09:41:07 +00002355 return true;
2356}
2357
2358void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2359 // Check if we've already emitted the list of pure virtual functions
2360 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002361 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00002362 return;
Mike Stump11289f42009-09-09 15:08:12 +00002363
Douglas Gregor4165bd62010-03-23 23:47:56 +00002364 CXXFinalOverriderMap FinalOverriders;
2365 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002366
Anders Carlssona2f74f32010-06-03 01:00:02 +00002367 // Keep a set of seen pure methods so we won't diagnose the same method
2368 // more than once.
2369 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2370
Douglas Gregor4165bd62010-03-23 23:47:56 +00002371 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2372 MEnd = FinalOverriders.end();
2373 M != MEnd;
2374 ++M) {
2375 for (OverridingMethods::iterator SO = M->second.begin(),
2376 SOEnd = M->second.end();
2377 SO != SOEnd; ++SO) {
2378 // C++ [class.abstract]p4:
2379 // A class is abstract if it contains or inherits at least one
2380 // pure virtual function for which the final overrider is pure
2381 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002382
Douglas Gregor4165bd62010-03-23 23:47:56 +00002383 //
2384 if (SO->second.size() != 1)
2385 continue;
2386
2387 if (!SO->second.front().Method->isPure())
2388 continue;
2389
Anders Carlssona2f74f32010-06-03 01:00:02 +00002390 if (!SeenPureMethods.insert(SO->second.front().Method))
2391 continue;
2392
Douglas Gregor4165bd62010-03-23 23:47:56 +00002393 Diag(SO->second.front().Method->getLocation(),
2394 diag::note_pure_virtual_function)
2395 << SO->second.front().Method->getDeclName();
2396 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002397 }
2398
2399 if (!PureVirtualClassDiagSet)
2400 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2401 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002402}
2403
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002404namespace {
John McCall02db245d2010-08-18 09:41:07 +00002405struct AbstractUsageInfo {
2406 Sema &S;
2407 CXXRecordDecl *Record;
2408 CanQualType AbstractType;
2409 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00002410
John McCall02db245d2010-08-18 09:41:07 +00002411 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2412 : S(S), Record(Record),
2413 AbstractType(S.Context.getCanonicalType(
2414 S.Context.getTypeDeclType(Record))),
2415 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002416
John McCall02db245d2010-08-18 09:41:07 +00002417 void DiagnoseAbstractType() {
2418 if (Invalid) return;
2419 S.DiagnoseAbstractType(Record);
2420 Invalid = true;
2421 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00002422
John McCall02db245d2010-08-18 09:41:07 +00002423 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2424};
2425
2426struct CheckAbstractUsage {
2427 AbstractUsageInfo &Info;
2428 const NamedDecl *Ctx;
2429
2430 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2431 : Info(Info), Ctx(Ctx) {}
2432
2433 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2434 switch (TL.getTypeLocClass()) {
2435#define ABSTRACT_TYPELOC(CLASS, PARENT)
2436#define TYPELOC(CLASS, PARENT) \
2437 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2438#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002439 }
John McCall02db245d2010-08-18 09:41:07 +00002440 }
Mike Stump11289f42009-09-09 15:08:12 +00002441
John McCall02db245d2010-08-18 09:41:07 +00002442 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2443 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2444 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2445 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2446 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002447 }
John McCall02db245d2010-08-18 09:41:07 +00002448 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002449
John McCall02db245d2010-08-18 09:41:07 +00002450 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2451 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2452 }
Mike Stump11289f42009-09-09 15:08:12 +00002453
John McCall02db245d2010-08-18 09:41:07 +00002454 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2455 // Visit the type parameters from a permissive context.
2456 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2457 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2458 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2459 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2460 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2461 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002462 }
John McCall02db245d2010-08-18 09:41:07 +00002463 }
Mike Stump11289f42009-09-09 15:08:12 +00002464
John McCall02db245d2010-08-18 09:41:07 +00002465 // Visit pointee types from a permissive context.
2466#define CheckPolymorphic(Type) \
2467 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2468 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2469 }
2470 CheckPolymorphic(PointerTypeLoc)
2471 CheckPolymorphic(ReferenceTypeLoc)
2472 CheckPolymorphic(MemberPointerTypeLoc)
2473 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00002474
John McCall02db245d2010-08-18 09:41:07 +00002475 /// Handle all the types we haven't given a more specific
2476 /// implementation for above.
2477 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2478 // Every other kind of type that we haven't called out already
2479 // that has an inner type is either (1) sugar or (2) contains that
2480 // inner type in some way as a subobject.
2481 if (TypeLoc Next = TL.getNextTypeLoc())
2482 return Visit(Next, Sel);
2483
2484 // If there's no inner type and we're in a permissive context,
2485 // don't diagnose.
2486 if (Sel == Sema::AbstractNone) return;
2487
2488 // Check whether the type matches the abstract type.
2489 QualType T = TL.getType();
2490 if (T->isArrayType()) {
2491 Sel = Sema::AbstractArrayType;
2492 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002493 }
John McCall02db245d2010-08-18 09:41:07 +00002494 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2495 if (CT != Info.AbstractType) return;
2496
2497 // It matched; do some magic.
2498 if (Sel == Sema::AbstractArrayType) {
2499 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2500 << T << TL.getSourceRange();
2501 } else {
2502 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2503 << Sel << T << TL.getSourceRange();
2504 }
2505 Info.DiagnoseAbstractType();
2506 }
2507};
2508
2509void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2510 Sema::AbstractDiagSelID Sel) {
2511 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2512}
2513
2514}
2515
2516/// Check for invalid uses of an abstract type in a method declaration.
2517static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2518 CXXMethodDecl *MD) {
2519 // No need to do the check on definitions, which require that
2520 // the return/param types be complete.
2521 if (MD->isThisDeclarationADefinition())
2522 return;
2523
2524 // For safety's sake, just ignore it if we don't have type source
2525 // information. This should never happen for non-implicit methods,
2526 // but...
2527 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2528 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2529}
2530
2531/// Check for invalid uses of an abstract type within a class definition.
2532static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2533 CXXRecordDecl *RD) {
2534 for (CXXRecordDecl::decl_iterator
2535 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2536 Decl *D = *I;
2537 if (D->isImplicit()) continue;
2538
2539 // Methods and method templates.
2540 if (isa<CXXMethodDecl>(D)) {
2541 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2542 } else if (isa<FunctionTemplateDecl>(D)) {
2543 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2544 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2545
2546 // Fields and static variables.
2547 } else if (isa<FieldDecl>(D)) {
2548 FieldDecl *FD = cast<FieldDecl>(D);
2549 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2550 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2551 } else if (isa<VarDecl>(D)) {
2552 VarDecl *VD = cast<VarDecl>(D);
2553 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2554 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2555
2556 // Nested classes and class templates.
2557 } else if (isa<CXXRecordDecl>(D)) {
2558 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2559 } else if (isa<ClassTemplateDecl>(D)) {
2560 CheckAbstractClassUsage(Info,
2561 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2562 }
2563 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002564}
2565
Douglas Gregorc99f1552009-12-03 18:33:45 +00002566/// \brief Perform semantic checks on a class definition that has been
2567/// completing, introducing implicitly-declared members, checking for
2568/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002569void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002570 if (!Record || Record->isInvalidDecl())
2571 return;
2572
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002573 if (!Record->isDependentType())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002574 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002575
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002576 if (Record->isInvalidDecl())
2577 return;
2578
John McCall2cb94162010-01-28 07:38:46 +00002579 // Set access bits correctly on the directly-declared conversions.
2580 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2581 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2582 Convs->setAccess(I, (*I)->getAccess());
2583
Douglas Gregor4165bd62010-03-23 23:47:56 +00002584 // Determine whether we need to check for final overriders. We do
2585 // this either when there are virtual base classes (in which case we
2586 // may end up finding multiple final overriders for a given virtual
2587 // function) or any of the base classes is abstract (in which case
2588 // we might detect that this class is abstract).
2589 bool CheckFinalOverriders = false;
2590 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2591 !Record->isDependentType()) {
2592 if (Record->getNumVBases())
2593 CheckFinalOverriders = true;
2594 else if (!Record->isAbstract()) {
2595 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2596 BEnd = Record->bases_end();
2597 B != BEnd; ++B) {
2598 CXXRecordDecl *BaseDecl
2599 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2600 if (BaseDecl->isAbstract()) {
2601 CheckFinalOverriders = true;
2602 break;
2603 }
2604 }
2605 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002606 }
2607
Douglas Gregor4165bd62010-03-23 23:47:56 +00002608 if (CheckFinalOverriders) {
2609 CXXFinalOverriderMap FinalOverriders;
2610 Record->getFinalOverriders(FinalOverriders);
2611
2612 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2613 MEnd = FinalOverriders.end();
2614 M != MEnd; ++M) {
2615 for (OverridingMethods::iterator SO = M->second.begin(),
2616 SOEnd = M->second.end();
2617 SO != SOEnd; ++SO) {
2618 assert(SO->second.size() > 0 &&
2619 "All virtual functions have overridding virtual functions");
2620 if (SO->second.size() == 1) {
2621 // C++ [class.abstract]p4:
2622 // A class is abstract if it contains or inherits at least one
2623 // pure virtual function for which the final overrider is pure
2624 // virtual.
2625 if (SO->second.front().Method->isPure())
2626 Record->setAbstract(true);
2627 continue;
2628 }
2629
2630 // C++ [class.virtual]p2:
2631 // In a derived class, if a virtual member function of a base
2632 // class subobject has more than one final overrider the
2633 // program is ill-formed.
2634 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2635 << (NamedDecl *)M->first << Record;
2636 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2637 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2638 OMEnd = SO->second.end();
2639 OM != OMEnd; ++OM)
2640 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2641 << (NamedDecl *)M->first << OM->Method->getParent();
2642
2643 Record->setInvalidDecl();
2644 }
2645 }
2646 }
2647
John McCall02db245d2010-08-18 09:41:07 +00002648 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2649 AbstractUsageInfo Info(*this, Record);
2650 CheckAbstractClassUsage(Info, Record);
2651 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00002652
2653 // If this is not an aggregate type and has no user-declared constructor,
2654 // complain about any non-static data members of reference or const scalar
2655 // type, since they will never get initializers.
2656 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2657 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2658 bool Complained = false;
2659 for (RecordDecl::field_iterator F = Record->field_begin(),
2660 FEnd = Record->field_end();
2661 F != FEnd; ++F) {
2662 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002663 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002664 if (!Complained) {
2665 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2666 << Record->getTagKind() << Record;
2667 Complained = true;
2668 }
2669
2670 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2671 << F->getType()->isReferenceType()
2672 << F->getDeclName();
2673 }
2674 }
2675 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002676
2677 if (Record->isDynamicClass())
2678 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002679}
2680
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002681void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00002682 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002683 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002684 SourceLocation RBrac,
2685 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002686 if (!TagDecl)
2687 return;
Mike Stump11289f42009-09-09 15:08:12 +00002688
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002689 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002690
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002691 ActOnFields(S, RLoc, TagDecl,
John McCall48871652010-08-21 09:40:31 +00002692 // strict aliasing violation!
2693 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002694 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002695
Douglas Gregor0be31a22010-07-02 17:43:08 +00002696 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00002697 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002698}
2699
Douglas Gregor95755162010-07-01 05:10:53 +00002700namespace {
2701 /// \brief Helper class that collects exception specifications for
2702 /// implicitly-declared special member functions.
2703 class ImplicitExceptionSpecification {
2704 ASTContext &Context;
2705 bool AllowsAllExceptions;
2706 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2707 llvm::SmallVector<QualType, 4> Exceptions;
2708
2709 public:
2710 explicit ImplicitExceptionSpecification(ASTContext &Context)
2711 : Context(Context), AllowsAllExceptions(false) { }
2712
2713 /// \brief Whether the special member function should have any
2714 /// exception specification at all.
2715 bool hasExceptionSpecification() const {
2716 return !AllowsAllExceptions;
2717 }
2718
2719 /// \brief Whether the special member function should have a
2720 /// throw(...) exception specification (a Microsoft extension).
2721 bool hasAnyExceptionSpecification() const {
2722 return false;
2723 }
2724
2725 /// \brief The number of exceptions in the exception specification.
2726 unsigned size() const { return Exceptions.size(); }
2727
2728 /// \brief The set of exceptions in the exception specification.
2729 const QualType *data() const { return Exceptions.data(); }
2730
2731 /// \brief Note that
2732 void CalledDecl(CXXMethodDecl *Method) {
2733 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002734 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002735 return;
2736
2737 const FunctionProtoType *Proto
2738 = Method->getType()->getAs<FunctionProtoType>();
2739
2740 // If this function can throw any exceptions, make a note of that.
2741 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2742 AllowsAllExceptions = true;
2743 ExceptionsSeen.clear();
2744 Exceptions.clear();
2745 return;
2746 }
2747
2748 // Record the exceptions in this function's exception specification.
2749 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2750 EEnd = Proto->exception_end();
2751 E != EEnd; ++E)
2752 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2753 Exceptions.push_back(*E);
2754 }
2755 };
2756}
2757
2758
Douglas Gregor05379422008-11-03 17:51:48 +00002759/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2760/// special functions, such as the default constructor, copy
2761/// constructor, or destructor, to the given C++ class (C++
2762/// [special]p1). This routine can only be executed just before the
2763/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002764void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002765 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00002766 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002767
Douglas Gregor54be3392010-07-01 17:57:27 +00002768 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00002769 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002770
Douglas Gregor330b9cf2010-07-02 21:50:04 +00002771 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2772 ++ASTContext::NumImplicitCopyAssignmentOperators;
2773
2774 // If we have a dynamic class, then the copy assignment operator may be
2775 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2776 // it shows up in the right place in the vtable and that we diagnose
2777 // problems with the implicit exception specification.
2778 if (ClassDecl->isDynamicClass())
2779 DeclareImplicitCopyAssignment(ClassDecl);
2780 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002781
Douglas Gregor7454c562010-07-02 20:37:36 +00002782 if (!ClassDecl->hasUserDeclaredDestructor()) {
2783 ++ASTContext::NumImplicitDestructors;
2784
2785 // If we have a dynamic class, then the destructor may be virtual, so we
2786 // have to declare the destructor immediately. This ensures that, e.g., it
2787 // shows up in the right place in the vtable and that we diagnose problems
2788 // with the implicit exception specification.
2789 if (ClassDecl->isDynamicClass())
2790 DeclareImplicitDestructor(ClassDecl);
2791 }
Douglas Gregor05379422008-11-03 17:51:48 +00002792}
2793
John McCall48871652010-08-21 09:40:31 +00002794void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002795 if (!D)
2796 return;
2797
2798 TemplateParameterList *Params = 0;
2799 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2800 Params = Template->getTemplateParameters();
2801 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2802 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2803 Params = PartialSpec->getTemplateParameters();
2804 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002805 return;
2806
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002807 for (TemplateParameterList::iterator Param = Params->begin(),
2808 ParamEnd = Params->end();
2809 Param != ParamEnd; ++Param) {
2810 NamedDecl *Named = cast<NamedDecl>(*Param);
2811 if (Named->getDeclName()) {
John McCall48871652010-08-21 09:40:31 +00002812 S->AddDecl(Named);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002813 IdResolver.AddDecl(Named);
2814 }
2815 }
2816}
2817
John McCall48871652010-08-21 09:40:31 +00002818void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002819 if (!RecordD) return;
2820 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00002821 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00002822 PushDeclContext(S, Record);
2823}
2824
John McCall48871652010-08-21 09:40:31 +00002825void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00002826 if (!RecordD) return;
2827 PopDeclContext();
2828}
2829
Douglas Gregor4d87df52008-12-16 21:30:33 +00002830/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2831/// parsing a top-level (non-nested) C++ class, and we are now
2832/// parsing those parts of the given Method declaration that could
2833/// not be parsed earlier (C++ [class.mem]p2), such as default
2834/// arguments. This action should enter the scope of the given
2835/// Method declaration as if we had just parsed the qualified method
2836/// name. However, it should not bring the parameters into scope;
2837/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00002838void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002839}
2840
2841/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2842/// C++ method declaration. We're (re-)introducing the given
2843/// function parameter into scope for use in parsing later parts of
2844/// the method declaration. For example, we could see an
2845/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00002846void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002847 if (!ParamD)
2848 return;
Mike Stump11289f42009-09-09 15:08:12 +00002849
John McCall48871652010-08-21 09:40:31 +00002850 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00002851
2852 // If this parameter has an unparsed default argument, clear it out
2853 // to make way for the parsed default argument.
2854 if (Param->hasUnparsedDefaultArg())
2855 Param->setDefaultArg(0);
2856
John McCall48871652010-08-21 09:40:31 +00002857 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002858 if (Param->getDeclName())
2859 IdResolver.AddDecl(Param);
2860}
2861
2862/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2863/// processing the delayed method declaration for Method. The method
2864/// declaration is now considered finished. There may be a separate
2865/// ActOnStartOfFunctionDef action later (not necessarily
2866/// immediately!) for this method, if it was also defined inside the
2867/// class body.
John McCall48871652010-08-21 09:40:31 +00002868void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002869 if (!MethodD)
2870 return;
Mike Stump11289f42009-09-09 15:08:12 +00002871
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002872 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002873
John McCall48871652010-08-21 09:40:31 +00002874 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002875
2876 // Now that we have our default arguments, check the constructor
2877 // again. It could produce additional diagnostics or affect whether
2878 // the class has implicitly-declared destructors, among other
2879 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002880 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2881 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002882
2883 // Check the default arguments, which we may have added.
2884 if (!Method->isInvalidDecl())
2885 CheckCXXDefaultArguments(Method);
2886}
2887
Douglas Gregor831c93f2008-11-05 20:51:48 +00002888/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002889/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002890/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002891/// emit diagnostics and set the invalid bit to true. In any case, the type
2892/// will be updated to reflect a well-formed type for the constructor and
2893/// returned.
2894QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2895 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002896 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002897
2898 // C++ [class.ctor]p3:
2899 // A constructor shall not be virtual (10.3) or static (9.4). A
2900 // constructor can be invoked for a const, volatile or const
2901 // volatile object. A constructor shall not be declared const,
2902 // volatile, or const volatile (9.3.2).
2903 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002904 if (!D.isInvalidType())
2905 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2906 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2907 << SourceRange(D.getIdentifierLoc());
2908 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002909 }
2910 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002911 if (!D.isInvalidType())
2912 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2913 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2914 << SourceRange(D.getIdentifierLoc());
2915 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002916 SC = FunctionDecl::None;
2917 }
Mike Stump11289f42009-09-09 15:08:12 +00002918
Chris Lattner38378bf2009-04-25 08:28:21 +00002919 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2920 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002921 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002922 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2923 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002924 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002925 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2926 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002927 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002928 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2929 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002930 }
Mike Stump11289f42009-09-09 15:08:12 +00002931
Douglas Gregor831c93f2008-11-05 20:51:48 +00002932 // Rebuild the function type "R" without any type qualifiers (in
2933 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002934 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002935 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002936 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2937 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002938 Proto->isVariadic(), 0,
2939 Proto->hasExceptionSpec(),
2940 Proto->hasAnyExceptionSpec(),
2941 Proto->getNumExceptions(),
2942 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002943 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002944}
2945
Douglas Gregor4d87df52008-12-16 21:30:33 +00002946/// CheckConstructor - Checks a fully-formed constructor for
2947/// well-formedness, issuing any diagnostics required. Returns true if
2948/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002949void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002950 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002951 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2952 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002953 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002954
2955 // C++ [class.copy]p3:
2956 // A declaration of a constructor for a class X is ill-formed if
2957 // its first parameter is of type (optionally cv-qualified) X and
2958 // either there are no other parameters or else all other
2959 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002960 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002961 ((Constructor->getNumParams() == 1) ||
2962 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002963 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2964 Constructor->getTemplateSpecializationKind()
2965 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002966 QualType ParamType = Constructor->getParamDecl(0)->getType();
2967 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2968 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002969 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002970 const char *ConstRef
2971 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2972 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002973 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002974 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002975
2976 // FIXME: Rather that making the constructor invalid, we should endeavor
2977 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002978 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002979 }
2980 }
Mike Stump11289f42009-09-09 15:08:12 +00002981
John McCall43314ab2010-04-13 07:45:41 +00002982 // Notify the class that we've added a constructor. In principle we
2983 // don't need to do this for out-of-line declarations; in practice
2984 // we only instantiate the most recent declaration of a method, so
2985 // we have to call this for everything but friends.
2986 if (!Constructor->getFriendObjectKind())
2987 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002988}
2989
John McCalldeb646e2010-08-04 01:04:25 +00002990/// CheckDestructor - Checks a fully-formed destructor definition for
2991/// well-formedness, issuing any diagnostics required. Returns true
2992/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002993bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002994 CXXRecordDecl *RD = Destructor->getParent();
2995
2996 if (Destructor->isVirtual()) {
2997 SourceLocation Loc;
2998
2999 if (!Destructor->isImplicit())
3000 Loc = Destructor->getLocation();
3001 else
3002 Loc = RD->getLocation();
3003
3004 // If we have a virtual destructor, look up the deallocation function
3005 FunctionDecl *OperatorDelete = 0;
3006 DeclarationName Name =
3007 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00003008 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00003009 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00003010
3011 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00003012
3013 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00003014 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00003015
3016 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00003017}
3018
Mike Stump11289f42009-09-09 15:08:12 +00003019static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00003020FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3021 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3022 FTI.ArgInfo[0].Param &&
John McCall48871652010-08-21 09:40:31 +00003023 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson5e965472009-04-30 23:18:11 +00003024}
3025
Douglas Gregor831c93f2008-11-05 20:51:48 +00003026/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3027/// the well-formednes of the destructor declarator @p D with type @p
3028/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00003029/// emit diagnostics and set the declarator to invalid. Even if this happens,
3030/// will be updated to reflect a well-formed type for the destructor and
3031/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00003032QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner38378bf2009-04-25 08:28:21 +00003033 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003034 // C++ [class.dtor]p1:
3035 // [...] A typedef-name that names a class is a class-name
3036 // (7.1.3); however, a typedef-name that names a class shall not
3037 // be used as the identifier in the declarator for a destructor
3038 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00003039 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00003040 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00003041 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00003042 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00003043
3044 // C++ [class.dtor]p2:
3045 // A destructor is used to destroy objects of its class type. A
3046 // destructor takes no parameters, and no return type can be
3047 // specified for it (not even void). The address of a destructor
3048 // shall not be taken. A destructor shall not be static. A
3049 // destructor can be invoked for a const, volatile or const
3050 // volatile object. A destructor shall not be declared const,
3051 // volatile or const volatile (9.3.2).
3052 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00003053 if (!D.isInvalidType())
3054 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3055 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00003056 << SourceRange(D.getIdentifierLoc())
3057 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
3058
Douglas Gregor831c93f2008-11-05 20:51:48 +00003059 SC = FunctionDecl::None;
3060 }
Chris Lattner38378bf2009-04-25 08:28:21 +00003061 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003062 // Destructors don't have return types, but the parser will
3063 // happily parse something like:
3064 //
3065 // class X {
3066 // float ~X();
3067 // };
3068 //
3069 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00003070 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3071 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3072 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003073 }
Mike Stump11289f42009-09-09 15:08:12 +00003074
Chris Lattner38378bf2009-04-25 08:28:21 +00003075 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3076 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003077 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003078 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3079 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003080 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003081 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3082 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003083 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003084 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3085 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003086 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003087 }
3088
3089 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003090 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003091 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3092
3093 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003094 FTI.freeArgs();
3095 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003096 }
3097
Mike Stump11289f42009-09-09 15:08:12 +00003098 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003099 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003100 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003101 D.setInvalidType();
3102 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003103
3104 // Rebuild the function type "R" without any type qualifiers or
3105 // parameters (in case any of the errors above fired) and with
3106 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00003107 // types.
3108 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3109 if (!Proto)
3110 return QualType();
3111
Douglas Gregor36c569f2010-02-21 22:15:06 +00003112 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00003113 Proto->hasExceptionSpec(),
3114 Proto->hasAnyExceptionSpec(),
3115 Proto->getNumExceptions(),
3116 Proto->exception_begin(),
3117 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003118}
3119
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003120/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3121/// well-formednes of the conversion function declarator @p D with
3122/// type @p R. If there are any errors in the declarator, this routine
3123/// will emit diagnostics and return true. Otherwise, it will return
3124/// false. Either way, the type @p R will be updated to reflect a
3125/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003126void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003127 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003128 // C++ [class.conv.fct]p1:
3129 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003130 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003131 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003132 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003133 if (!D.isInvalidType())
3134 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3135 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3136 << SourceRange(D.getIdentifierLoc());
3137 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003138 SC = FunctionDecl::None;
3139 }
John McCall212fa2e2010-04-13 00:04:31 +00003140
3141 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3142
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003143 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003144 // Conversion functions don't have return types, but the parser will
3145 // happily parse something like:
3146 //
3147 // class X {
3148 // float operator bool();
3149 // };
3150 //
3151 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003152 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3153 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3154 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003155 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003156 }
3157
John McCall212fa2e2010-04-13 00:04:31 +00003158 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3159
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003160 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003161 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003162 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3163
3164 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003165 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003166 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003167 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003168 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003169 D.setInvalidType();
3170 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003171
John McCall212fa2e2010-04-13 00:04:31 +00003172 // Diagnose "&operator bool()" and other such nonsense. This
3173 // is actually a gcc extension which we don't support.
3174 if (Proto->getResultType() != ConvType) {
3175 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3176 << Proto->getResultType();
3177 D.setInvalidType();
3178 ConvType = Proto->getResultType();
3179 }
3180
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003181 // C++ [class.conv.fct]p4:
3182 // The conversion-type-id shall not represent a function type nor
3183 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003184 if (ConvType->isArrayType()) {
3185 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3186 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003187 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003188 } else if (ConvType->isFunctionType()) {
3189 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3190 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003191 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003192 }
3193
3194 // Rebuild the function type "R" without any parameters (in case any
3195 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003196 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003197 if (D.isInvalidType()) {
3198 R = Context.getFunctionType(ConvType, 0, 0, false,
3199 Proto->getTypeQuals(),
3200 Proto->hasExceptionSpec(),
3201 Proto->hasAnyExceptionSpec(),
3202 Proto->getNumExceptions(),
3203 Proto->exception_begin(),
3204 Proto->getExtInfo());
3205 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003206
Douglas Gregor5fb53972009-01-14 15:45:31 +00003207 // C++0x explicit conversion operators.
3208 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003209 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003210 diag::warn_explicit_conversion_functions)
3211 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003212}
3213
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003214/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3215/// the declaration of the given C++ conversion function. This routine
3216/// is responsible for recording the conversion function in the C++
3217/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00003218Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003219 assert(Conversion && "Expected to receive a conversion function declaration");
3220
Douglas Gregor4287b372008-12-12 08:25:50 +00003221 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003222
3223 // Make sure we aren't redeclaring the conversion function.
3224 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003225
3226 // C++ [class.conv.fct]p1:
3227 // [...] A conversion function is never used to convert a
3228 // (possibly cv-qualified) object to the (possibly cv-qualified)
3229 // same object type (or a reference to it), to a (possibly
3230 // cv-qualified) base class of that type (or a reference to it),
3231 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003232 // FIXME: Suppress this warning if the conversion function ends up being a
3233 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003234 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003235 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003236 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003237 ConvType = ConvTypeRef->getPointeeType();
3238 if (ConvType->isRecordType()) {
3239 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3240 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003241 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003242 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003243 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003244 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003245 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003246 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003247 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003248 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003249 }
3250
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003251 if (Conversion->getPrimaryTemplate()) {
3252 // ignore specializations
3253 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003254 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003255 = Conversion->getDescribedFunctionTemplate()) {
3256 if (ClassDecl->replaceConversion(
3257 ConversionTemplate->getPreviousDeclaration(),
3258 ConversionTemplate))
John McCall48871652010-08-21 09:40:31 +00003259 return ConversionTemplate;
Douglas Gregor133bc742010-01-11 18:53:25 +00003260 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3261 Conversion))
John McCall48871652010-08-21 09:40:31 +00003262 return Conversion;
Douglas Gregor1dc98262008-12-26 15:00:45 +00003263 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003264 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003265 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003266 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003267 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003268 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003269
John McCall48871652010-08-21 09:40:31 +00003270 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003271}
3272
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003273//===----------------------------------------------------------------------===//
3274// Namespace Handling
3275//===----------------------------------------------------------------------===//
3276
3277/// ActOnStartNamespaceDef - This is called at the start of a namespace
3278/// definition.
John McCall48871652010-08-21 09:40:31 +00003279Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Chris Lattner83f095c2009-03-28 19:18:32 +00003280 SourceLocation IdentLoc,
3281 IdentifierInfo *II,
Anders Carlssona7bcade2010-02-07 01:09:23 +00003282 SourceLocation LBrace,
3283 AttributeList *AttrList) {
Douglas Gregor086cae62010-08-19 20:55:47 +00003284 // anonymous namespace starts at its left brace
3285 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
3286 (II ? IdentLoc : LBrace) , II);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003287 Namespc->setLBracLoc(LBrace);
3288
3289 Scope *DeclRegionScope = NamespcScope->getParent();
3290
Anders Carlssona7bcade2010-02-07 01:09:23 +00003291 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3292
Eli Friedman570024a2010-08-05 06:57:20 +00003293 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003294 PushPragmaVisibility(attr->getVisibility(), attr->getLocation());
Eli Friedman570024a2010-08-05 06:57:20 +00003295
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003296 if (II) {
3297 // C++ [namespace.def]p2:
3298 // The identifier in an original-namespace-definition shall not have been
3299 // previously defined in the declarative region in which the
3300 // original-namespace-definition appears. The identifier in an
3301 // original-namespace-definition is the name of the namespace. Subsequently
3302 // in that declarative region, it is treated as an original-namespace-name.
3303
John McCall9f3059a2009-10-09 21:13:30 +00003304 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003305 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003306 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003307
Douglas Gregor91f84212008-12-11 16:49:14 +00003308 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3309 // This is an extended namespace definition.
3310 // Attach this namespace decl to the chain of extended namespace
3311 // definitions.
3312 OrigNS->setNextNamespace(Namespc);
3313 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003314
Mike Stump11289f42009-09-09 15:08:12 +00003315 // Remove the previous declaration from the scope.
John McCall48871652010-08-21 09:40:31 +00003316 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003317 IdResolver.RemoveDecl(OrigNS);
John McCall48871652010-08-21 09:40:31 +00003318 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003319 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003320 } else if (PrevDecl) {
3321 // This is an invalid name redefinition.
3322 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3323 << Namespc->getDeclName();
3324 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3325 Namespc->setInvalidDecl();
3326 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003327 } else if (II->isStr("std") &&
3328 CurContext->getLookupContext()->isTranslationUnit()) {
3329 // This is the first "real" definition of the namespace "std", so update
3330 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003331 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003332 // We had already defined a dummy namespace "std". Link this new
3333 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003334 StdNS->setNextNamespace(Namespc);
3335 StdNS->setLocation(IdentLoc);
3336 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00003337 }
3338
3339 // Make our StdNamespace cache point at the first real definition of the
3340 // "std" namespace.
3341 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003342 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003343
3344 PushOnScopeChains(Namespc, DeclRegionScope);
3345 } else {
John McCall4fa53422009-10-01 00:25:31 +00003346 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003347 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003348
3349 // Link the anonymous namespace into its parent.
3350 NamespaceDecl *PrevDecl;
3351 DeclContext *Parent = CurContext->getLookupContext();
3352 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3353 PrevDecl = TU->getAnonymousNamespace();
3354 TU->setAnonymousNamespace(Namespc);
3355 } else {
3356 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3357 PrevDecl = ND->getAnonymousNamespace();
3358 ND->setAnonymousNamespace(Namespc);
3359 }
3360
3361 // Link the anonymous namespace with its previous declaration.
3362 if (PrevDecl) {
3363 assert(PrevDecl->isAnonymousNamespace());
3364 assert(!PrevDecl->getNextNamespace());
3365 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3366 PrevDecl->setNextNamespace(Namespc);
3367 }
John McCall4fa53422009-10-01 00:25:31 +00003368
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003369 CurContext->addDecl(Namespc);
3370
John McCall4fa53422009-10-01 00:25:31 +00003371 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3372 // behaves as if it were replaced by
3373 // namespace unique { /* empty body */ }
3374 // using namespace unique;
3375 // namespace unique { namespace-body }
3376 // where all occurrences of 'unique' in a translation unit are
3377 // replaced by the same identifier and this identifier differs
3378 // from all other identifiers in the entire program.
3379
3380 // We just create the namespace with an empty name and then add an
3381 // implicit using declaration, just like the standard suggests.
3382 //
3383 // CodeGen enforces the "universally unique" aspect by giving all
3384 // declarations semantically contained within an anonymous
3385 // namespace internal linkage.
3386
John McCall0db42252009-12-16 02:06:49 +00003387 if (!PrevDecl) {
3388 UsingDirectiveDecl* UD
3389 = UsingDirectiveDecl::Create(Context, CurContext,
3390 /* 'using' */ LBrace,
3391 /* 'namespace' */ SourceLocation(),
3392 /* qualifier */ SourceRange(),
3393 /* NNS */ NULL,
3394 /* identifier */ SourceLocation(),
3395 Namespc,
3396 /* Ancestor */ CurContext);
3397 UD->setImplicit();
3398 CurContext->addDecl(UD);
3399 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003400 }
3401
3402 // Although we could have an invalid decl (i.e. the namespace name is a
3403 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003404 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3405 // for the namespace has the declarations that showed up in that particular
3406 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003407 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00003408 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003409}
3410
Sebastian Redla6602e92009-11-23 15:34:23 +00003411/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3412/// is a namespace alias, returns the namespace it points to.
3413static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3414 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3415 return AD->getNamespace();
3416 return dyn_cast_or_null<NamespaceDecl>(D);
3417}
3418
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003419/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3420/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00003421void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003422 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3423 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3424 Namespc->setRBracLoc(RBrace);
3425 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00003426 if (Namespc->hasAttr<VisibilityAttr>())
3427 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003428}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003429
Douglas Gregorcdf87022010-06-29 17:53:46 +00003430/// \brief Retrieve the special "std" namespace, which may require us to
3431/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003432NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00003433 if (!StdNamespace) {
3434 // The "std" namespace has not yet been defined, so build one implicitly.
3435 StdNamespace = NamespaceDecl::Create(Context,
3436 Context.getTranslationUnitDecl(),
3437 SourceLocation(),
3438 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003439 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003440 }
3441
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003442 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00003443}
3444
John McCall48871652010-08-21 09:40:31 +00003445Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00003446 SourceLocation UsingLoc,
3447 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003448 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003449 SourceLocation IdentLoc,
3450 IdentifierInfo *NamespcName,
3451 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003452 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3453 assert(NamespcName && "Invalid NamespcName.");
3454 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003455 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003456
Douglas Gregor889ceb72009-02-03 19:21:40 +00003457 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003458 NestedNameSpecifier *Qualifier = 0;
3459 if (SS.isSet())
3460 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3461
Douglas Gregor34074322009-01-14 22:20:51 +00003462 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003463 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3464 LookupParsedName(R, S, &SS);
3465 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00003466 return 0;
John McCall27b18f82009-11-17 02:14:36 +00003467
Douglas Gregorcdf87022010-06-29 17:53:46 +00003468 if (R.empty()) {
3469 // Allow "using namespace std;" or "using namespace ::std;" even if
3470 // "std" hasn't been defined yet, for GCC compatibility.
3471 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3472 NamespcName->isStr("std")) {
3473 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003474 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00003475 R.resolveKind();
3476 }
3477 // Otherwise, attempt typo correction.
3478 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3479 CTC_NoKeywords, 0)) {
3480 if (R.getAsSingle<NamespaceDecl>() ||
3481 R.getAsSingle<NamespaceAliasDecl>()) {
3482 if (DeclContext *DC = computeDeclContext(SS, false))
3483 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3484 << NamespcName << DC << Corrected << SS.getRange()
3485 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3486 else
3487 Diag(IdentLoc, diag::err_using_directive_suggest)
3488 << NamespcName << Corrected
3489 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3490 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3491 << Corrected;
3492
3493 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003494 } else {
3495 R.clear();
3496 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003497 }
3498 }
3499 }
3500
John McCall9f3059a2009-10-09 21:13:30 +00003501 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003502 NamedDecl *Named = R.getFoundDecl();
3503 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3504 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003505 // C++ [namespace.udir]p1:
3506 // A using-directive specifies that the names in the nominated
3507 // namespace can be used in the scope in which the
3508 // using-directive appears after the using-directive. During
3509 // unqualified name lookup (3.4.1), the names appear as if they
3510 // were declared in the nearest enclosing namespace which
3511 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003512 // namespace. [Note: in this context, "contains" means "contains
3513 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003514
3515 // Find enclosing context containing both using-directive and
3516 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003517 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003518 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3519 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3520 CommonAncestor = CommonAncestor->getParent();
3521
Sebastian Redla6602e92009-11-23 15:34:23 +00003522 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003523 SS.getRange(),
3524 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003525 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003526 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003527 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003528 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003529 }
3530
Douglas Gregor889ceb72009-02-03 19:21:40 +00003531 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003532 delete AttrList;
John McCall48871652010-08-21 09:40:31 +00003533 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00003534}
3535
3536void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3537 // If scope has associated entity, then using directive is at namespace
3538 // or translation unit scope. We add UsingDirectiveDecls, into
3539 // it's lookup structure.
3540 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003541 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003542 else
3543 // Otherwise it is block-sope. using-directives will affect lookup
3544 // only to the end of scope.
John McCall48871652010-08-21 09:40:31 +00003545 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003546}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003547
Douglas Gregorfec52632009-06-20 00:51:54 +00003548
John McCall48871652010-08-21 09:40:31 +00003549Decl *Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003550 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003551 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003552 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003553 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003554 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003555 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003556 bool IsTypeName,
3557 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003558 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003559
Douglas Gregor220f4272009-11-04 16:30:06 +00003560 switch (Name.getKind()) {
3561 case UnqualifiedId::IK_Identifier:
3562 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003563 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003564 case UnqualifiedId::IK_ConversionFunctionId:
3565 break;
3566
3567 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003568 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003569 // C++0x inherited constructors.
3570 if (getLangOptions().CPlusPlus0x) break;
3571
Douglas Gregor220f4272009-11-04 16:30:06 +00003572 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3573 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003574 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003575
3576 case UnqualifiedId::IK_DestructorName:
3577 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3578 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00003579 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003580
3581 case UnqualifiedId::IK_TemplateId:
3582 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3583 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCall48871652010-08-21 09:40:31 +00003584 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00003585 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003586
3587 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3588 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00003589 if (!TargetName)
John McCall48871652010-08-21 09:40:31 +00003590 return 0;
John McCall3969e302009-12-08 07:46:18 +00003591
John McCalla0097262009-12-11 02:10:03 +00003592 // Warn about using declarations.
3593 // TODO: store that the declaration was written without 'using' and
3594 // talk about access decls instead of using decls in the
3595 // diagnostics.
3596 if (!HasUsingKeyword) {
3597 UsingLoc = Name.getSourceRange().getBegin();
3598
3599 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003600 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003601 }
3602
John McCall3f746822009-11-17 05:59:44 +00003603 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003604 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003605 /* IsInstantiation */ false,
3606 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003607 if (UD)
3608 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003609
John McCall48871652010-08-21 09:40:31 +00003610 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00003611}
3612
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003613/// \brief Determine whether a using declaration considers the given
3614/// declarations as "equivalent", e.g., if they are redeclarations of
3615/// the same entity or are both typedefs of the same type.
3616static bool
3617IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3618 bool &SuppressRedeclaration) {
3619 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3620 SuppressRedeclaration = false;
3621 return true;
3622 }
3623
3624 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3625 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3626 SuppressRedeclaration = true;
3627 return Context.hasSameType(TD1->getUnderlyingType(),
3628 TD2->getUnderlyingType());
3629 }
3630
3631 return false;
3632}
3633
3634
John McCall84d87672009-12-10 09:41:52 +00003635/// Determines whether to create a using shadow decl for a particular
3636/// decl, given the set of decls existing prior to this using lookup.
3637bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3638 const LookupResult &Previous) {
3639 // Diagnose finding a decl which is not from a base class of the
3640 // current class. We do this now because there are cases where this
3641 // function will silently decide not to build a shadow decl, which
3642 // will pre-empt further diagnostics.
3643 //
3644 // We don't need to do this in C++0x because we do the check once on
3645 // the qualifier.
3646 //
3647 // FIXME: diagnose the following if we care enough:
3648 // struct A { int foo; };
3649 // struct B : A { using A::foo; };
3650 // template <class T> struct C : A {};
3651 // template <class T> struct D : C<T> { using B::foo; } // <---
3652 // This is invalid (during instantiation) in C++03 because B::foo
3653 // resolves to the using decl in B, which is not a base class of D<T>.
3654 // We can't diagnose it immediately because C<T> is an unknown
3655 // specialization. The UsingShadowDecl in D<T> then points directly
3656 // to A::foo, which will look well-formed when we instantiate.
3657 // The right solution is to not collapse the shadow-decl chain.
3658 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3659 DeclContext *OrigDC = Orig->getDeclContext();
3660
3661 // Handle enums and anonymous structs.
3662 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3663 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3664 while (OrigRec->isAnonymousStructOrUnion())
3665 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3666
3667 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3668 if (OrigDC == CurContext) {
3669 Diag(Using->getLocation(),
3670 diag::err_using_decl_nested_name_specifier_is_current_class)
3671 << Using->getNestedNameRange();
3672 Diag(Orig->getLocation(), diag::note_using_decl_target);
3673 return true;
3674 }
3675
3676 Diag(Using->getNestedNameRange().getBegin(),
3677 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3678 << Using->getTargetNestedNameDecl()
3679 << cast<CXXRecordDecl>(CurContext)
3680 << Using->getNestedNameRange();
3681 Diag(Orig->getLocation(), diag::note_using_decl_target);
3682 return true;
3683 }
3684 }
3685
3686 if (Previous.empty()) return false;
3687
3688 NamedDecl *Target = Orig;
3689 if (isa<UsingShadowDecl>(Target))
3690 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3691
John McCalla17e83e2009-12-11 02:33:26 +00003692 // If the target happens to be one of the previous declarations, we
3693 // don't have a conflict.
3694 //
3695 // FIXME: but we might be increasing its access, in which case we
3696 // should redeclare it.
3697 NamedDecl *NonTag = 0, *Tag = 0;
3698 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3699 I != E; ++I) {
3700 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003701 bool Result;
3702 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3703 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00003704
3705 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3706 }
3707
John McCall84d87672009-12-10 09:41:52 +00003708 if (Target->isFunctionOrFunctionTemplate()) {
3709 FunctionDecl *FD;
3710 if (isa<FunctionTemplateDecl>(Target))
3711 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3712 else
3713 FD = cast<FunctionDecl>(Target);
3714
3715 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003716 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003717 case Ovl_Overload:
3718 return false;
3719
3720 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003721 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003722 break;
3723
3724 // We found a decl with the exact signature.
3725 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003726 // If we're in a record, we want to hide the target, so we
3727 // return true (without a diagnostic) to tell the caller not to
3728 // build a shadow decl.
3729 if (CurContext->isRecord())
3730 return true;
3731
3732 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003733 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003734 break;
3735 }
3736
3737 Diag(Target->getLocation(), diag::note_using_decl_target);
3738 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3739 return true;
3740 }
3741
3742 // Target is not a function.
3743
John McCall84d87672009-12-10 09:41:52 +00003744 if (isa<TagDecl>(Target)) {
3745 // No conflict between a tag and a non-tag.
3746 if (!Tag) return false;
3747
John McCalle29c5cd2009-12-10 19:51:03 +00003748 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003749 Diag(Target->getLocation(), diag::note_using_decl_target);
3750 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3751 return true;
3752 }
3753
3754 // No conflict between a tag and a non-tag.
3755 if (!NonTag) return false;
3756
John McCalle29c5cd2009-12-10 19:51:03 +00003757 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003758 Diag(Target->getLocation(), diag::note_using_decl_target);
3759 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3760 return true;
3761}
3762
John McCall3f746822009-11-17 05:59:44 +00003763/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003764UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003765 UsingDecl *UD,
3766 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003767
3768 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003769 NamedDecl *Target = Orig;
3770 if (isa<UsingShadowDecl>(Target)) {
3771 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3772 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003773 }
3774
3775 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003776 = UsingShadowDecl::Create(Context, CurContext,
3777 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003778 UD->addShadowDecl(Shadow);
3779
3780 if (S)
John McCall3969e302009-12-08 07:46:18 +00003781 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003782 else
John McCall3969e302009-12-08 07:46:18 +00003783 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003784 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003785
John McCallda4458e2010-03-31 01:36:47 +00003786 // Register it as a conversion if appropriate.
3787 if (Shadow->getDeclName().getNameKind()
3788 == DeclarationName::CXXConversionFunctionName)
3789 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3790
John McCall3969e302009-12-08 07:46:18 +00003791 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3792 Shadow->setInvalidDecl();
3793
John McCall84d87672009-12-10 09:41:52 +00003794 return Shadow;
3795}
John McCall3969e302009-12-08 07:46:18 +00003796
John McCall84d87672009-12-10 09:41:52 +00003797/// Hides a using shadow declaration. This is required by the current
3798/// using-decl implementation when a resolvable using declaration in a
3799/// class is followed by a declaration which would hide or override
3800/// one or more of the using decl's targets; for example:
3801///
3802/// struct Base { void foo(int); };
3803/// struct Derived : Base {
3804/// using Base::foo;
3805/// void foo(int);
3806/// };
3807///
3808/// The governing language is C++03 [namespace.udecl]p12:
3809///
3810/// When a using-declaration brings names from a base class into a
3811/// derived class scope, member functions in the derived class
3812/// override and/or hide member functions with the same name and
3813/// parameter types in a base class (rather than conflicting).
3814///
3815/// There are two ways to implement this:
3816/// (1) optimistically create shadow decls when they're not hidden
3817/// by existing declarations, or
3818/// (2) don't create any shadow decls (or at least don't make them
3819/// visible) until we've fully parsed/instantiated the class.
3820/// The problem with (1) is that we might have to retroactively remove
3821/// a shadow decl, which requires several O(n) operations because the
3822/// decl structures are (very reasonably) not designed for removal.
3823/// (2) avoids this but is very fiddly and phase-dependent.
3824void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003825 if (Shadow->getDeclName().getNameKind() ==
3826 DeclarationName::CXXConversionFunctionName)
3827 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3828
John McCall84d87672009-12-10 09:41:52 +00003829 // Remove it from the DeclContext...
3830 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003831
John McCall84d87672009-12-10 09:41:52 +00003832 // ...and the scope, if applicable...
3833 if (S) {
John McCall48871652010-08-21 09:40:31 +00003834 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003835 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003836 }
3837
John McCall84d87672009-12-10 09:41:52 +00003838 // ...and the using decl.
3839 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3840
3841 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003842 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003843}
3844
John McCalle61f2ba2009-11-18 02:36:19 +00003845/// Builds a using declaration.
3846///
3847/// \param IsInstantiation - Whether this call arises from an
3848/// instantiation of an unresolved using declaration. We treat
3849/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003850NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3851 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003852 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003853 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003854 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003855 bool IsInstantiation,
3856 bool IsTypeName,
3857 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003858 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003859 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00003860 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003861
Anders Carlssonf038fc22009-08-28 05:49:21 +00003862 // FIXME: We ignore attributes for now.
3863 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003864
Anders Carlsson59140b32009-08-28 03:16:11 +00003865 if (SS.isEmpty()) {
3866 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003867 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003868 }
Mike Stump11289f42009-09-09 15:08:12 +00003869
John McCall84d87672009-12-10 09:41:52 +00003870 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003871 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00003872 ForRedeclaration);
3873 Previous.setHideTags(false);
3874 if (S) {
3875 LookupName(Previous, S);
3876
3877 // It is really dumb that we have to do this.
3878 LookupResult::Filter F = Previous.makeFilter();
3879 while (F.hasNext()) {
3880 NamedDecl *D = F.next();
3881 if (!isDeclInScope(D, CurContext, S))
3882 F.erase();
3883 }
3884 F.done();
3885 } else {
3886 assert(IsInstantiation && "no scope in non-instantiation");
3887 assert(CurContext->isRecord() && "scope not record in instantiation");
3888 LookupQualifiedName(Previous, CurContext);
3889 }
3890
Mike Stump11289f42009-09-09 15:08:12 +00003891 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003892 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3893
John McCall84d87672009-12-10 09:41:52 +00003894 // Check for invalid redeclarations.
3895 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3896 return 0;
3897
3898 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003899 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3900 return 0;
3901
John McCall84c16cf2009-11-12 03:15:40 +00003902 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003903 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003904 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003905 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003906 // FIXME: not all declaration name kinds are legal here
3907 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3908 UsingLoc, TypenameLoc,
3909 SS.getRange(), NNS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003910 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00003911 } else {
3912 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003913 UsingLoc, SS.getRange(),
3914 NNS, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00003915 }
John McCallb96ec562009-12-04 22:46:56 +00003916 } else {
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003917 D = UsingDecl::Create(Context, CurContext,
3918 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00003919 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003920 }
John McCallb96ec562009-12-04 22:46:56 +00003921 D->setAccess(AS);
3922 CurContext->addDecl(D);
3923
3924 if (!LookupContext) return D;
3925 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003926
John McCall0b66eb32010-05-01 00:40:08 +00003927 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003928 UD->setInvalidDecl();
3929 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003930 }
3931
John McCall3969e302009-12-08 07:46:18 +00003932 // Look up the target name.
3933
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003934 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003935
John McCall3969e302009-12-08 07:46:18 +00003936 // Unlike most lookups, we don't always want to hide tag
3937 // declarations: tag names are visible through the using declaration
3938 // even if hidden by ordinary names, *except* in a dependent context
3939 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003940 if (!IsInstantiation)
3941 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003942
John McCall27b18f82009-11-17 02:14:36 +00003943 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003944
John McCall9f3059a2009-10-09 21:13:30 +00003945 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003946 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003947 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003948 UD->setInvalidDecl();
3949 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003950 }
3951
John McCallb96ec562009-12-04 22:46:56 +00003952 if (R.isAmbiguous()) {
3953 UD->setInvalidDecl();
3954 return UD;
3955 }
Mike Stump11289f42009-09-09 15:08:12 +00003956
John McCalle61f2ba2009-11-18 02:36:19 +00003957 if (IsTypeName) {
3958 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003959 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003960 Diag(IdentLoc, diag::err_using_typename_non_type);
3961 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3962 Diag((*I)->getUnderlyingDecl()->getLocation(),
3963 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003964 UD->setInvalidDecl();
3965 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003966 }
3967 } else {
3968 // If we asked for a non-typename and we got a type, error out,
3969 // but only if this is an instantiation of an unresolved using
3970 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003971 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003972 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3973 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003974 UD->setInvalidDecl();
3975 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003976 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003977 }
3978
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003979 // C++0x N2914 [namespace.udecl]p6:
3980 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003981 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003982 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3983 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003984 UD->setInvalidDecl();
3985 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003986 }
Mike Stump11289f42009-09-09 15:08:12 +00003987
John McCall84d87672009-12-10 09:41:52 +00003988 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3989 if (!CheckUsingShadowDecl(UD, *I, Previous))
3990 BuildUsingShadowDecl(S, UD, *I);
3991 }
John McCall3f746822009-11-17 05:59:44 +00003992
3993 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003994}
3995
John McCall84d87672009-12-10 09:41:52 +00003996/// Checks that the given using declaration is not an invalid
3997/// redeclaration. Note that this is checking only for the using decl
3998/// itself, not for any ill-formedness among the UsingShadowDecls.
3999bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4000 bool isTypeName,
4001 const CXXScopeSpec &SS,
4002 SourceLocation NameLoc,
4003 const LookupResult &Prev) {
4004 // C++03 [namespace.udecl]p8:
4005 // C++0x [namespace.udecl]p10:
4006 // A using-declaration is a declaration and can therefore be used
4007 // repeatedly where (and only where) multiple declarations are
4008 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00004009 //
4010 // That's in non-member contexts.
4011 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00004012 return false;
4013
4014 NestedNameSpecifier *Qual
4015 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
4016
4017 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
4018 NamedDecl *D = *I;
4019
4020 bool DTypename;
4021 NestedNameSpecifier *DQual;
4022 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
4023 DTypename = UD->isTypeName();
4024 DQual = UD->getTargetNestedNameDecl();
4025 } else if (UnresolvedUsingValueDecl *UD
4026 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
4027 DTypename = false;
4028 DQual = UD->getTargetNestedNameSpecifier();
4029 } else if (UnresolvedUsingTypenameDecl *UD
4030 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4031 DTypename = true;
4032 DQual = UD->getTargetNestedNameSpecifier();
4033 } else continue;
4034
4035 // using decls differ if one says 'typename' and the other doesn't.
4036 // FIXME: non-dependent using decls?
4037 if (isTypeName != DTypename) continue;
4038
4039 // using decls differ if they name different scopes (but note that
4040 // template instantiation can cause this check to trigger when it
4041 // didn't before instantiation).
4042 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
4043 Context.getCanonicalNestedNameSpecifier(DQual))
4044 continue;
4045
4046 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00004047 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00004048 return true;
4049 }
4050
4051 return false;
4052}
4053
John McCall3969e302009-12-08 07:46:18 +00004054
John McCallb96ec562009-12-04 22:46:56 +00004055/// Checks that the given nested-name qualifier used in a using decl
4056/// in the current context is appropriately related to the current
4057/// scope. If an error is found, diagnoses it and returns true.
4058bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4059 const CXXScopeSpec &SS,
4060 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00004061 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00004062
John McCall3969e302009-12-08 07:46:18 +00004063 if (!CurContext->isRecord()) {
4064 // C++03 [namespace.udecl]p3:
4065 // C++0x [namespace.udecl]p8:
4066 // A using-declaration for a class member shall be a member-declaration.
4067
4068 // If we weren't able to compute a valid scope, it must be a
4069 // dependent class scope.
4070 if (!NamedContext || NamedContext->isRecord()) {
4071 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4072 << SS.getRange();
4073 return true;
4074 }
4075
4076 // Otherwise, everything is known to be fine.
4077 return false;
4078 }
4079
4080 // The current scope is a record.
4081
4082 // If the named context is dependent, we can't decide much.
4083 if (!NamedContext) {
4084 // FIXME: in C++0x, we can diagnose if we can prove that the
4085 // nested-name-specifier does not refer to a base class, which is
4086 // still possible in some cases.
4087
4088 // Otherwise we have to conservatively report that things might be
4089 // okay.
4090 return false;
4091 }
4092
4093 if (!NamedContext->isRecord()) {
4094 // Ideally this would point at the last name in the specifier,
4095 // but we don't have that level of source info.
4096 Diag(SS.getRange().getBegin(),
4097 diag::err_using_decl_nested_name_specifier_is_not_class)
4098 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4099 return true;
4100 }
4101
4102 if (getLangOptions().CPlusPlus0x) {
4103 // C++0x [namespace.udecl]p3:
4104 // In a using-declaration used as a member-declaration, the
4105 // nested-name-specifier shall name a base class of the class
4106 // being defined.
4107
4108 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4109 cast<CXXRecordDecl>(NamedContext))) {
4110 if (CurContext == NamedContext) {
4111 Diag(NameLoc,
4112 diag::err_using_decl_nested_name_specifier_is_current_class)
4113 << SS.getRange();
4114 return true;
4115 }
4116
4117 Diag(SS.getRange().getBegin(),
4118 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4119 << (NestedNameSpecifier*) SS.getScopeRep()
4120 << cast<CXXRecordDecl>(CurContext)
4121 << SS.getRange();
4122 return true;
4123 }
4124
4125 return false;
4126 }
4127
4128 // C++03 [namespace.udecl]p4:
4129 // A using-declaration used as a member-declaration shall refer
4130 // to a member of a base class of the class being defined [etc.].
4131
4132 // Salient point: SS doesn't have to name a base class as long as
4133 // lookup only finds members from base classes. Therefore we can
4134 // diagnose here only if we can prove that that can't happen,
4135 // i.e. if the class hierarchies provably don't intersect.
4136
4137 // TODO: it would be nice if "definitely valid" results were cached
4138 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4139 // need to be repeated.
4140
4141 struct UserData {
4142 llvm::DenseSet<const CXXRecordDecl*> Bases;
4143
4144 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4145 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4146 Data->Bases.insert(Base);
4147 return true;
4148 }
4149
4150 bool hasDependentBases(const CXXRecordDecl *Class) {
4151 return !Class->forallBases(collect, this);
4152 }
4153
4154 /// Returns true if the base is dependent or is one of the
4155 /// accumulated base classes.
4156 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4157 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4158 return !Data->Bases.count(Base);
4159 }
4160
4161 bool mightShareBases(const CXXRecordDecl *Class) {
4162 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4163 }
4164 };
4165
4166 UserData Data;
4167
4168 // Returns false if we find a dependent base.
4169 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4170 return false;
4171
4172 // Returns false if the class has a dependent base or if it or one
4173 // of its bases is present in the base set of the current context.
4174 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4175 return false;
4176
4177 Diag(SS.getRange().getBegin(),
4178 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4179 << (NestedNameSpecifier*) SS.getScopeRep()
4180 << cast<CXXRecordDecl>(CurContext)
4181 << SS.getRange();
4182
4183 return true;
John McCallb96ec562009-12-04 22:46:56 +00004184}
4185
John McCall48871652010-08-21 09:40:31 +00004186Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004187 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004188 SourceLocation AliasLoc,
4189 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004190 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004191 SourceLocation IdentLoc,
4192 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004193
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004194 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004195 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4196 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004197
Anders Carlssondca83c42009-03-28 06:23:46 +00004198 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004199 NamedDecl *PrevDecl
4200 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4201 ForRedeclaration);
4202 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4203 PrevDecl = 0;
4204
4205 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004206 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004207 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004208 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004209 // FIXME: At some point, we'll want to create the (redundant)
4210 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004211 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004212 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCall48871652010-08-21 09:40:31 +00004213 return 0;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004214 }
Mike Stump11289f42009-09-09 15:08:12 +00004215
Anders Carlssondca83c42009-03-28 06:23:46 +00004216 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4217 diag::err_redefinition_different_kind;
4218 Diag(AliasLoc, DiagID) << Alias;
4219 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCall48871652010-08-21 09:40:31 +00004220 return 0;
Anders Carlssondca83c42009-03-28 06:23:46 +00004221 }
4222
John McCall27b18f82009-11-17 02:14:36 +00004223 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00004224 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00004225
John McCall9f3059a2009-10-09 21:13:30 +00004226 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004227 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4228 CTC_NoKeywords, 0)) {
4229 if (R.getAsSingle<NamespaceDecl>() ||
4230 R.getAsSingle<NamespaceAliasDecl>()) {
4231 if (DeclContext *DC = computeDeclContext(SS, false))
4232 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4233 << Ident << DC << Corrected << SS.getRange()
4234 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4235 else
4236 Diag(IdentLoc, diag::err_using_directive_suggest)
4237 << Ident << Corrected
4238 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4239
4240 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4241 << Corrected;
4242
4243 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004244 } else {
4245 R.clear();
4246 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004247 }
4248 }
4249
4250 if (R.empty()) {
4251 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004252 return 0;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004253 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004254 }
Mike Stump11289f42009-09-09 15:08:12 +00004255
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004256 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004257 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4258 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004259 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004260 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004261
John McCalld8d0d432010-02-16 06:53:13 +00004262 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00004263 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00004264}
4265
Douglas Gregora57478e2010-05-01 15:04:51 +00004266namespace {
4267 /// \brief Scoped object used to handle the state changes required in Sema
4268 /// to implicitly define the body of a C++ member function;
4269 class ImplicitlyDefinedFunctionScope {
4270 Sema &S;
4271 DeclContext *PreviousContext;
4272
4273 public:
4274 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4275 : S(S), PreviousContext(S.CurContext)
4276 {
4277 S.CurContext = Method;
4278 S.PushFunctionScope();
4279 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4280 }
4281
4282 ~ImplicitlyDefinedFunctionScope() {
4283 S.PopExpressionEvaluationContext();
4284 S.PopFunctionOrBlockScope();
4285 S.CurContext = PreviousContext;
4286 }
4287 };
4288}
4289
Douglas Gregor0be31a22010-07-02 17:43:08 +00004290CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4291 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004292 // C++ [class.ctor]p5:
4293 // A default constructor for a class X is a constructor of class X
4294 // that can be called without an argument. If there is no
4295 // user-declared constructor for class X, a default constructor is
4296 // implicitly declared. An implicitly-declared default constructor
4297 // is an inline public member of its class.
Douglas Gregor9672f922010-07-03 00:47:00 +00004298 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4299 "Should not build implicit default constructor!");
4300
Douglas Gregor6d880b12010-07-01 22:31:05 +00004301 // C++ [except.spec]p14:
4302 // An implicitly declared special member function (Clause 12) shall have an
4303 // exception-specification. [...]
4304 ImplicitExceptionSpecification ExceptSpec(Context);
4305
4306 // Direct base-class destructors.
4307 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4308 BEnd = ClassDecl->bases_end();
4309 B != BEnd; ++B) {
4310 if (B->isVirtual()) // Handled below.
4311 continue;
4312
Douglas Gregor9672f922010-07-03 00:47:00 +00004313 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4314 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4315 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4316 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4317 else if (CXXConstructorDecl *Constructor
4318 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004319 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004320 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004321 }
4322
4323 // Virtual base-class destructors.
4324 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4325 BEnd = ClassDecl->vbases_end();
4326 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00004327 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4328 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4329 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4330 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4331 else if (CXXConstructorDecl *Constructor
4332 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004333 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004334 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004335 }
4336
4337 // Field destructors.
4338 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4339 FEnd = ClassDecl->field_end();
4340 F != FEnd; ++F) {
4341 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00004342 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4343 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4344 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4345 ExceptSpec.CalledDecl(
4346 DeclareImplicitDefaultConstructor(FieldClassDecl));
4347 else if (CXXConstructorDecl *Constructor
4348 = FieldClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004349 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004350 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004351 }
4352
4353
4354 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004355 CanQualType ClassType
4356 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4357 DeclarationName Name
4358 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004359 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004360 CXXConstructorDecl *DefaultCon
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004361 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004362 Context.getFunctionType(Context.VoidTy,
4363 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004364 ExceptSpec.hasExceptionSpecification(),
4365 ExceptSpec.hasAnyExceptionSpecification(),
4366 ExceptSpec.size(),
4367 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004368 FunctionType::ExtInfo()),
4369 /*TInfo=*/0,
4370 /*isExplicit=*/false,
4371 /*isInline=*/true,
4372 /*isImplicitlyDeclared=*/true);
4373 DefaultCon->setAccess(AS_public);
4374 DefaultCon->setImplicit();
4375 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00004376
4377 // Note that we have declared this constructor.
4378 ClassDecl->setDeclaredDefaultConstructor(true);
4379 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4380
Douglas Gregor0be31a22010-07-02 17:43:08 +00004381 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00004382 PushOnScopeChains(DefaultCon, S, false);
4383 ClassDecl->addDecl(DefaultCon);
4384
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004385 return DefaultCon;
4386}
4387
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004388void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4389 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004390 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004391 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004392 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004393
Anders Carlsson423f5d82010-04-23 16:04:08 +00004394 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004395 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004396
Douglas Gregora57478e2010-05-01 15:04:51 +00004397 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004398 ErrorTrap Trap(*this);
4399 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4400 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004401 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004402 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004403 Constructor->setInvalidDecl();
4404 } else {
4405 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004406 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004407 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004408}
4409
Douglas Gregor0be31a22010-07-02 17:43:08 +00004410CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004411 // C++ [class.dtor]p2:
4412 // If a class has no user-declared destructor, a destructor is
4413 // declared implicitly. An implicitly-declared destructor is an
4414 // inline public member of its class.
4415
4416 // C++ [except.spec]p14:
4417 // An implicitly declared special member function (Clause 12) shall have
4418 // an exception-specification.
4419 ImplicitExceptionSpecification ExceptSpec(Context);
4420
4421 // Direct base-class destructors.
4422 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4423 BEnd = ClassDecl->bases_end();
4424 B != BEnd; ++B) {
4425 if (B->isVirtual()) // Handled below.
4426 continue;
4427
4428 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4429 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004430 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004431 }
4432
4433 // Virtual base-class destructors.
4434 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4435 BEnd = ClassDecl->vbases_end();
4436 B != BEnd; ++B) {
4437 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4438 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004439 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004440 }
4441
4442 // Field destructors.
4443 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4444 FEnd = ClassDecl->field_end();
4445 F != FEnd; ++F) {
4446 if (const RecordType *RecordTy
4447 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4448 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004449 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004450 }
4451
Douglas Gregor7454c562010-07-02 20:37:36 +00004452 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00004453 QualType Ty = Context.getFunctionType(Context.VoidTy,
4454 0, 0, false, 0,
4455 ExceptSpec.hasExceptionSpecification(),
4456 ExceptSpec.hasAnyExceptionSpecification(),
4457 ExceptSpec.size(),
4458 ExceptSpec.data(),
4459 FunctionType::ExtInfo());
4460
4461 CanQualType ClassType
4462 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4463 DeclarationName Name
4464 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004465 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf1203042010-07-01 19:09:28 +00004466 CXXDestructorDecl *Destructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004467 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty,
Douglas Gregorf1203042010-07-01 19:09:28 +00004468 /*isInline=*/true,
4469 /*isImplicitlyDeclared=*/true);
4470 Destructor->setAccess(AS_public);
4471 Destructor->setImplicit();
4472 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00004473
4474 // Note that we have declared this destructor.
4475 ClassDecl->setDeclaredDestructor(true);
4476 ++ASTContext::NumImplicitDestructorsDeclared;
4477
4478 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004479 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00004480 PushOnScopeChains(Destructor, S, false);
4481 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00004482
4483 // This could be uniqued if it ever proves significant.
4484 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4485
4486 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00004487
Douglas Gregorf1203042010-07-01 19:09:28 +00004488 return Destructor;
4489}
4490
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004491void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004492 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004493 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004494 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004495 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004496 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004497
Douglas Gregor54818f02010-05-12 16:39:35 +00004498 if (Destructor->isInvalidDecl())
4499 return;
4500
Douglas Gregora57478e2010-05-01 15:04:51 +00004501 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004502
Douglas Gregor54818f02010-05-12 16:39:35 +00004503 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004504 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4505 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004506
Douglas Gregor54818f02010-05-12 16:39:35 +00004507 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004508 Diag(CurrentLocation, diag::note_member_synthesized_at)
4509 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4510
4511 Destructor->setInvalidDecl();
4512 return;
4513 }
4514
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004515 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004516 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004517}
4518
Douglas Gregorb139cd52010-05-01 20:49:11 +00004519/// \brief Builds a statement that copies the given entity from \p From to
4520/// \c To.
4521///
4522/// This routine is used to copy the members of a class with an
4523/// implicitly-declared copy assignment operator. When the entities being
4524/// copied are arrays, this routine builds for loops to copy them.
4525///
4526/// \param S The Sema object used for type-checking.
4527///
4528/// \param Loc The location where the implicit copy is being generated.
4529///
4530/// \param T The type of the expressions being copied. Both expressions must
4531/// have this type.
4532///
4533/// \param To The expression we are copying to.
4534///
4535/// \param From The expression we are copying from.
4536///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004537/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4538/// Otherwise, it's a non-static member subobject.
4539///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004540/// \param Depth Internal parameter recording the depth of the recursion.
4541///
4542/// \returns A statement or a loop that copies the expressions.
John McCallb268a282010-08-23 23:25:46 +00004543static OwningStmtResult
Douglas Gregorb139cd52010-05-01 20:49:11 +00004544BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCallb268a282010-08-23 23:25:46 +00004545 Expr *To, Expr *From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004546 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004547 // C++0x [class.copy]p30:
4548 // Each subobject is assigned in the manner appropriate to its type:
4549 //
4550 // - if the subobject is of class type, the copy assignment operator
4551 // for the class is used (as if by explicit qualification; that is,
4552 // ignoring any possible virtual overriding functions in more derived
4553 // classes);
4554 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4555 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4556
4557 // Look for operator=.
4558 DeclarationName Name
4559 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4560 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4561 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4562
4563 // Filter out any result that isn't a copy-assignment operator.
4564 LookupResult::Filter F = OpLookup.makeFilter();
4565 while (F.hasNext()) {
4566 NamedDecl *D = F.next();
4567 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4568 if (Method->isCopyAssignmentOperator())
4569 continue;
4570
4571 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004572 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004573 F.done();
4574
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004575 // Suppress the protected check (C++ [class.protected]) for each of the
4576 // assignment operators we found. This strange dance is required when
4577 // we're assigning via a base classes's copy-assignment operator. To
4578 // ensure that we're getting the right base class subobject (without
4579 // ambiguities), we need to cast "this" to that subobject type; to
4580 // ensure that we don't go through the virtual call mechanism, we need
4581 // to qualify the operator= name with the base class (see below). However,
4582 // this means that if the base class has a protected copy assignment
4583 // operator, the protected member access check will fail. So, we
4584 // rewrite "protected" access to "public" access in this case, since we
4585 // know by construction that we're calling from a derived class.
4586 if (CopyingBaseSubobject) {
4587 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4588 L != LEnd; ++L) {
4589 if (L.getAccess() == AS_protected)
4590 L.setAccess(AS_public);
4591 }
4592 }
4593
Douglas Gregorb139cd52010-05-01 20:49:11 +00004594 // Create the nested-name-specifier that will be used to qualify the
4595 // reference to operator=; this is required to suppress the virtual
4596 // call mechanism.
4597 CXXScopeSpec SS;
4598 SS.setRange(Loc);
4599 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4600 T.getTypePtr()));
4601
4602 // Create the reference to operator=.
4603 OwningExprResult OpEqualRef
John McCallb268a282010-08-23 23:25:46 +00004604 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004605 /*FirstQualifierInScope=*/0, OpLookup,
4606 /*TemplateArgs=*/0,
4607 /*SuppressQualifierCheck=*/true);
4608 if (OpEqualRef.isInvalid())
4609 return S.StmtError();
4610
4611 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00004612
Douglas Gregorb139cd52010-05-01 20:49:11 +00004613 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4614 OpEqualRef.takeAs<Expr>(),
John McCallb268a282010-08-23 23:25:46 +00004615 Loc, &From, 1, 0, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004616 if (Call.isInvalid())
4617 return S.StmtError();
4618
4619 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004620 }
John McCallab8c2732010-03-16 06:11:48 +00004621
Douglas Gregorb139cd52010-05-01 20:49:11 +00004622 // - if the subobject is of scalar type, the built-in assignment
4623 // operator is used.
4624 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4625 if (!ArrayTy) {
John McCallb268a282010-08-23 23:25:46 +00004626 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004627 BinaryOperator::Assign,
John McCallb268a282010-08-23 23:25:46 +00004628 To,
4629 From);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004630 if (Assignment.isInvalid())
4631 return S.StmtError();
4632
4633 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004634 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004635
4636 // - if the subobject is an array, each element is assigned, in the
4637 // manner appropriate to the element type;
4638
4639 // Construct a loop over the array bounds, e.g.,
4640 //
4641 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4642 //
4643 // that will copy each of the array elements.
4644 QualType SizeType = S.Context.getSizeType();
4645
4646 // Create the iteration variable.
4647 IdentifierInfo *IterationVarName = 0;
4648 {
4649 llvm::SmallString<8> Str;
4650 llvm::raw_svector_ostream OS(Str);
4651 OS << "__i" << Depth;
4652 IterationVarName = &S.Context.Idents.get(OS.str());
4653 }
4654 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4655 IterationVarName, SizeType,
4656 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4657 VarDecl::None, VarDecl::None);
4658
4659 // Initialize the iteration variable to zero.
4660 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4661 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4662
4663 // Create a reference to the iteration variable; we'll use this several
4664 // times throughout.
4665 Expr *IterationVarRef
4666 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4667 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4668
4669 // Create the DeclStmt that holds the iteration variable.
4670 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4671
4672 // Create the comparison against the array bound.
4673 llvm::APInt Upper = ArrayTy->getSize();
4674 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCallb268a282010-08-23 23:25:46 +00004675 Expr *Comparison
4676 = new (S.Context) BinaryOperator(IterationVarRef->Retain(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00004677 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
John McCallb268a282010-08-23 23:25:46 +00004678 BinaryOperator::NE, S.Context.BoolTy, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004679
4680 // Create the pre-increment of the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004681 Expr *Increment
4682 = new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4683 UnaryOperator::PreInc,
4684 SizeType, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004685
4686 // Subscript the "from" and "to" expressions with the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00004687 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
4688 IterationVarRef, Loc));
4689 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
4690 IterationVarRef, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00004691
4692 // Build the copy for an individual element of the array.
4693 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4694 ArrayTy->getElementType(),
John McCallb268a282010-08-23 23:25:46 +00004695 To, From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004696 CopyingBaseSubobject, Depth+1);
Douglas Gregorb412e172010-07-25 18:17:45 +00004697 if (Copy.isInvalid())
Douglas Gregorb139cd52010-05-01 20:49:11 +00004698 return S.StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004699
4700 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00004701 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00004702 S.MakeFullExpr(Comparison),
John McCall48871652010-08-21 09:40:31 +00004703 0, S.MakeFullExpr(Increment),
John McCallb268a282010-08-23 23:25:46 +00004704 Loc, Copy.take());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004705}
4706
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004707/// \brief Determine whether the given class has a copy assignment operator
4708/// that accepts a const-qualified argument.
4709static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4710 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4711
4712 if (!Class->hasDeclaredCopyAssignment())
4713 S.DeclareImplicitCopyAssignment(Class);
4714
4715 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4716 DeclarationName OpName
4717 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4718
4719 DeclContext::lookup_const_iterator Op, OpEnd;
4720 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4721 // C++ [class.copy]p9:
4722 // A user-declared copy assignment operator is a non-static non-template
4723 // member function of class X with exactly one parameter of type X, X&,
4724 // const X&, volatile X& or const volatile X&.
4725 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4726 if (!Method)
4727 continue;
4728
4729 if (Method->isStatic())
4730 continue;
4731 if (Method->getPrimaryTemplate())
4732 continue;
4733 const FunctionProtoType *FnType =
4734 Method->getType()->getAs<FunctionProtoType>();
4735 assert(FnType && "Overloaded operator has no prototype.");
4736 // Don't assert on this; an invalid decl might have been left in the AST.
4737 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4738 continue;
4739 bool AcceptsConst = true;
4740 QualType ArgType = FnType->getArgType(0);
4741 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4742 ArgType = Ref->getPointeeType();
4743 // Is it a non-const lvalue reference?
4744 if (!ArgType.isConstQualified())
4745 AcceptsConst = false;
4746 }
4747 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4748 continue;
4749
4750 // We have a single argument of type cv X or cv X&, i.e. we've found the
4751 // copy assignment operator. Return whether it accepts const arguments.
4752 return AcceptsConst;
4753 }
4754 assert(Class->isInvalidDecl() &&
4755 "No copy assignment operator declared in valid code.");
4756 return false;
4757}
4758
Douglas Gregor0be31a22010-07-02 17:43:08 +00004759CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004760 // Note: The following rules are largely analoguous to the copy
4761 // constructor rules. Note that virtual bases are not taken into account
4762 // for determining the argument type of the operator. Note also that
4763 // operators taking an object instead of a reference are allowed.
Douglas Gregor9672f922010-07-03 00:47:00 +00004764
4765
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004766 // C++ [class.copy]p10:
4767 // If the class definition does not explicitly declare a copy
4768 // assignment operator, one is declared implicitly.
4769 // The implicitly-defined copy assignment operator for a class X
4770 // will have the form
4771 //
4772 // X& X::operator=(const X&)
4773 //
4774 // if
4775 bool HasConstCopyAssignment = true;
4776
4777 // -- each direct base class B of X has a copy assignment operator
4778 // whose parameter is of type const B&, const volatile B& or B,
4779 // and
4780 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4781 BaseEnd = ClassDecl->bases_end();
4782 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4783 assert(!Base->getType()->isDependentType() &&
4784 "Cannot generate implicit members for class with dependent bases.");
4785 const CXXRecordDecl *BaseClassDecl
4786 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004787 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004788 }
4789
4790 // -- for all the nonstatic data members of X that are of a class
4791 // type M (or array thereof), each such class type has a copy
4792 // assignment operator whose parameter is of type const M&,
4793 // const volatile M& or M.
4794 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4795 FieldEnd = ClassDecl->field_end();
4796 HasConstCopyAssignment && Field != FieldEnd;
4797 ++Field) {
4798 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4799 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4800 const CXXRecordDecl *FieldClassDecl
4801 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004802 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004803 }
4804 }
4805
4806 // Otherwise, the implicitly declared copy assignment operator will
4807 // have the form
4808 //
4809 // X& X::operator=(X&)
4810 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4811 QualType RetType = Context.getLValueReferenceType(ArgType);
4812 if (HasConstCopyAssignment)
4813 ArgType = ArgType.withConst();
4814 ArgType = Context.getLValueReferenceType(ArgType);
4815
Douglas Gregor68e11362010-07-01 17:48:08 +00004816 // C++ [except.spec]p14:
4817 // An implicitly declared special member function (Clause 12) shall have an
4818 // exception-specification. [...]
4819 ImplicitExceptionSpecification ExceptSpec(Context);
4820 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4821 BaseEnd = ClassDecl->bases_end();
4822 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004823 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004824 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004825
4826 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4827 DeclareImplicitCopyAssignment(BaseClassDecl);
4828
Douglas Gregor68e11362010-07-01 17:48:08 +00004829 if (CXXMethodDecl *CopyAssign
4830 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4831 ExceptSpec.CalledDecl(CopyAssign);
4832 }
4833 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4834 FieldEnd = ClassDecl->field_end();
4835 Field != FieldEnd;
4836 ++Field) {
4837 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4838 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004839 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004840 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004841
4842 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4843 DeclareImplicitCopyAssignment(FieldClassDecl);
4844
Douglas Gregor68e11362010-07-01 17:48:08 +00004845 if (CXXMethodDecl *CopyAssign
4846 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4847 ExceptSpec.CalledDecl(CopyAssign);
4848 }
4849 }
4850
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004851 // An implicitly-declared copy assignment operator is an inline public
4852 // member of its class.
4853 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004854 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004855 CXXMethodDecl *CopyAssignment
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004856 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004857 Context.getFunctionType(RetType, &ArgType, 1,
4858 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004859 ExceptSpec.hasExceptionSpecification(),
4860 ExceptSpec.hasAnyExceptionSpecification(),
4861 ExceptSpec.size(),
4862 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004863 FunctionType::ExtInfo()),
4864 /*TInfo=*/0, /*isStatic=*/false,
4865 /*StorageClassAsWritten=*/FunctionDecl::None,
4866 /*isInline=*/true);
4867 CopyAssignment->setAccess(AS_public);
4868 CopyAssignment->setImplicit();
4869 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4870 CopyAssignment->setCopyAssignment(true);
4871
4872 // Add the parameter to the operator.
4873 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4874 ClassDecl->getLocation(),
4875 /*Id=*/0,
4876 ArgType, /*TInfo=*/0,
4877 VarDecl::None,
4878 VarDecl::None, 0);
4879 CopyAssignment->setParams(&FromParam, 1);
4880
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004881 // Note that we have added this copy-assignment operator.
4882 ClassDecl->setDeclaredCopyAssignment(true);
4883 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4884
Douglas Gregor0be31a22010-07-02 17:43:08 +00004885 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004886 PushOnScopeChains(CopyAssignment, S, false);
4887 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004888
4889 AddOverriddenMethods(ClassDecl, CopyAssignment);
4890 return CopyAssignment;
4891}
4892
Douglas Gregorb139cd52010-05-01 20:49:11 +00004893void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4894 CXXMethodDecl *CopyAssignOperator) {
4895 assert((CopyAssignOperator->isImplicit() &&
4896 CopyAssignOperator->isOverloadedOperator() &&
4897 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004898 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004899 "DefineImplicitCopyAssignment called for wrong function");
4900
4901 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4902
4903 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4904 CopyAssignOperator->setInvalidDecl();
4905 return;
4906 }
4907
4908 CopyAssignOperator->setUsed();
4909
4910 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004911 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004912
4913 // C++0x [class.copy]p30:
4914 // The implicitly-defined or explicitly-defaulted copy assignment operator
4915 // for a non-union class X performs memberwise copy assignment of its
4916 // subobjects. The direct base classes of X are assigned first, in the
4917 // order of their declaration in the base-specifier-list, and then the
4918 // immediate non-static data members of X are assigned, in the order in
4919 // which they were declared in the class definition.
4920
4921 // The statements that form the synthesized function body.
John McCall37ad5512010-08-23 06:44:23 +00004922 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004923
4924 // The parameter for the "other" object, which we are copying from.
4925 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4926 Qualifiers OtherQuals = Other->getType().getQualifiers();
4927 QualType OtherRefType = Other->getType();
4928 if (const LValueReferenceType *OtherRef
4929 = OtherRefType->getAs<LValueReferenceType>()) {
4930 OtherRefType = OtherRef->getPointeeType();
4931 OtherQuals = OtherRefType.getQualifiers();
4932 }
4933
4934 // Our location for everything implicitly-generated.
4935 SourceLocation Loc = CopyAssignOperator->getLocation();
4936
4937 // Construct a reference to the "other" object. We'll be using this
4938 // throughout the generated ASTs.
4939 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4940 assert(OtherRef && "Reference to parameter cannot fail!");
4941
4942 // Construct the "this" pointer. We'll be using this throughout the generated
4943 // ASTs.
4944 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4945 assert(This && "Reference to this cannot fail!");
4946
4947 // Assign base classes.
4948 bool Invalid = false;
4949 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4950 E = ClassDecl->bases_end(); Base != E; ++Base) {
4951 // Form the assignment:
4952 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4953 QualType BaseType = Base->getType().getUnqualifiedType();
4954 CXXRecordDecl *BaseClassDecl = 0;
4955 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4956 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4957 else {
4958 Invalid = true;
4959 continue;
4960 }
4961
John McCallcf142162010-08-07 06:22:56 +00004962 CXXCastPath BasePath;
4963 BasePath.push_back(Base);
4964
Douglas Gregorb139cd52010-05-01 20:49:11 +00004965 // Construct the "from" expression, which is an implicit cast to the
4966 // appropriately-qualified base type.
4967 Expr *From = OtherRef->Retain();
4968 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
Sebastian Redlc57d34b2010-07-20 04:20:21 +00004969 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00004970 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004971
4972 // Dereference "this".
John McCallb268a282010-08-23 23:25:46 +00004973 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004974
4975 // Implicitly cast "this" to the appropriately-qualified base type.
4976 Expr *ToE = To.takeAs<Expr>();
4977 ImpCastExprToType(ToE,
4978 Context.getCVRQualifiedType(BaseType,
4979 CopyAssignOperator->getTypeQualifiers()),
4980 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00004981 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004982 To = Owned(ToE);
4983
4984 // Build the copy.
4985 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCallb268a282010-08-23 23:25:46 +00004986 To.get(), From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004987 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004988 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004989 Diag(CurrentLocation, diag::note_member_synthesized_at)
4990 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4991 CopyAssignOperator->setInvalidDecl();
4992 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004993 }
4994
4995 // Success! Record the copy.
4996 Statements.push_back(Copy.takeAs<Expr>());
4997 }
4998
4999 // \brief Reference to the __builtin_memcpy function.
5000 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005001 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005002 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005003
5004 // Assign non-static members.
5005 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5006 FieldEnd = ClassDecl->field_end();
5007 Field != FieldEnd; ++Field) {
5008 // Check for members of reference type; we can't copy those.
5009 if (Field->getType()->isReferenceType()) {
5010 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5011 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
5012 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005013 Diag(CurrentLocation, diag::note_member_synthesized_at)
5014 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005015 Invalid = true;
5016 continue;
5017 }
5018
5019 // Check for members of const-qualified, non-class type.
5020 QualType BaseType = Context.getBaseElementType(Field->getType());
5021 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
5022 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
5023 << Context.getTagDeclType(ClassDecl) << 1 << 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 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00005032 if (FieldType->isIncompleteArrayType()) {
5033 assert(ClassDecl->hasFlexibleArrayMember() &&
5034 "Incomplete array type is not valid");
5035 continue;
5036 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005037
5038 // Build references to the field in the object we're copying from and to.
5039 CXXScopeSpec SS; // Intentionally empty
5040 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
5041 LookupMemberName);
5042 MemberLookup.addDecl(*Field);
5043 MemberLookup.resolveKind();
John McCallb268a282010-08-23 23:25:46 +00005044 OwningExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
Douglas Gregorb139cd52010-05-01 20:49:11 +00005045 Loc, /*IsArrow=*/false,
5046 SS, 0, MemberLookup, 0);
John McCallb268a282010-08-23 23:25:46 +00005047 OwningExprResult To = BuildMemberReferenceExpr(This, This->getType(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00005048 Loc, /*IsArrow=*/true,
5049 SS, 0, MemberLookup, 0);
5050 assert(!From.isInvalid() && "Implicit field reference cannot fail");
5051 assert(!To.isInvalid() && "Implicit field reference cannot fail");
5052
5053 // If the field should be copied with __builtin_memcpy rather than via
5054 // explicit assignments, do so. This optimization only applies for arrays
5055 // of scalars and arrays of class type with trivial copy-assignment
5056 // operators.
5057 if (FieldType->isArrayType() &&
5058 (!BaseType->isRecordType() ||
5059 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
5060 ->hasTrivialCopyAssignment())) {
5061 // Compute the size of the memory buffer to be copied.
5062 QualType SizeType = Context.getSizeType();
5063 llvm::APInt Size(Context.getTypeSize(SizeType),
5064 Context.getTypeSizeInChars(BaseType).getQuantity());
5065 for (const ConstantArrayType *Array
5066 = Context.getAsConstantArrayType(FieldType);
5067 Array;
5068 Array = Context.getAsConstantArrayType(Array->getElementType())) {
5069 llvm::APInt ArraySize = Array->getSize();
5070 ArraySize.zextOrTrunc(Size.getBitWidth());
5071 Size *= ArraySize;
5072 }
5073
5074 // Take the address of the field references for "from" and "to".
John McCallb268a282010-08-23 23:25:46 +00005075 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, From.get());
5076 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, To.get());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005077
5078 bool NeedsCollectableMemCpy =
5079 (BaseType->isRecordType() &&
5080 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
5081
5082 if (NeedsCollectableMemCpy) {
5083 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00005084 // Create a reference to the __builtin_objc_memmove_collectable function.
5085 LookupResult R(*this,
5086 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005087 Loc, LookupOrdinaryName);
5088 LookupName(R, TUScope, true);
5089
5090 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5091 if (!CollectableMemCpy) {
5092 // Something went horribly wrong earlier, and we will have
5093 // complained about it.
5094 Invalid = true;
5095 continue;
5096 }
5097
5098 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5099 CollectableMemCpy->getType(),
5100 Loc, 0).takeAs<Expr>();
5101 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5102 }
5103 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005104 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005105 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00005106 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5107 LookupOrdinaryName);
5108 LookupName(R, TUScope, true);
5109
5110 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5111 if (!BuiltinMemCpy) {
5112 // Something went horribly wrong earlier, and we will have complained
5113 // about it.
5114 Invalid = true;
5115 continue;
5116 }
5117
5118 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5119 BuiltinMemCpy->getType(),
5120 Loc, 0).takeAs<Expr>();
5121 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5122 }
5123
John McCall37ad5512010-08-23 06:44:23 +00005124 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005125 CallArgs.push_back(To.takeAs<Expr>());
5126 CallArgs.push_back(From.takeAs<Expr>());
5127 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5128 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5129 Commas.push_back(Loc);
5130 Commas.push_back(Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005131 OwningExprResult Call = ExprError();
5132 if (NeedsCollectableMemCpy)
5133 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005134 CollectableMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005135 Loc, move_arg(CallArgs),
5136 Commas.data(), Loc);
5137 else
5138 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00005139 BuiltinMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005140 Loc, move_arg(CallArgs),
5141 Commas.data(), Loc);
5142
Douglas Gregorb139cd52010-05-01 20:49:11 +00005143 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5144 Statements.push_back(Call.takeAs<Expr>());
5145 continue;
5146 }
5147
5148 // Build the copy of this field.
5149 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCallb268a282010-08-23 23:25:46 +00005150 To.get(), From.get(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00005151 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005152 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005153 Diag(CurrentLocation, diag::note_member_synthesized_at)
5154 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5155 CopyAssignOperator->setInvalidDecl();
5156 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005157 }
5158
5159 // Success! Record the copy.
5160 Statements.push_back(Copy.takeAs<Stmt>());
5161 }
5162
5163 if (!Invalid) {
5164 // Add a "return *this;"
5165 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
John McCallb268a282010-08-23 23:25:46 +00005166 This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005167
John McCallb268a282010-08-23 23:25:46 +00005168 OwningStmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00005169 if (Return.isInvalid())
5170 Invalid = true;
5171 else {
5172 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00005173
5174 if (Trap.hasErrorOccurred()) {
5175 Diag(CurrentLocation, diag::note_member_synthesized_at)
5176 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5177 Invalid = true;
5178 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005179 }
5180 }
5181
5182 if (Invalid) {
5183 CopyAssignOperator->setInvalidDecl();
5184 return;
5185 }
5186
5187 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5188 /*isStmtExpr=*/false);
5189 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5190 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00005191}
5192
Douglas Gregor0be31a22010-07-02 17:43:08 +00005193CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5194 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00005195 // C++ [class.copy]p4:
5196 // If the class definition does not explicitly declare a copy
5197 // constructor, one is declared implicitly.
5198
Douglas Gregor54be3392010-07-01 17:57:27 +00005199 // C++ [class.copy]p5:
5200 // The implicitly-declared copy constructor for a class X will
5201 // have the form
5202 //
5203 // X::X(const X&)
5204 //
5205 // if
5206 bool HasConstCopyConstructor = true;
5207
5208 // -- each direct or virtual base class B of X has a copy
5209 // constructor whose first parameter is of type const B& or
5210 // const volatile B&, and
5211 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5212 BaseEnd = ClassDecl->bases_end();
5213 HasConstCopyConstructor && Base != BaseEnd;
5214 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005215 // Virtual bases are handled below.
5216 if (Base->isVirtual())
5217 continue;
5218
Douglas Gregora6d69502010-07-02 23:41:54 +00005219 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005220 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005221 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5222 DeclareImplicitCopyConstructor(BaseClassDecl);
5223
Douglas Gregorcfe68222010-07-01 18:27:03 +00005224 HasConstCopyConstructor
5225 = BaseClassDecl->hasConstCopyConstructor(Context);
5226 }
5227
5228 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5229 BaseEnd = ClassDecl->vbases_end();
5230 HasConstCopyConstructor && Base != BaseEnd;
5231 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005232 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00005233 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005234 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5235 DeclareImplicitCopyConstructor(BaseClassDecl);
5236
Douglas Gregor54be3392010-07-01 17:57:27 +00005237 HasConstCopyConstructor
5238 = BaseClassDecl->hasConstCopyConstructor(Context);
5239 }
5240
5241 // -- for all the nonstatic data members of X that are of a
5242 // class type M (or array thereof), each such class type
5243 // has a copy constructor whose first parameter is of type
5244 // const M& or const volatile M&.
5245 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5246 FieldEnd = ClassDecl->field_end();
5247 HasConstCopyConstructor && Field != FieldEnd;
5248 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005249 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005250 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005251 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005252 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005253 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5254 DeclareImplicitCopyConstructor(FieldClassDecl);
5255
Douglas Gregor54be3392010-07-01 17:57:27 +00005256 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005257 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005258 }
5259 }
5260
5261 // Otherwise, the implicitly declared copy constructor will have
5262 // the form
5263 //
5264 // X::X(X&)
5265 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5266 QualType ArgType = ClassType;
5267 if (HasConstCopyConstructor)
5268 ArgType = ArgType.withConst();
5269 ArgType = Context.getLValueReferenceType(ArgType);
5270
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005271 // C++ [except.spec]p14:
5272 // An implicitly declared special member function (Clause 12) shall have an
5273 // exception-specification. [...]
5274 ImplicitExceptionSpecification ExceptSpec(Context);
5275 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5276 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5277 BaseEnd = ClassDecl->bases_end();
5278 Base != BaseEnd;
5279 ++Base) {
5280 // Virtual bases are handled below.
5281 if (Base->isVirtual())
5282 continue;
5283
Douglas Gregora6d69502010-07-02 23:41:54 +00005284 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005285 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005286 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5287 DeclareImplicitCopyConstructor(BaseClassDecl);
5288
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005289 if (CXXConstructorDecl *CopyConstructor
5290 = BaseClassDecl->getCopyConstructor(Context, Quals))
5291 ExceptSpec.CalledDecl(CopyConstructor);
5292 }
5293 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5294 BaseEnd = ClassDecl->vbases_end();
5295 Base != BaseEnd;
5296 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005297 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005298 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005299 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5300 DeclareImplicitCopyConstructor(BaseClassDecl);
5301
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005302 if (CXXConstructorDecl *CopyConstructor
5303 = BaseClassDecl->getCopyConstructor(Context, Quals))
5304 ExceptSpec.CalledDecl(CopyConstructor);
5305 }
5306 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5307 FieldEnd = ClassDecl->field_end();
5308 Field != FieldEnd;
5309 ++Field) {
5310 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5311 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005312 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005313 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005314 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5315 DeclareImplicitCopyConstructor(FieldClassDecl);
5316
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005317 if (CXXConstructorDecl *CopyConstructor
5318 = FieldClassDecl->getCopyConstructor(Context, Quals))
5319 ExceptSpec.CalledDecl(CopyConstructor);
5320 }
5321 }
5322
Douglas Gregor54be3392010-07-01 17:57:27 +00005323 // An implicitly-declared copy constructor is an inline public
5324 // member of its class.
5325 DeclarationName Name
5326 = Context.DeclarationNames.getCXXConstructorName(
5327 Context.getCanonicalType(ClassType));
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005328 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor54be3392010-07-01 17:57:27 +00005329 CXXConstructorDecl *CopyConstructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005330 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00005331 Context.getFunctionType(Context.VoidTy,
5332 &ArgType, 1,
5333 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005334 ExceptSpec.hasExceptionSpecification(),
5335 ExceptSpec.hasAnyExceptionSpecification(),
5336 ExceptSpec.size(),
5337 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005338 FunctionType::ExtInfo()),
5339 /*TInfo=*/0,
5340 /*isExplicit=*/false,
5341 /*isInline=*/true,
5342 /*isImplicitlyDeclared=*/true);
5343 CopyConstructor->setAccess(AS_public);
5344 CopyConstructor->setImplicit();
5345 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5346
Douglas Gregora6d69502010-07-02 23:41:54 +00005347 // Note that we have declared this constructor.
5348 ClassDecl->setDeclaredCopyConstructor(true);
5349 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5350
Douglas Gregor54be3392010-07-01 17:57:27 +00005351 // Add the parameter to the constructor.
5352 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5353 ClassDecl->getLocation(),
5354 /*IdentifierInfo=*/0,
5355 ArgType, /*TInfo=*/0,
5356 VarDecl::None,
5357 VarDecl::None, 0);
5358 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005359 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00005360 PushOnScopeChains(CopyConstructor, S, false);
5361 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor54be3392010-07-01 17:57:27 +00005362
5363 return CopyConstructor;
5364}
5365
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005366void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5367 CXXConstructorDecl *CopyConstructor,
5368 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005369 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005370 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005371 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005372 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005373
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005374 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005375 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005376
Douglas Gregora57478e2010-05-01 15:04:51 +00005377 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005378 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005379
Douglas Gregor54818f02010-05-12 16:39:35 +00005380 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5381 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005382 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005383 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005384 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005385 } else {
5386 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5387 CopyConstructor->getLocation(),
5388 MultiStmtArg(*this, 0, 0),
5389 /*isStmtExpr=*/false)
5390 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005391 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005392
5393 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005394}
5395
Anders Carlsson6eb55572009-08-25 05:12:04 +00005396Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005397Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005398 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005399 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005400 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005401 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005402 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005403
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005404 // C++0x [class.copy]p34:
5405 // When certain criteria are met, an implementation is allowed to
5406 // omit the copy/move construction of a class object, even if the
5407 // copy/move constructor and/or destructor for the object have
5408 // side effects. [...]
5409 // - when a temporary class object that has not been bound to a
5410 // reference (12.2) would be copied/moved to a class object
5411 // with the same cv-unqualified type, the copy/move operation
5412 // can be omitted by constructing the temporary object
5413 // directly into the target of the omitted copy/move
5414 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5415 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5416 Elidable = SubExpr->isTemporaryObject() &&
Douglas Gregorec3a3f52010-08-22 18:27:02 +00005417 ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005418 Context.hasSameUnqualifiedType(SubExpr->getType(),
5419 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00005420 }
Mike Stump11289f42009-09-09 15:08:12 +00005421
5422 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005423 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005424 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00005425}
5426
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005427/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5428/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00005429Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005430Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5431 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005432 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005433 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005434 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005435 unsigned NumExprs = ExprArgs.size();
5436 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005437
Douglas Gregor27381f32009-11-23 12:27:39 +00005438 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005439 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005440 Constructor, Elidable, Exprs, NumExprs,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005441 RequiresZeroInit, ConstructKind));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005442}
5443
Mike Stump11289f42009-09-09 15:08:12 +00005444bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005445 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005446 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00005447 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005448 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005449 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005450 if (TempResult.isInvalid())
5451 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005452
Anders Carlsson6eb55572009-08-25 05:12:04 +00005453 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00005454 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005455 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005456 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005457
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005458 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005459}
5460
John McCall03c48482010-02-02 09:10:11 +00005461void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5462 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005463 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005464 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005465 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005466 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005467 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005468 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005469 << VD->getDeclName()
5470 << VD->getType());
John McCall47e40932010-08-01 20:20:59 +00005471
5472 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5473 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall6781b052010-02-02 08:45:54 +00005474 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005475}
5476
Mike Stump11289f42009-09-09 15:08:12 +00005477/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005478/// ActOnDeclarator, when a C++ direct initializer is present.
5479/// e.g: "int x(1);"
John McCall48871652010-08-21 09:40:31 +00005480void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00005481 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005482 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005483 SourceLocation *CommaLocs,
5484 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005485 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005486
5487 // If there is no declaration, there was an error parsing it. Just ignore
5488 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005489 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005490 return;
Mike Stump11289f42009-09-09 15:08:12 +00005491
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005492 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5493 if (!VDecl) {
5494 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5495 RealDecl->setInvalidDecl();
5496 return;
5497 }
5498
Douglas Gregor402250f2009-08-26 21:14:46 +00005499 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005500 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005501 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5502 //
5503 // Clients that want to distinguish between the two forms, can check for
5504 // direct initializer using VarDecl::hasCXXDirectInitializer().
5505 // A major benefit is that clients that don't particularly care about which
5506 // exactly form was it (like the CodeGen) can handle both cases without
5507 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005508
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005509 // C++ 8.5p11:
5510 // The form of initialization (using parentheses or '=') is generally
5511 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005512 // class type.
5513
Douglas Gregor50dc2192010-02-11 22:55:30 +00005514 if (!VDecl->getType()->isDependentType() &&
5515 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005516 diag::err_typecheck_decl_incomplete_type)) {
5517 VDecl->setInvalidDecl();
5518 return;
5519 }
5520
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005521 // The variable can not have an abstract class type.
5522 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5523 diag::err_abstract_type_in_decl,
5524 AbstractVariableType))
5525 VDecl->setInvalidDecl();
5526
Sebastian Redl5ca79842010-02-01 20:16:42 +00005527 const VarDecl *Def;
5528 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005529 Diag(VDecl->getLocation(), diag::err_redefinition)
5530 << VDecl->getDeclName();
5531 Diag(Def->getLocation(), diag::note_previous_definition);
5532 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005533 return;
5534 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005535
Douglas Gregorf0f83692010-08-24 05:27:49 +00005536 // C++ [class.static.data]p4
5537 // If a static data member is of const integral or const
5538 // enumeration type, its declaration in the class definition can
5539 // specify a constant-initializer which shall be an integral
5540 // constant expression (5.19). In that case, the member can appear
5541 // in integral constant expressions. The member shall still be
5542 // defined in a namespace scope if it is used in the program and the
5543 // namespace scope definition shall not contain an initializer.
5544 //
5545 // We already performed a redefinition check above, but for static
5546 // data members we also need to check whether there was an in-class
5547 // declaration with an initializer.
5548 const VarDecl* PrevInit = 0;
5549 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
5550 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
5551 Diag(PrevInit->getLocation(), diag::note_previous_definition);
5552 return;
5553 }
5554
Douglas Gregor50dc2192010-02-11 22:55:30 +00005555 // If either the declaration has a dependent type or if any of the
5556 // expressions is type-dependent, we represent the initialization
5557 // via a ParenListExpr for later use during template instantiation.
5558 if (VDecl->getType()->isDependentType() ||
5559 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5560 // Let clients know that initialization was done with a direct initializer.
5561 VDecl->setCXXDirectInitializer(true);
5562
5563 // Store the initialization expressions as a ParenListExpr.
5564 unsigned NumExprs = Exprs.size();
5565 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5566 (Expr **)Exprs.release(),
5567 NumExprs, RParenLoc));
5568 return;
5569 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005570
5571 // Capture the variable that is being initialized and the style of
5572 // initialization.
5573 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5574
5575 // FIXME: Poor source location information.
5576 InitializationKind Kind
5577 = InitializationKind::CreateDirect(VDecl->getLocation(),
5578 LParenLoc, RParenLoc);
5579
5580 InitializationSequence InitSeq(*this, Entity, Kind,
John McCallb268a282010-08-23 23:25:46 +00005581 Exprs.get(), Exprs.size());
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005582 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5583 if (Result.isInvalid()) {
5584 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005585 return;
5586 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005587
John McCallb268a282010-08-23 23:25:46 +00005588 Result = MaybeCreateCXXExprWithTemporaries(Result.get());
Douglas Gregord5058122010-02-11 01:19:42 +00005589 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005590 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005591
John McCall8b0f4ff2010-08-02 21:13:48 +00005592 if (!VDecl->isInvalidDecl() &&
5593 !VDecl->getDeclContext()->isDependentContext() &&
5594 VDecl->hasGlobalStorage() &&
5595 !VDecl->getInit()->isConstantInitializer(Context,
5596 VDecl->getType()->isReferenceType()))
5597 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5598 << VDecl->getInit()->getSourceRange();
5599
John McCall03c48482010-02-02 09:10:11 +00005600 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5601 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005602}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005603
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005604/// \brief Given a constructor and the set of arguments provided for the
5605/// constructor, convert the arguments and add any required default arguments
5606/// to form a proper call to this constructor.
5607///
5608/// \returns true if an error occurred, false otherwise.
5609bool
5610Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5611 MultiExprArg ArgsPtr,
5612 SourceLocation Loc,
John McCall37ad5512010-08-23 06:44:23 +00005613 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005614 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5615 unsigned NumArgs = ArgsPtr.size();
5616 Expr **Args = (Expr **)ArgsPtr.get();
5617
5618 const FunctionProtoType *Proto
5619 = Constructor->getType()->getAs<FunctionProtoType>();
5620 assert(Proto && "Constructor without a prototype?");
5621 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005622
5623 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005624 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005625 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005626 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005627 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005628
5629 VariadicCallType CallType =
5630 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5631 llvm::SmallVector<Expr *, 8> AllArgs;
5632 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5633 Proto, 0, Args, NumArgs, AllArgs,
5634 CallType);
5635 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5636 ConvertedArgs.push_back(AllArgs[i]);
5637 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005638}
5639
Anders Carlssone363c8e2009-12-12 00:32:00 +00005640static inline bool
5641CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5642 const FunctionDecl *FnDecl) {
5643 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5644 if (isa<NamespaceDecl>(DC)) {
5645 return SemaRef.Diag(FnDecl->getLocation(),
5646 diag::err_operator_new_delete_declared_in_namespace)
5647 << FnDecl->getDeclName();
5648 }
5649
5650 if (isa<TranslationUnitDecl>(DC) &&
5651 FnDecl->getStorageClass() == FunctionDecl::Static) {
5652 return SemaRef.Diag(FnDecl->getLocation(),
5653 diag::err_operator_new_delete_declared_static)
5654 << FnDecl->getDeclName();
5655 }
5656
Anders Carlsson60659a82009-12-12 02:43:16 +00005657 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005658}
5659
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005660static inline bool
5661CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5662 CanQualType ExpectedResultType,
5663 CanQualType ExpectedFirstParamType,
5664 unsigned DependentParamTypeDiag,
5665 unsigned InvalidParamTypeDiag) {
5666 QualType ResultType =
5667 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5668
5669 // Check that the result type is not dependent.
5670 if (ResultType->isDependentType())
5671 return SemaRef.Diag(FnDecl->getLocation(),
5672 diag::err_operator_new_delete_dependent_result_type)
5673 << FnDecl->getDeclName() << ExpectedResultType;
5674
5675 // Check that the result type is what we expect.
5676 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5677 return SemaRef.Diag(FnDecl->getLocation(),
5678 diag::err_operator_new_delete_invalid_result_type)
5679 << FnDecl->getDeclName() << ExpectedResultType;
5680
5681 // A function template must have at least 2 parameters.
5682 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5683 return SemaRef.Diag(FnDecl->getLocation(),
5684 diag::err_operator_new_delete_template_too_few_parameters)
5685 << FnDecl->getDeclName();
5686
5687 // The function decl must have at least 1 parameter.
5688 if (FnDecl->getNumParams() == 0)
5689 return SemaRef.Diag(FnDecl->getLocation(),
5690 diag::err_operator_new_delete_too_few_parameters)
5691 << FnDecl->getDeclName();
5692
5693 // Check the the first parameter type is not dependent.
5694 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5695 if (FirstParamType->isDependentType())
5696 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5697 << FnDecl->getDeclName() << ExpectedFirstParamType;
5698
5699 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005700 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005701 ExpectedFirstParamType)
5702 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5703 << FnDecl->getDeclName() << ExpectedFirstParamType;
5704
5705 return false;
5706}
5707
Anders Carlsson12308f42009-12-11 23:23:22 +00005708static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005709CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005710 // C++ [basic.stc.dynamic.allocation]p1:
5711 // A program is ill-formed if an allocation function is declared in a
5712 // namespace scope other than global scope or declared static in global
5713 // scope.
5714 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5715 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005716
5717 CanQualType SizeTy =
5718 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5719
5720 // C++ [basic.stc.dynamic.allocation]p1:
5721 // The return type shall be void*. The first parameter shall have type
5722 // std::size_t.
5723 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5724 SizeTy,
5725 diag::err_operator_new_dependent_param_type,
5726 diag::err_operator_new_param_type))
5727 return true;
5728
5729 // C++ [basic.stc.dynamic.allocation]p1:
5730 // The first parameter shall not have an associated default argument.
5731 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005732 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005733 diag::err_operator_new_default_arg)
5734 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5735
5736 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005737}
5738
5739static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005740CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5741 // C++ [basic.stc.dynamic.deallocation]p1:
5742 // A program is ill-formed if deallocation functions are declared in a
5743 // namespace scope other than global scope or declared static in global
5744 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005745 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5746 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005747
5748 // C++ [basic.stc.dynamic.deallocation]p2:
5749 // Each deallocation function shall return void and its first parameter
5750 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005751 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5752 SemaRef.Context.VoidPtrTy,
5753 diag::err_operator_delete_dependent_param_type,
5754 diag::err_operator_delete_param_type))
5755 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005756
Anders Carlsson12308f42009-12-11 23:23:22 +00005757 return false;
5758}
5759
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005760/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5761/// of this overloaded operator is well-formed. If so, returns false;
5762/// otherwise, emits appropriate diagnostics and returns true.
5763bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005764 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005765 "Expected an overloaded operator declaration");
5766
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005767 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5768
Mike Stump11289f42009-09-09 15:08:12 +00005769 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005770 // The allocation and deallocation functions, operator new,
5771 // operator new[], operator delete and operator delete[], are
5772 // described completely in 3.7.3. The attributes and restrictions
5773 // found in the rest of this subclause do not apply to them unless
5774 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005775 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005776 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005777
Anders Carlsson22f443f2009-12-12 00:26:23 +00005778 if (Op == OO_New || Op == OO_Array_New)
5779 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005780
5781 // C++ [over.oper]p6:
5782 // An operator function shall either be a non-static member
5783 // function or be a non-member function and have at least one
5784 // parameter whose type is a class, a reference to a class, an
5785 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005786 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5787 if (MethodDecl->isStatic())
5788 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005789 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005790 } else {
5791 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005792 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5793 ParamEnd = FnDecl->param_end();
5794 Param != ParamEnd; ++Param) {
5795 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005796 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5797 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005798 ClassOrEnumParam = true;
5799 break;
5800 }
5801 }
5802
Douglas Gregord69246b2008-11-17 16:14:12 +00005803 if (!ClassOrEnumParam)
5804 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005805 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005806 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005807 }
5808
5809 // C++ [over.oper]p8:
5810 // An operator function cannot have default arguments (8.3.6),
5811 // except where explicitly stated below.
5812 //
Mike Stump11289f42009-09-09 15:08:12 +00005813 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005814 // (C++ [over.call]p1).
5815 if (Op != OO_Call) {
5816 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5817 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005818 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005819 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005820 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005821 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005822 }
5823 }
5824
Douglas Gregor6cf08062008-11-10 13:38:07 +00005825 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5826 { false, false, false }
5827#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5828 , { Unary, Binary, MemberOnly }
5829#include "clang/Basic/OperatorKinds.def"
5830 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005831
Douglas Gregor6cf08062008-11-10 13:38:07 +00005832 bool CanBeUnaryOperator = OperatorUses[Op][0];
5833 bool CanBeBinaryOperator = OperatorUses[Op][1];
5834 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005835
5836 // C++ [over.oper]p8:
5837 // [...] Operator functions cannot have more or fewer parameters
5838 // than the number required for the corresponding operator, as
5839 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005840 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005841 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005842 if (Op != OO_Call &&
5843 ((NumParams == 1 && !CanBeUnaryOperator) ||
5844 (NumParams == 2 && !CanBeBinaryOperator) ||
5845 (NumParams < 1) || (NumParams > 2))) {
5846 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005847 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005848 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005849 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005850 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005851 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005852 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005853 assert(CanBeBinaryOperator &&
5854 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005855 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005856 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005857
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005858 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005859 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005860 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005861
Douglas Gregord69246b2008-11-17 16:14:12 +00005862 // Overloaded operators other than operator() cannot be variadic.
5863 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005864 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005865 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005866 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005867 }
5868
5869 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005870 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5871 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005872 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005873 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005874 }
5875
5876 // C++ [over.inc]p1:
5877 // The user-defined function called operator++ implements the
5878 // prefix and postfix ++ operator. If this function is a member
5879 // function with no parameters, or a non-member function with one
5880 // parameter of class or enumeration type, it defines the prefix
5881 // increment operator ++ for objects of that type. If the function
5882 // is a member function with one parameter (which shall be of type
5883 // int) or a non-member function with two parameters (the second
5884 // of which shall be of type int), it defines the postfix
5885 // increment operator ++ for objects of that type.
5886 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5887 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5888 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005889 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005890 ParamIsInt = BT->getKind() == BuiltinType::Int;
5891
Chris Lattner2b786902008-11-21 07:50:02 +00005892 if (!ParamIsInt)
5893 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005894 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005895 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005896 }
5897
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005898 // Notify the class if it got an assignment operator.
5899 if (Op == OO_Equal) {
5900 // Would have returned earlier otherwise.
5901 assert(isa<CXXMethodDecl>(FnDecl) &&
5902 "Overloaded = not member, but not filtered.");
5903 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5904 Method->getParent()->addedAssignmentOperator(Context, Method);
5905 }
5906
Douglas Gregord69246b2008-11-17 16:14:12 +00005907 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005908}
Chris Lattner3b024a32008-12-17 07:09:26 +00005909
Alexis Huntc88db062010-01-13 09:01:02 +00005910/// CheckLiteralOperatorDeclaration - Check whether the declaration
5911/// of this literal operator function is well-formed. If so, returns
5912/// false; otherwise, emits appropriate diagnostics and returns true.
5913bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5914 DeclContext *DC = FnDecl->getDeclContext();
5915 Decl::Kind Kind = DC->getDeclKind();
5916 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5917 Kind != Decl::LinkageSpec) {
5918 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5919 << FnDecl->getDeclName();
5920 return true;
5921 }
5922
5923 bool Valid = false;
5924
Alexis Hunt7dd26172010-04-07 23:11:06 +00005925 // template <char...> type operator "" name() is the only valid template
5926 // signature, and the only valid signature with no parameters.
5927 if (FnDecl->param_size() == 0) {
5928 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5929 // Must have only one template parameter
5930 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5931 if (Params->size() == 1) {
5932 NonTypeTemplateParmDecl *PmDecl =
5933 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005934
Alexis Hunt7dd26172010-04-07 23:11:06 +00005935 // The template parameter must be a char parameter pack.
5936 // FIXME: This test will always fail because non-type parameter packs
5937 // have not been implemented.
5938 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5939 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5940 Valid = true;
5941 }
5942 }
5943 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005944 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005945 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5946
Alexis Huntc88db062010-01-13 09:01:02 +00005947 QualType T = (*Param)->getType();
5948
Alexis Hunt079a6f72010-04-07 22:57:35 +00005949 // unsigned long long int, long double, and any character type are allowed
5950 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005951 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5952 Context.hasSameType(T, Context.LongDoubleTy) ||
5953 Context.hasSameType(T, Context.CharTy) ||
5954 Context.hasSameType(T, Context.WCharTy) ||
5955 Context.hasSameType(T, Context.Char16Ty) ||
5956 Context.hasSameType(T, Context.Char32Ty)) {
5957 if (++Param == FnDecl->param_end())
5958 Valid = true;
5959 goto FinishedParams;
5960 }
5961
Alexis Hunt079a6f72010-04-07 22:57:35 +00005962 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005963 const PointerType *PT = T->getAs<PointerType>();
5964 if (!PT)
5965 goto FinishedParams;
5966 T = PT->getPointeeType();
5967 if (!T.isConstQualified())
5968 goto FinishedParams;
5969 T = T.getUnqualifiedType();
5970
5971 // Move on to the second parameter;
5972 ++Param;
5973
5974 // If there is no second parameter, the first must be a const char *
5975 if (Param == FnDecl->param_end()) {
5976 if (Context.hasSameType(T, Context.CharTy))
5977 Valid = true;
5978 goto FinishedParams;
5979 }
5980
5981 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5982 // are allowed as the first parameter to a two-parameter function
5983 if (!(Context.hasSameType(T, Context.CharTy) ||
5984 Context.hasSameType(T, Context.WCharTy) ||
5985 Context.hasSameType(T, Context.Char16Ty) ||
5986 Context.hasSameType(T, Context.Char32Ty)))
5987 goto FinishedParams;
5988
5989 // The second and final parameter must be an std::size_t
5990 T = (*Param)->getType().getUnqualifiedType();
5991 if (Context.hasSameType(T, Context.getSizeType()) &&
5992 ++Param == FnDecl->param_end())
5993 Valid = true;
5994 }
5995
5996 // FIXME: This diagnostic is absolutely terrible.
5997FinishedParams:
5998 if (!Valid) {
5999 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
6000 << FnDecl->getDeclName();
6001 return true;
6002 }
6003
6004 return false;
6005}
6006
Douglas Gregor07665a62009-01-05 19:45:36 +00006007/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
6008/// linkage specification, including the language and (if present)
6009/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
6010/// the location of the language string literal, which is provided
6011/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
6012/// the '{' brace. Otherwise, this linkage specification does not
6013/// have any braces.
John McCall48871652010-08-21 09:40:31 +00006014Decl *Sema::ActOnStartLinkageSpecification(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00006015 SourceLocation ExternLoc,
6016 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00006017 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00006018 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00006019 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00006020 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00006021 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00006022 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00006023 Language = LinkageSpecDecl::lang_cxx;
6024 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00006025 Diag(LangLoc, diag::err_bad_language);
John McCall48871652010-08-21 09:40:31 +00006026 return 0;
Chris Lattner438e5012008-12-17 07:13:27 +00006027 }
Mike Stump11289f42009-09-09 15:08:12 +00006028
Chris Lattner438e5012008-12-17 07:13:27 +00006029 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00006030
Douglas Gregor07665a62009-01-05 19:45:36 +00006031 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00006032 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00006033 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006034 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00006035 PushDeclContext(S, D);
John McCall48871652010-08-21 09:40:31 +00006036 return D;
Chris Lattner438e5012008-12-17 07:13:27 +00006037}
6038
Abramo Bagnaraed5b6892010-07-30 16:47:02 +00006039/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +00006040/// the C++ linkage specification LinkageSpec. If RBraceLoc is
6041/// valid, it's the position of the closing '}' brace in a linkage
6042/// specification that uses braces.
John McCall48871652010-08-21 09:40:31 +00006043Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
6044 Decl *LinkageSpec,
Chris Lattner83f095c2009-03-28 19:18:32 +00006045 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00006046 if (LinkageSpec)
6047 PopDeclContext();
6048 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00006049}
6050
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006051/// \brief Perform semantic analysis for the variable declaration that
6052/// occurs within a C++ catch clause, returning the newly-created
6053/// variable.
6054VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00006055 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006056 IdentifierInfo *Name,
6057 SourceLocation Loc,
6058 SourceRange Range) {
6059 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006060
6061 // Arrays and functions decay.
6062 if (ExDeclType->isArrayType())
6063 ExDeclType = Context.getArrayDecayedType(ExDeclType);
6064 else if (ExDeclType->isFunctionType())
6065 ExDeclType = Context.getPointerType(ExDeclType);
6066
6067 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
6068 // The exception-declaration shall not denote a pointer or reference to an
6069 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00006070 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00006071 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006072 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00006073 Invalid = true;
6074 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006075
Douglas Gregor104ee002010-03-08 01:47:36 +00006076 // GCC allows catching pointers and references to incomplete types
6077 // as an extension; so do we, but we warn by default.
6078
Sebastian Redl54c04d42008-12-22 19:15:10 +00006079 QualType BaseType = ExDeclType;
6080 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00006081 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00006082 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006083 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006084 BaseType = Ptr->getPointeeType();
6085 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00006086 DK = diag::ext_catch_incomplete_ptr;
6087 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00006088 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00006089 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006090 BaseType = Ref->getPointeeType();
6091 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00006092 DK = diag::ext_catch_incomplete_ref;
6093 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006094 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00006095 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00006096 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
6097 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00006098 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006099
Mike Stump11289f42009-09-09 15:08:12 +00006100 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006101 RequireNonAbstractType(Loc, ExDeclType,
6102 diag::err_abstract_type_in_decl,
6103 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00006104 Invalid = true;
6105
John McCall2ca705e2010-07-24 00:37:23 +00006106 // Only the non-fragile NeXT runtime currently supports C++ catches
6107 // of ObjC types, and no runtime supports catching ObjC types by value.
6108 if (!Invalid && getLangOptions().ObjC1) {
6109 QualType T = ExDeclType;
6110 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6111 T = RT->getPointeeType();
6112
6113 if (T->isObjCObjectType()) {
6114 Diag(Loc, diag::err_objc_object_catch);
6115 Invalid = true;
6116 } else if (T->isObjCObjectPointerType()) {
6117 if (!getLangOptions().NeXTRuntime) {
6118 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6119 Invalid = true;
6120 } else if (!getLangOptions().ObjCNonFragileABI) {
6121 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6122 Invalid = true;
6123 }
6124 }
6125 }
6126
Mike Stump11289f42009-09-09 15:08:12 +00006127 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregorc4df4072010-04-19 22:54:31 +00006128 Name, ExDeclType, TInfo, VarDecl::None,
6129 VarDecl::None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00006130 ExDecl->setExceptionVariable(true);
6131
Douglas Gregor6de584c2010-03-05 23:38:39 +00006132 if (!Invalid) {
6133 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6134 // C++ [except.handle]p16:
6135 // The object declared in an exception-declaration or, if the
6136 // exception-declaration does not specify a name, a temporary (12.2) is
6137 // copy-initialized (8.5) from the exception object. [...]
6138 // The object is destroyed when the handler exits, after the destruction
6139 // of any automatic objects initialized within the handler.
6140 //
6141 // We just pretend to initialize the object with itself, then make sure
6142 // it can be destroyed later.
6143 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6144 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6145 Loc, ExDeclType, 0);
6146 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6147 SourceLocation());
6148 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
6149 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00006150 MultiExprArg(*this, &ExDeclRef, 1));
Douglas Gregor6de584c2010-03-05 23:38:39 +00006151 if (Result.isInvalid())
6152 Invalid = true;
6153 else
6154 FinalizeVarWithDestructor(ExDecl, RecordTy);
6155 }
6156 }
6157
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006158 if (Invalid)
6159 ExDecl->setInvalidDecl();
6160
6161 return ExDecl;
6162}
6163
6164/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6165/// handler.
John McCall48871652010-08-21 09:40:31 +00006166Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00006167 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6168 QualType ExDeclType = TInfo->getType();
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006169
6170 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00006171 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006172 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00006173 LookupOrdinaryName,
6174 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006175 // The scope should be freshly made just for us. There is just no way
6176 // it contains any previous declaration.
John McCall48871652010-08-21 09:40:31 +00006177 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl54c04d42008-12-22 19:15:10 +00006178 if (PrevDecl->isTemplateParameter()) {
6179 // Maybe we will complain about the shadowed template parameter.
6180 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006181 }
6182 }
6183
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006184 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006185 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6186 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006187 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006188 }
6189
John McCallbcd03502009-12-07 02:54:59 +00006190 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006191 D.getIdentifier(),
6192 D.getIdentifierLoc(),
6193 D.getDeclSpec().getSourceRange());
6194
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006195 if (Invalid)
6196 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00006197
Sebastian Redl54c04d42008-12-22 19:15:10 +00006198 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006199 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006200 PushOnScopeChains(ExDecl, S);
6201 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006202 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006203
Douglas Gregor758a8692009-06-17 21:51:59 +00006204 ProcessDeclAttributes(S, ExDecl, D);
John McCall48871652010-08-21 09:40:31 +00006205 return ExDecl;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006206}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006207
John McCall48871652010-08-21 09:40:31 +00006208Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
John McCallb268a282010-08-23 23:25:46 +00006209 Expr *AssertExpr,
6210 Expr *AssertMessageExpr_) {
6211 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006212
Anders Carlsson54b26982009-03-14 00:33:21 +00006213 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6214 llvm::APSInt Value(32);
6215 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6216 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6217 AssertExpr->getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006218 return 0;
Anders Carlsson54b26982009-03-14 00:33:21 +00006219 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006220
Anders Carlsson54b26982009-03-14 00:33:21 +00006221 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00006222 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00006223 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00006224 }
6225 }
Mike Stump11289f42009-09-09 15:08:12 +00006226
Mike Stump11289f42009-09-09 15:08:12 +00006227 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006228 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00006229
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006230 CurContext->addDecl(Decl);
John McCall48871652010-08-21 09:40:31 +00006231 return Decl;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006232}
Sebastian Redlf769df52009-03-24 22:27:57 +00006233
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006234/// \brief Perform semantic analysis of the given friend type declaration.
6235///
6236/// \returns A friend declaration that.
6237FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6238 TypeSourceInfo *TSInfo) {
6239 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6240
6241 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006242 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006243
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006244 if (!getLangOptions().CPlusPlus0x) {
6245 // C++03 [class.friend]p2:
6246 // An elaborated-type-specifier shall be used in a friend declaration
6247 // for a class.*
6248 //
6249 // * The class-key of the elaborated-type-specifier is required.
6250 if (!ActiveTemplateInstantiations.empty()) {
6251 // Do not complain about the form of friend template types during
6252 // template instantiation; we will already have complained when the
6253 // template was declared.
6254 } else if (!T->isElaboratedTypeSpecifier()) {
6255 // If we evaluated the type to a record type, suggest putting
6256 // a tag in front.
6257 if (const RecordType *RT = T->getAs<RecordType>()) {
6258 RecordDecl *RD = RT->getDecl();
6259
6260 std::string InsertionText = std::string(" ") + RD->getKindName();
6261
6262 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6263 << (unsigned) RD->getTagKind()
6264 << T
6265 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6266 InsertionText);
6267 } else {
6268 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6269 << T
6270 << SourceRange(FriendLoc, TypeRange.getEnd());
6271 }
6272 } else if (T->getAs<EnumType>()) {
6273 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006274 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006275 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006276 }
6277 }
6278
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006279 // C++0x [class.friend]p3:
6280 // If the type specifier in a friend declaration designates a (possibly
6281 // cv-qualified) class type, that class is declared as a friend; otherwise,
6282 // the friend declaration is ignored.
6283
6284 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6285 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006286
6287 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6288}
6289
John McCall11083da2009-09-16 22:47:08 +00006290/// Handle a friend type declaration. This works in tandem with
6291/// ActOnTag.
6292///
6293/// Notes on friend class templates:
6294///
6295/// We generally treat friend class declarations as if they were
6296/// declaring a class. So, for example, the elaborated type specifier
6297/// in a friend declaration is required to obey the restrictions of a
6298/// class-head (i.e. no typedefs in the scope chain), template
6299/// parameters are required to match up with simple template-ids, &c.
6300/// However, unlike when declaring a template specialization, it's
6301/// okay to refer to a template specialization without an empty
6302/// template parameter declaration, e.g.
6303/// friend class A<T>::B<unsigned>;
6304/// We permit this as a special case; if there are any template
6305/// parameters present at all, require proper matching, i.e.
6306/// template <> template <class T> friend class A<int>::B;
John McCall48871652010-08-21 09:40:31 +00006307Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00006308 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006309 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00006310
6311 assert(DS.isFriendSpecified());
6312 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6313
John McCall11083da2009-09-16 22:47:08 +00006314 // Try to convert the decl specifier to a type. This works for
6315 // friend templates because ActOnTag never produces a ClassTemplateDecl
6316 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00006317 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00006318 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6319 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00006320 if (TheDeclarator.isInvalidType())
John McCall48871652010-08-21 09:40:31 +00006321 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006322
John McCall11083da2009-09-16 22:47:08 +00006323 // This is definitely an error in C++98. It's probably meant to
6324 // be forbidden in C++0x, too, but the specification is just
6325 // poorly written.
6326 //
6327 // The problem is with declarations like the following:
6328 // template <T> friend A<T>::foo;
6329 // where deciding whether a class C is a friend or not now hinges
6330 // on whether there exists an instantiation of A that causes
6331 // 'foo' to equal C. There are restrictions on class-heads
6332 // (which we declare (by fiat) elaborated friend declarations to
6333 // be) that makes this tractable.
6334 //
6335 // FIXME: handle "template <> friend class A<T>;", which
6336 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00006337 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00006338 Diag(Loc, diag::err_tagless_friend_type_template)
6339 << DS.getSourceRange();
John McCall48871652010-08-21 09:40:31 +00006340 return 0;
John McCall11083da2009-09-16 22:47:08 +00006341 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006342
John McCallaa74a0c2009-08-28 07:59:38 +00006343 // C++98 [class.friend]p1: A friend of a class is a function
6344 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00006345 // This is fixed in DR77, which just barely didn't make the C++03
6346 // deadline. It's also a very silly restriction that seriously
6347 // affects inner classes and which nobody else seems to implement;
6348 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00006349 //
6350 // But note that we could warn about it: it's always useless to
6351 // friend one of your own members (it's not, however, worthless to
6352 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00006353
John McCall11083da2009-09-16 22:47:08 +00006354 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006355 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00006356 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006357 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00006358 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00006359 TSI,
John McCall11083da2009-09-16 22:47:08 +00006360 DS.getFriendSpecLoc());
6361 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006362 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6363
6364 if (!D)
John McCall48871652010-08-21 09:40:31 +00006365 return 0;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006366
John McCall11083da2009-09-16 22:47:08 +00006367 D->setAccess(AS_public);
6368 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006369
John McCall48871652010-08-21 09:40:31 +00006370 return D;
John McCallaa74a0c2009-08-28 07:59:38 +00006371}
6372
John McCall48871652010-08-21 09:40:31 +00006373Decl *Sema::ActOnFriendFunctionDecl(Scope *S,
6374 Declarator &D,
6375 bool IsDefinition,
John McCall2f212b32009-09-11 21:02:39 +00006376 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006377 const DeclSpec &DS = D.getDeclSpec();
6378
6379 assert(DS.isFriendSpecified());
6380 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6381
6382 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00006383 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6384 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00006385
6386 // C++ [class.friend]p1
6387 // A friend of a class is a function or class....
6388 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00006389 // It *doesn't* see through dependent types, which is correct
6390 // according to [temp.arg.type]p3:
6391 // If a declaration acquires a function type through a
6392 // type dependent on a template-parameter and this causes
6393 // a declaration that does not use the syntactic form of a
6394 // function declarator to have a function type, the program
6395 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00006396 if (!T->isFunctionType()) {
6397 Diag(Loc, diag::err_unexpected_friend);
6398
6399 // It might be worthwhile to try to recover by creating an
6400 // appropriate declaration.
John McCall48871652010-08-21 09:40:31 +00006401 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006402 }
6403
6404 // C++ [namespace.memdef]p3
6405 // - If a friend declaration in a non-local class first declares a
6406 // class or function, the friend class or function is a member
6407 // of the innermost enclosing namespace.
6408 // - The name of the friend is not found by simple name lookup
6409 // until a matching declaration is provided in that namespace
6410 // scope (either before or after the class declaration granting
6411 // friendship).
6412 // - If a friend function is called, its name may be found by the
6413 // name lookup that considers functions from namespaces and
6414 // classes associated with the types of the function arguments.
6415 // - When looking for a prior declaration of a class or a function
6416 // declared as a friend, scopes outside the innermost enclosing
6417 // namespace scope are not considered.
6418
John McCallaa74a0c2009-08-28 07:59:38 +00006419 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006420 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6421 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +00006422 assert(Name);
6423
John McCall07e91c02009-08-06 02:15:43 +00006424 // The context we found the declaration in, or in which we should
6425 // create the declaration.
6426 DeclContext *DC;
6427
6428 // FIXME: handle local classes
6429
6430 // Recover from invalid scope qualifiers as if they just weren't there.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006431 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +00006432 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00006433 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6434 DC = computeDeclContext(ScopeQual);
6435
6436 // FIXME: handle dependent contexts
John McCall48871652010-08-21 09:40:31 +00006437 if (!DC) return 0;
6438 if (RequireCompleteDeclContext(ScopeQual, DC)) return 0;
John McCall07e91c02009-08-06 02:15:43 +00006439
John McCall1f82f242009-11-18 22:49:29 +00006440 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006441
John McCall45831862010-05-28 01:41:47 +00006442 // Ignore things found implicitly in the wrong scope.
John McCall07e91c02009-08-06 02:15:43 +00006443 // TODO: better diagnostics for this case. Suggesting the right
6444 // qualified scope would be nice...
John McCall45831862010-05-28 01:41:47 +00006445 LookupResult::Filter F = Previous.makeFilter();
6446 while (F.hasNext()) {
6447 NamedDecl *D = F.next();
6448 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6449 F.erase();
6450 }
6451 F.done();
6452
6453 if (Previous.empty()) {
John McCallaa74a0c2009-08-28 07:59:38 +00006454 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00006455 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
John McCall48871652010-08-21 09:40:31 +00006456 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006457 }
6458
6459 // C++ [class.friend]p1: A friend of a class is a function or
6460 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006461 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00006462 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6463
John McCall07e91c02009-08-06 02:15:43 +00006464 // Otherwise walk out to the nearest namespace scope looking for matches.
6465 } else {
6466 // TODO: handle local class contexts.
6467
6468 DC = CurContext;
6469 while (true) {
6470 // Skip class contexts. If someone can cite chapter and verse
6471 // for this behavior, that would be nice --- it's what GCC and
6472 // EDG do, and it seems like a reasonable intent, but the spec
6473 // really only says that checks for unqualified existing
6474 // declarations should stop at the nearest enclosing namespace,
6475 // not that they should only consider the nearest enclosing
6476 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006477 while (DC->isRecord())
6478 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00006479
John McCall1f82f242009-11-18 22:49:29 +00006480 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006481
6482 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00006483 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00006484 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006485
John McCall07e91c02009-08-06 02:15:43 +00006486 if (DC->isFileContext()) break;
6487 DC = DC->getParent();
6488 }
6489
6490 // C++ [class.friend]p1: A friend of a class is a function or
6491 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00006492 // C++0x changes this for both friend types and functions.
6493 // Most C++ 98 compilers do seem to give an error here, so
6494 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00006495 if (!Previous.empty() && DC->Equals(CurContext)
6496 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00006497 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6498 }
6499
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006500 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00006501 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00006502 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6503 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6504 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00006505 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00006506 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6507 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall48871652010-08-21 09:40:31 +00006508 return 0;
John McCall07e91c02009-08-06 02:15:43 +00006509 }
John McCall07e91c02009-08-06 02:15:43 +00006510 }
6511
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006512 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00006513 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006514 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00006515 IsDefinition,
6516 Redeclaration);
John McCall48871652010-08-21 09:40:31 +00006517 if (!ND) return 0;
John McCall759e32b2009-08-31 22:39:49 +00006518
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006519 assert(ND->getDeclContext() == DC);
6520 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00006521
John McCall759e32b2009-08-31 22:39:49 +00006522 // Add the function declaration to the appropriate lookup tables,
6523 // adjusting the redeclarations list as necessary. We don't
6524 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00006525 //
John McCall759e32b2009-08-31 22:39:49 +00006526 // Also update the scope-based lookup if the target context's
6527 // lookup context is in lexical scope.
6528 if (!CurContext->isDependentContext()) {
6529 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006530 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006531 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006532 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006533 }
John McCallaa74a0c2009-08-28 07:59:38 +00006534
6535 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006536 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00006537 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00006538 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00006539 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00006540
John McCall48871652010-08-21 09:40:31 +00006541 return ND;
Anders Carlsson38811702009-05-11 22:55:49 +00006542}
6543
John McCall48871652010-08-21 09:40:31 +00006544void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
6545 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00006546
Sebastian Redlf769df52009-03-24 22:27:57 +00006547 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6548 if (!Fn) {
6549 Diag(DelLoc, diag::err_deleted_non_function);
6550 return;
6551 }
6552 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6553 Diag(DelLoc, diag::err_deleted_decl_not_first);
6554 Diag(Prev->getLocation(), diag::note_previous_declaration);
6555 // If the declaration wasn't the first, we delete the function anyway for
6556 // recovery.
6557 }
6558 Fn->setDeleted();
6559}
Sebastian Redl4c018662009-04-27 21:33:24 +00006560
6561static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6562 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6563 ++CI) {
6564 Stmt *SubStmt = *CI;
6565 if (!SubStmt)
6566 continue;
6567 if (isa<ReturnStmt>(SubStmt))
6568 Self.Diag(SubStmt->getSourceRange().getBegin(),
6569 diag::err_return_in_constructor_handler);
6570 if (!isa<Expr>(SubStmt))
6571 SearchForReturnInStmt(Self, SubStmt);
6572 }
6573}
6574
6575void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6576 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6577 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6578 SearchForReturnInStmt(*this, Handler);
6579 }
6580}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006581
Mike Stump11289f42009-09-09 15:08:12 +00006582bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006583 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00006584 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6585 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006586
Chandler Carruth284bb2e2010-02-15 11:53:20 +00006587 if (Context.hasSameType(NewTy, OldTy) ||
6588 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006589 return false;
Mike Stump11289f42009-09-09 15:08:12 +00006590
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006591 // Check if the return types are covariant
6592 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00006593
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006594 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006595 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6596 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006597 NewClassTy = NewPT->getPointeeType();
6598 OldClassTy = OldPT->getPointeeType();
6599 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006600 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6601 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6602 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6603 NewClassTy = NewRT->getPointeeType();
6604 OldClassTy = OldRT->getPointeeType();
6605 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006606 }
6607 }
Mike Stump11289f42009-09-09 15:08:12 +00006608
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006609 // The return types aren't either both pointers or references to a class type.
6610 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00006611 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006612 diag::err_different_return_type_for_overriding_virtual_function)
6613 << New->getDeclName() << NewTy << OldTy;
6614 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00006615
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006616 return true;
6617 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006618
Anders Carlssone60365b2009-12-31 18:34:24 +00006619 // C++ [class.virtual]p6:
6620 // If the return type of D::f differs from the return type of B::f, the
6621 // class type in the return type of D::f shall be complete at the point of
6622 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006623 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6624 if (!RT->isBeingDefined() &&
6625 RequireCompleteType(New->getLocation(), NewClassTy,
6626 PDiag(diag::err_covariant_return_incomplete)
6627 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00006628 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006629 }
Anders Carlssone60365b2009-12-31 18:34:24 +00006630
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00006631 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006632 // Check if the new class derives from the old class.
6633 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6634 Diag(New->getLocation(),
6635 diag::err_covariant_return_not_derived)
6636 << New->getDeclName() << NewTy << OldTy;
6637 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6638 return true;
6639 }
Mike Stump11289f42009-09-09 15:08:12 +00006640
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006641 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00006642 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00006643 diag::err_covariant_return_inaccessible_base,
6644 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6645 // FIXME: Should this point to the return type?
6646 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006647 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6648 return true;
6649 }
6650 }
Mike Stump11289f42009-09-09 15:08:12 +00006651
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006652 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006653 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006654 Diag(New->getLocation(),
6655 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006656 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006657 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6658 return true;
6659 };
Mike Stump11289f42009-09-09 15:08:12 +00006660
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006661
6662 // The new class type must have the same or less qualifiers as the old type.
6663 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6664 Diag(New->getLocation(),
6665 diag::err_covariant_return_type_class_type_more_qualified)
6666 << New->getDeclName() << NewTy << OldTy;
6667 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6668 return true;
6669 };
Mike Stump11289f42009-09-09 15:08:12 +00006670
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006671 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006672}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006673
Alexis Hunt96d5c762009-11-21 08:43:09 +00006674bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6675 const CXXMethodDecl *Old)
6676{
6677 if (Old->hasAttr<FinalAttr>()) {
6678 Diag(New->getLocation(), diag::err_final_function_overridden)
6679 << New->getDeclName();
6680 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6681 return true;
6682 }
6683
6684 return false;
6685}
6686
Douglas Gregor21920e372009-12-01 17:24:26 +00006687/// \brief Mark the given method pure.
6688///
6689/// \param Method the method to be marked pure.
6690///
6691/// \param InitRange the source range that covers the "0" initializer.
6692bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6693 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6694 Method->setPure();
6695
6696 // A class is abstract if at least one function is pure virtual.
6697 Method->getParent()->setAbstract(true);
6698 return false;
6699 }
6700
6701 if (!Method->isInvalidDecl())
6702 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6703 << Method->getDeclName() << InitRange;
6704 return true;
6705}
6706
John McCall1f4ee7b2009-12-19 09:28:58 +00006707/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6708/// an initializer for the out-of-line declaration 'Dcl'. The scope
6709/// is a fresh scope pushed for just this purpose.
6710///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006711/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6712/// static data member of class X, names should be looked up in the scope of
6713/// class X.
John McCall48871652010-08-21 09:40:31 +00006714void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006715 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006716 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006717
John McCall1f4ee7b2009-12-19 09:28:58 +00006718 // We should only get called for declarations with scope specifiers, like:
6719 // int foo::bar;
6720 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006721 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006722}
6723
6724/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall48871652010-08-21 09:40:31 +00006725/// initializer for the out-of-line declaration 'D'.
6726void Sema::ActOnCXXExitDeclInitializer(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 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006731 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006732}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006733
6734/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6735/// C++ if/switch/while/for statement.
6736/// e.g: "if (int x = f()) {...}"
John McCall48871652010-08-21 09:40:31 +00006737DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006738 // C++ 6.4p2:
6739 // The declarator shall not specify a function or an array.
6740 // The type-specifier-seq shall not contain typedef and shall not declare a
6741 // new class or enumeration.
6742 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6743 "Parser allowed 'typedef' as storage class of condition decl.");
6744
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006745 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00006746 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6747 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006748
6749 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6750 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6751 // would be created and CXXConditionDeclExpr wants a VarDecl.
6752 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6753 << D.getSourceRange();
6754 return DeclResult();
6755 } else if (OwnedTag && OwnedTag->isDefinition()) {
6756 // The type-specifier-seq shall not declare a new class or enumeration.
6757 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6758 }
6759
John McCall48871652010-08-21 09:40:31 +00006760 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006761 if (!Dcl)
6762 return DeclResult();
6763
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006764 return Dcl;
6765}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006766
Douglas Gregor88d292c2010-05-13 16:44:06 +00006767void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6768 bool DefinitionRequired) {
6769 // Ignore any vtable uses in unevaluated operands or for classes that do
6770 // not have a vtable.
6771 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6772 CurContext->isDependentContext() ||
6773 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006774 return;
6775
Douglas Gregor88d292c2010-05-13 16:44:06 +00006776 // Try to insert this class into the map.
6777 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6778 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6779 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6780 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00006781 // If we already had an entry, check to see if we are promoting this vtable
6782 // to required a definition. If so, we need to reappend to the VTableUses
6783 // list, since we may have already processed the first entry.
6784 if (DefinitionRequired && !Pos.first->second) {
6785 Pos.first->second = true;
6786 } else {
6787 // Otherwise, we can early exit.
6788 return;
6789 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006790 }
6791
6792 // Local classes need to have their virtual members marked
6793 // immediately. For all other classes, we mark their virtual members
6794 // at the end of the translation unit.
6795 if (Class->isLocalClass())
6796 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006797 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006798 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006799}
6800
Douglas Gregor88d292c2010-05-13 16:44:06 +00006801bool Sema::DefineUsedVTables() {
6802 // If any dynamic classes have their key function defined within
6803 // this translation unit, then those vtables are considered "used" and must
6804 // be emitted.
6805 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6806 if (const CXXMethodDecl *KeyFunction
6807 = Context.getKeyFunction(DynamicClasses[I])) {
6808 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006809 if (KeyFunction->hasBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006810 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6811 }
6812 }
6813
6814 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006815 return false;
6816
Douglas Gregor88d292c2010-05-13 16:44:06 +00006817 // Note: The VTableUses vector could grow as a result of marking
6818 // the members of a class as "used", so we check the size each
6819 // time through the loop and prefer indices (with are stable) to
6820 // iterators (which are not).
6821 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00006822 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006823 if (!Class)
6824 continue;
6825
6826 SourceLocation Loc = VTableUses[I].second;
6827
6828 // If this class has a key function, but that key function is
6829 // defined in another translation unit, we don't need to emit the
6830 // vtable even though we're using it.
6831 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006832 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00006833 switch (KeyFunction->getTemplateSpecializationKind()) {
6834 case TSK_Undeclared:
6835 case TSK_ExplicitSpecialization:
6836 case TSK_ExplicitInstantiationDeclaration:
6837 // The key function is in another translation unit.
6838 continue;
6839
6840 case TSK_ExplicitInstantiationDefinition:
6841 case TSK_ImplicitInstantiation:
6842 // We will be instantiating the key function.
6843 break;
6844 }
6845 } else if (!KeyFunction) {
6846 // If we have a class with no key function that is the subject
6847 // of an explicit instantiation declaration, suppress the
6848 // vtable; it will live with the explicit instantiation
6849 // definition.
6850 bool IsExplicitInstantiationDeclaration
6851 = Class->getTemplateSpecializationKind()
6852 == TSK_ExplicitInstantiationDeclaration;
6853 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6854 REnd = Class->redecls_end();
6855 R != REnd; ++R) {
6856 TemplateSpecializationKind TSK
6857 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6858 if (TSK == TSK_ExplicitInstantiationDeclaration)
6859 IsExplicitInstantiationDeclaration = true;
6860 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6861 IsExplicitInstantiationDeclaration = false;
6862 break;
6863 }
6864 }
6865
6866 if (IsExplicitInstantiationDeclaration)
6867 continue;
6868 }
6869
6870 // Mark all of the virtual members of this class as referenced, so
6871 // that we can build a vtable. Then, tell the AST consumer that a
6872 // vtable for this class is required.
6873 MarkVirtualMembersReferenced(Loc, Class);
6874 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6875 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6876
6877 // Optionally warn if we're emitting a weak vtable.
6878 if (Class->getLinkage() == ExternalLinkage &&
6879 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006880 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006881 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6882 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006883 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006884 VTableUses.clear();
6885
Anders Carlsson82fccd02009-12-07 08:24:59 +00006886 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006887}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006888
Rafael Espindola5b334082010-03-26 00:36:59 +00006889void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6890 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006891 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6892 e = RD->method_end(); i != e; ++i) {
6893 CXXMethodDecl *MD = *i;
6894
6895 // C++ [basic.def.odr]p2:
6896 // [...] A virtual member function is used if it is not pure. [...]
6897 if (MD->isVirtual() && !MD->isPure())
6898 MarkDeclarationReferenced(Loc, MD);
6899 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006900
6901 // Only classes that have virtual bases need a VTT.
6902 if (RD->getNumVBases() == 0)
6903 return;
6904
6905 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6906 e = RD->bases_end(); i != e; ++i) {
6907 const CXXRecordDecl *Base =
6908 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +00006909 if (Base->getNumVBases() == 0)
6910 continue;
6911 MarkVirtualMembersReferenced(Loc, Base);
6912 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006913}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006914
6915/// SetIvarInitializers - This routine builds initialization ASTs for the
6916/// Objective-C implementation whose ivars need be initialized.
6917void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6918 if (!getLangOptions().CPlusPlus)
6919 return;
Fariborz Jahaniana50b3a22010-08-20 21:21:08 +00006920 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006921 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6922 CollectIvarsToConstructOrDestruct(OID, ivars);
6923 if (ivars.empty())
6924 return;
6925 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6926 for (unsigned i = 0; i < ivars.size(); i++) {
6927 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00006928 if (Field->isInvalidDecl())
6929 continue;
6930
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006931 CXXBaseOrMemberInitializer *Member;
6932 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6933 InitializationKind InitKind =
6934 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6935
6936 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6937 Sema::OwningExprResult MemberInit =
6938 InitSeq.Perform(*this, InitEntity, InitKind,
6939 Sema::MultiExprArg(*this, 0, 0));
John McCallb268a282010-08-23 23:25:46 +00006940 MemberInit = MaybeCreateCXXExprWithTemporaries(MemberInit.get());
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006941 // Note, MemberInit could actually come back empty if no initialization
6942 // is required (e.g., because it would call a trivial default constructor)
6943 if (!MemberInit.get() || MemberInit.isInvalid())
6944 continue;
6945
6946 Member =
6947 new (Context) CXXBaseOrMemberInitializer(Context,
6948 Field, SourceLocation(),
6949 SourceLocation(),
6950 MemberInit.takeAs<Expr>(),
6951 SourceLocation());
6952 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00006953
6954 // Be sure that the destructor is accessible and is marked as referenced.
6955 if (const RecordType *RecordTy
6956 = Context.getBaseElementType(Field->getType())
6957 ->getAs<RecordType>()) {
6958 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00006959 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00006960 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6961 CheckDestructorAccess(Field->getLocation(), Destructor,
6962 PDiag(diag::err_access_dtor_ivar)
6963 << Context.getBaseElementType(Field->getType()));
6964 }
6965 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006966 }
6967 ObjCImplementation->setIvarInitializers(Context,
6968 AllToInit.data(), AllToInit.size());
6969 }
6970}