blob: 7ba34a5fead234eea73d3a9196062d73c8ece704 [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
14#include "Sema.h"
Douglas Gregor3e1e5272009-12-09 23:02:17 +000015#include "SemaInit.h"
John McCall5cebab12009-11-18 07:57:50 +000016#include "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"
Douglas Gregorb53edfb2009-11-10 19:49:08 +000026#include "clang/Parse/DeclSpec.h"
27#include "clang/Parse/Template.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
111Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
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 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump11289f42009-09-09 15:08:12 +0000120
Anders Carlssonc80a1272009-08-25 02:29:20 +0000121 // C++ [dcl.fct.default]p5
122 // A default argument expression is implicitly converted (clause
123 // 4) to the parameter type. The default argument expression has
124 // the same semantic constraints as the initializer expression in
125 // a declaration of a variable of the parameter type, using the
126 // copy-initialization semantics (8.5).
Douglas Gregor85dabae2009-12-16 01:38:02 +0000127 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
128 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
129 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000130 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
131 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
132 MultiExprArg(*this, (void**)&Arg, 1));
133 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000134 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000135 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000136
Anders Carlsson6e997b22009-12-15 20:51:39 +0000137 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000138
Anders Carlssonc80a1272009-08-25 02:29:20 +0000139 // Okay: add the default argument to the parameter
140 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000141
Anders Carlssonc80a1272009-08-25 02:29:20 +0000142 DefaultArg.release();
Mike Stump11289f42009-09-09 15:08:12 +0000143
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000144 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000145}
146
Chris Lattner58258242008-04-10 02:22:51 +0000147/// ActOnParamDefaultArgument - Check whether the default argument
148/// provided for a function parameter is well-formed. If so, attach it
149/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000150void
Mike Stump11289f42009-09-09 15:08:12 +0000151Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +0000152 ExprArg defarg) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000153 if (!param || !defarg.get())
154 return;
Mike Stump11289f42009-09-09 15:08:12 +0000155
Chris Lattner83f095c2009-03-28 19:18:32 +0000156 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson84613c42009-06-12 16:51:40 +0000157 UnparsedDefaultArgLocs.erase(Param);
158
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000159 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner199abbc2008-04-08 05:04:30 +0000160
161 // Default arguments are only permitted in C++
162 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000163 Diag(EqualLoc, diag::err_param_default_argument)
164 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000165 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000166 return;
167 }
168
Anders Carlssonf1c26952009-08-25 01:02:06 +0000169 // Check that the default argument is well-formed
170 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
171 if (DefaultArgChecker.Visit(DefaultArg.get())) {
172 Param->setInvalidDecl();
173 return;
174 }
Mike Stump11289f42009-09-09 15:08:12 +0000175
Anders Carlssonc80a1272009-08-25 02:29:20 +0000176 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000177}
178
Douglas Gregor58354032008-12-24 00:01:03 +0000179/// ActOnParamUnparsedDefaultArgument - We've seen a default
180/// argument for a function parameter, but we can't parse it yet
181/// because we're inside a class definition. Note that this default
182/// argument will be parsed later.
Mike Stump11289f42009-09-09 15:08:12 +0000183void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000184 SourceLocation EqualLoc,
185 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000186 if (!param)
187 return;
Mike Stump11289f42009-09-09 15:08:12 +0000188
Chris Lattner83f095c2009-03-28 19:18:32 +0000189 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +0000190 if (Param)
191 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000192
Anders Carlsson84613c42009-06-12 16:51:40 +0000193 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000194}
195
Douglas Gregor4d87df52008-12-16 21:30:33 +0000196/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
197/// the default argument for the parameter param failed.
Chris Lattner83f095c2009-03-28 19:18:32 +0000198void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000199 if (!param)
200 return;
Mike Stump11289f42009-09-09 15:08:12 +0000201
Anders Carlsson84613c42009-06-12 16:51:40 +0000202 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +0000203
Anders Carlsson84613c42009-06-12 16:51:40 +0000204 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000205
Anders Carlsson84613c42009-06-12 16:51:40 +0000206 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000207}
208
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000209/// CheckExtraCXXDefaultArguments - Check for any extra default
210/// arguments in the declarator, which is not a function declaration
211/// or definition and therefore is not permitted to have default
212/// arguments. This routine should be invoked for every declarator
213/// that is not a function declaration or definition.
214void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
215 // C++ [dcl.fct.default]p3
216 // A default argument expression shall be specified only in the
217 // parameter-declaration-clause of a function declaration or in a
218 // template-parameter (14.1). It shall not be specified for a
219 // parameter pack. If it is specified in a
220 // parameter-declaration-clause, it shall not occur within a
221 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000222 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000223 DeclaratorChunk &chunk = D.getTypeObject(i);
224 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000225 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
226 ParmVarDecl *Param =
227 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +0000228 if (Param->hasUnparsedDefaultArg()) {
229 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000230 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
231 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
232 delete Toks;
233 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000234 } else if (Param->getDefaultArg()) {
235 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
236 << Param->getDefaultArg()->getSourceRange();
237 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000238 }
239 }
240 }
241 }
242}
243
Chris Lattner199abbc2008-04-08 05:04:30 +0000244// MergeCXXFunctionDecl - Merge two declarations of the same C++
245// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000246// type. Subroutine of MergeFunctionDecl. Returns true if there was an
247// error, false otherwise.
248bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
249 bool Invalid = false;
250
Chris Lattner199abbc2008-04-08 05:04:30 +0000251 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000252 // For non-template functions, default arguments can be added in
253 // later declarations of a function in the same
254 // scope. Declarations in different scopes have completely
255 // distinct sets of default arguments. That is, declarations in
256 // inner scopes do not acquire default arguments from
257 // declarations in outer scopes, and vice versa. In a given
258 // function declaration, all parameters subsequent to a
259 // parameter with a default argument shall have default
260 // arguments supplied in this or previous declarations. A
261 // default argument shall not be redefined by a later
262 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000263 //
264 // C++ [dcl.fct.default]p6:
265 // Except for member functions of class templates, the default arguments
266 // in a member function definition that appears outside of the class
267 // definition are added to the set of default arguments provided by the
268 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000269 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
270 ParmVarDecl *OldParam = Old->getParamDecl(p);
271 ParmVarDecl *NewParam = New->getParamDecl(p);
272
Douglas Gregorc732aba2009-09-11 18:44:32 +0000273 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor08dc5842010-01-13 00:12:48 +0000274 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
275 // hint here. Alternatively, we could walk the type-source information
276 // for NewParam to find the last source location in the type... but it
277 // isn't worth the effort right now. This is the kind of test case that
278 // is hard to get right:
279
280 // int f(int);
281 // void g(int (*fp)(int) = f);
282 // void g(int (*fp)(int) = &f);
Mike Stump11289f42009-09-09 15:08:12 +0000283 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000284 diag::err_param_default_argument_redefinition)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000285 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000286
287 // Look for the function declaration where the default argument was
288 // actually written, which may be a declaration prior to Old.
289 for (FunctionDecl *Older = Old->getPreviousDeclaration();
290 Older; Older = Older->getPreviousDeclaration()) {
291 if (!Older->getParamDecl(p)->hasDefaultArg())
292 break;
293
294 OldParam = Older->getParamDecl(p);
295 }
296
297 Diag(OldParam->getLocation(), diag::note_previous_definition)
298 << OldParam->getDefaultArgRange();
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000299 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000300 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000301 // Merge the old default argument into the new parameter.
302 // It's important to use getInit() here; getDefaultArg()
303 // strips off any top-level CXXExprWithTemporaries.
John McCallf3cd6652010-03-12 18:31:32 +0000304 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000305 if (OldParam->hasUninstantiatedDefaultArg())
306 NewParam->setUninstantiatedDefaultArg(
307 OldParam->getUninstantiatedDefaultArg());
308 else
John McCalle61b02b2010-05-04 01:53:42 +0000309 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000310 } else if (NewParam->hasDefaultArg()) {
311 if (New->getDescribedFunctionTemplate()) {
312 // Paragraph 4, quoted above, only applies to non-template functions.
313 Diag(NewParam->getLocation(),
314 diag::err_param_default_argument_template_redecl)
315 << NewParam->getDefaultArgRange();
316 Diag(Old->getLocation(), diag::note_template_prev_declaration)
317 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000318 } else if (New->getTemplateSpecializationKind()
319 != TSK_ImplicitInstantiation &&
320 New->getTemplateSpecializationKind() != TSK_Undeclared) {
321 // C++ [temp.expr.spec]p21:
322 // Default function arguments shall not be specified in a declaration
323 // or a definition for one of the following explicit specializations:
324 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000325 // - the explicit specialization of a member function template;
326 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000327 // template where the class template specialization to which the
328 // member function specialization belongs is implicitly
329 // instantiated.
330 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
331 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
332 << New->getDeclName()
333 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000334 } else if (New->getDeclContext()->isDependentContext()) {
335 // C++ [dcl.fct.default]p6 (DR217):
336 // Default arguments for a member function of a class template shall
337 // be specified on the initial declaration of the member function
338 // within the class template.
339 //
340 // Reading the tea leaves a bit in DR217 and its reference to DR205
341 // leads me to the conclusion that one cannot add default function
342 // arguments for an out-of-line definition of a member function of a
343 // dependent type.
344 int WhichKind = 2;
345 if (CXXRecordDecl *Record
346 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
347 if (Record->getDescribedClassTemplate())
348 WhichKind = 0;
349 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
350 WhichKind = 1;
351 else
352 WhichKind = 2;
353 }
354
355 Diag(NewParam->getLocation(),
356 diag::err_param_default_argument_member_template_redecl)
357 << WhichKind
358 << NewParam->getDefaultArgRange();
359 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000360 }
361 }
362
Douglas Gregorf40863c2010-02-12 07:32:17 +0000363 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000364 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000365
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000366 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000367}
368
369/// CheckCXXDefaultArguments - Verify that the default arguments for a
370/// function declaration are well-formed according to C++
371/// [dcl.fct.default].
372void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
373 unsigned NumParams = FD->getNumParams();
374 unsigned p;
375
376 // Find first parameter with a default argument
377 for (p = 0; p < NumParams; ++p) {
378 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000379 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000380 break;
381 }
382
383 // C++ [dcl.fct.default]p4:
384 // In a given function declaration, all parameters
385 // subsequent to a parameter with a default argument shall
386 // have default arguments supplied in this or previous
387 // declarations. A default argument shall not be redefined
388 // by a later declaration (not even to the same value).
389 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000390 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000391 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000392 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000393 if (Param->isInvalidDecl())
394 /* We already complained about this parameter. */;
395 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000396 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000397 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000398 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000399 else
Mike Stump11289f42009-09-09 15:08:12 +0000400 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000401 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000402
Chris Lattner199abbc2008-04-08 05:04:30 +0000403 LastMissingDefaultArg = p;
404 }
405 }
406
407 if (LastMissingDefaultArg > 0) {
408 // Some default arguments were missing. Clear out all of the
409 // default arguments up to (and including) the last missing
410 // default argument, so that we leave the function parameters
411 // in a semantically valid state.
412 for (p = 0; p <= LastMissingDefaultArg; ++p) {
413 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000414 if (Param->hasDefaultArg()) {
Douglas Gregor58354032008-12-24 00:01:03 +0000415 if (!Param->hasUnparsedDefaultArg())
416 Param->getDefaultArg()->Destroy(Context);
Chris Lattner199abbc2008-04-08 05:04:30 +0000417 Param->setDefaultArg(0);
418 }
419 }
420 }
421}
Douglas Gregor556877c2008-04-13 21:30:24 +0000422
Douglas Gregor61956c42008-10-31 09:07:45 +0000423/// isCurrentClassName - Determine whether the identifier II is the
424/// name of the class type currently being defined. In the case of
425/// nested classes, this will only return true if II is the name of
426/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000427bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
428 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000429 assert(getLangOptions().CPlusPlus && "No class names in C!");
430
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000431 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000432 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000433 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000434 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
435 } else
436 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
437
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000438 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000439 return &II == CurDecl->getIdentifier();
440 else
441 return false;
442}
443
Mike Stump11289f42009-09-09 15:08:12 +0000444/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000445///
446/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
447/// and returns NULL otherwise.
448CXXBaseSpecifier *
449Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
450 SourceRange SpecifierRange,
451 bool Virtual, AccessSpecifier Access,
Mike Stump11289f42009-09-09 15:08:12 +0000452 QualType BaseType,
Douglas Gregor463421d2009-03-03 04:44:36 +0000453 SourceLocation BaseLoc) {
454 // C++ [class.union]p1:
455 // A union shall not have base classes.
456 if (Class->isUnion()) {
457 Diag(Class->getLocation(), diag::err_base_clause_on_union)
458 << SpecifierRange;
459 return 0;
460 }
461
462 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000463 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000464 Class->getTagKind() == TTK_Class,
Douglas Gregor463421d2009-03-03 04:44:36 +0000465 Access, BaseType);
466
467 // Base specifiers must be record types.
468 if (!BaseType->isRecordType()) {
469 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
470 return 0;
471 }
472
473 // C++ [class.union]p1:
474 // A union shall not be used as a base class.
475 if (BaseType->isUnionType()) {
476 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
477 return 0;
478 }
479
480 // C++ [class.derived]p2:
481 // The class-name in a base-specifier shall not be an incompletely
482 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000483 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000484 PDiag(diag::err_incomplete_base_class)
485 << SpecifierRange))
Douglas Gregor463421d2009-03-03 04:44:36 +0000486 return 0;
487
Eli Friedmanc96d4962009-08-15 21:55:26 +0000488 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000489 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000490 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000491 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000492 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000493 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
494 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000495
Alexis Hunt96d5c762009-11-21 08:43:09 +0000496 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
497 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
498 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregore7488b92009-12-01 16:58:18 +0000499 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
500 << BaseType;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000501 return 0;
502 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000503
Eli Friedman89c038e2009-12-05 23:03:49 +0000504 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
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,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000508 Class->getTagKind() == TTK_Class,
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000509 Access, BaseType);
510}
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
Chris Lattner83f095c2009-03-28 19:18:32 +0000585Sema::ActOnBaseSpecifier(DeclPtrTy 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);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000592 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl.getAs<Decl>());
593 if (!Class)
594 return true;
595
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000596 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor463421d2009-03-03 04:44:36 +0000597 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
598 Virtual, Access,
599 BaseType, BaseLoc))
600 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.
Mike Stump11289f42009-09-09 15:08:12 +0000667void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000668 unsigned NumBases) {
669 if (!ClassDecl || !Bases || !NumBases)
670 return;
671
672 AdjustDeclIfTemplate(ClassDecl);
Chris Lattner83f095c2009-03-28 19:18:32 +0000673 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
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,
722 CXXBaseSpecifierArray &BasePathArray) {
723 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)
741 BasePathArray.push_back(Path[I].Base);
742}
743
Douglas Gregor88d292c2010-05-13 16:44:06 +0000744/// \brief Determine whether the given base path includes a virtual
745/// base class.
746bool Sema::BasePathInvolvesVirtualBase(const CXXBaseSpecifierArray &BasePath) {
747 for (CXXBaseSpecifierArray::iterator B = BasePath.begin(),
748 BEnd = BasePath.end();
749 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,
770 CXXBaseSpecifierArray *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,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000828 CXXBaseSpecifierArray *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.
875Sema::DeclPtrTy
876Sema::ActOnAccessSpecifier(AccessSpecifier Access,
877 SourceLocation ASLoc, SourceLocation ColonLoc) {
878 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
879 AccessSpecDecl* ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
880 ASLoc, ColonLoc);
881 CurContext->addHiddenDecl(ASDecl);
882 return DeclPtrTy::make(ASDecl);
883}
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.
Chris Lattner83f095c2009-03-28 19:18:32 +0000889Sema::DeclPtrTy
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();
Douglas Gregor92751d42008-11-17 22:58:34 +0000895 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000896 Expr *BitWidth = static_cast<Expr*>(BW);
897 Expr *Init = static_cast<Expr*>(InitExpr);
898 SourceLocation Loc = D.getIdentifierLoc();
899
John McCallb1cd7da2010-06-04 08:34:12 +0000900 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +0000901 assert(!DS.isFriendSpecified());
902
John McCallb1cd7da2010-06-04 08:34:12 +0000903 bool isFunc = false;
904 if (D.isFunctionDeclarator())
905 isFunc = true;
906 else if (D.getNumTypeObjects() == 0 &&
907 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
908 QualType TDType = GetTypeFromParser(DS.getTypeRep());
909 isFunc = TDType->isFunctionType();
910 }
911
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000912 // C++ 9.2p6: A member shall not be declared to have automatic storage
913 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000914 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
915 // data members and cannot be applied to names declared const or static,
916 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000917 switch (DS.getStorageClassSpec()) {
918 case DeclSpec::SCS_unspecified:
919 case DeclSpec::SCS_typedef:
920 case DeclSpec::SCS_static:
921 // FALL THROUGH.
922 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000923 case DeclSpec::SCS_mutable:
924 if (isFunc) {
925 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000926 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000927 else
Chris Lattner3b054132008-11-19 05:08:23 +0000928 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000929
Sebastian Redl8071edb2008-11-17 23:24:37 +0000930 // FIXME: It would be nicer if the keyword was ignored only for this
931 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000932 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000933 }
934 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000935 default:
936 if (DS.getStorageClassSpecLoc().isValid())
937 Diag(DS.getStorageClassSpecLoc(),
938 diag::err_storageclass_invalid_for_member);
939 else
940 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
941 D.getMutableDeclSpec().ClearStorageClassSpecs();
942 }
943
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000944 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
945 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000946 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000947
948 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000949 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000950 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000951 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
952 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000953 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000954 } else {
Sebastian Redld6f78502009-11-24 23:38:44 +0000955 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor3447e762009-08-20 22:52:58 +0000956 .getAs<Decl>();
Chris Lattner97e277e2009-03-05 23:03:49 +0000957 if (!Member) {
958 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000959 return DeclPtrTy();
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)
Chris Lattner83f095c2009-03-28 19:18:32 +0000999 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001000 if (Deleted) // FIXME: Source location is not very good.
1001 SetDeclDeleted(DeclPtrTy::make(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));
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001005 return DeclPtrTy();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001006 }
Chris Lattner83f095c2009-03-28 19:18:32 +00001007 return DeclPtrTy::make(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
Chris Lattner83f095c2009-03-28 19:18:32 +00001057Sema::ActOnMemInitializer(DeclPtrTy 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
Chris Lattner83f095c2009-03-28 19:18:32 +00001073 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
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 Friedman8e1433b2009-07-29 19:44:27 +00001288 QualType FieldType = Member->getType();
1289 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1290 FieldType = Array->getElementType();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001291 if (FieldType->isDependentType() || HasDependentArg) {
1292 // Can't check initialization for a member of dependent type or when
1293 // any of the arguments are type-dependent expressions.
1294 OwningExprResult Init
1295 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1296 RParenLoc));
1297
1298 // Erase any temporaries within this evaluation context; we're not
1299 // going to track them in the AST, since we'll be rebuilding the
1300 // ASTs during template instantiation.
1301 ExprTemporaries.erase(
1302 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1303 ExprTemporaries.end());
1304
1305 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1306 LParenLoc,
1307 Init.takeAs<Expr>(),
1308 RParenLoc);
1309
Douglas Gregore8381c02008-11-05 04:29:56 +00001310 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001311
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001312 if (Member->isInvalidDecl())
1313 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001314
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001315 // Initialize the member.
1316 InitializedEntity MemberEntity =
1317 InitializedEntity::InitializeMember(Member, 0);
1318 InitializationKind Kind =
1319 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1320
1321 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1322
1323 OwningExprResult MemberInit =
1324 InitSeq.Perform(*this, MemberEntity, Kind,
1325 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1326 if (MemberInit.isInvalid())
1327 return true;
1328
1329 // C++0x [class.base.init]p7:
1330 // The initialization of each base and member constitutes a
1331 // full-expression.
1332 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1333 if (MemberInit.isInvalid())
1334 return true;
1335
1336 // If we are in a dependent context, template instantiation will
1337 // perform this type-checking again. Just save the arguments that we
1338 // received in a ParenListExpr.
1339 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1340 // of the information that we have about the member
1341 // initializer. However, deconstructing the ASTs is a dicey process,
1342 // and this approach is far more likely to get the corner cases right.
1343 if (CurContext->isDependentContext()) {
1344 // Bump the reference count of all of the arguments.
1345 for (unsigned I = 0; I != NumArgs; ++I)
1346 Args[I]->Retain();
1347
1348 OwningExprResult Init
1349 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1350 RParenLoc));
1351 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1352 LParenLoc,
1353 Init.takeAs<Expr>(),
1354 RParenLoc);
1355 }
1356
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001357 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001358 LParenLoc,
1359 MemberInit.takeAs<Expr>(),
1360 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001361}
1362
1363Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001364Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001365 Expr **Args, unsigned NumArgs,
1366 SourceLocation LParenLoc, SourceLocation RParenLoc,
1367 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001368 bool HasDependentArg = false;
1369 for (unsigned i = 0; i < NumArgs; i++)
1370 HasDependentArg |= Args[i]->isTypeDependent();
1371
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001372 SourceLocation BaseLoc
1373 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1374
1375 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1376 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1377 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1378
1379 // C++ [class.base.init]p2:
1380 // [...] Unless the mem-initializer-id names a nonstatic data
1381 // member of the constructor’s class or a direct or virtual base
1382 // of that class, the mem-initializer is ill-formed. A
1383 // mem-initializer-list can initialize a base class using any
1384 // name that denotes that base class type.
1385 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1386
1387 // Check for direct and virtual base classes.
1388 const CXXBaseSpecifier *DirectBaseSpec = 0;
1389 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1390 if (!Dependent) {
1391 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1392 VirtualBaseSpec);
1393
1394 // C++ [base.class.init]p2:
1395 // Unless the mem-initializer-id names a nonstatic data member of the
1396 // constructor's class or a direct or virtual base of that class, the
1397 // mem-initializer is ill-formed.
1398 if (!DirectBaseSpec && !VirtualBaseSpec) {
1399 // If the class has any dependent bases, then it's possible that
1400 // one of those types will resolve to the same type as
1401 // BaseType. Therefore, just treat this as a dependent base
1402 // class initialization. FIXME: Should we try to check the
1403 // initialization anyway? It seems odd.
1404 if (ClassDecl->hasAnyDependentBases())
1405 Dependent = true;
1406 else
1407 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1408 << BaseType << Context.getTypeDeclType(ClassDecl)
1409 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1410 }
1411 }
1412
1413 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001414 // Can't check initialization for a base of dependent type or when
1415 // any of the arguments are type-dependent expressions.
1416 OwningExprResult BaseInit
1417 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1418 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001419
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001420 // Erase any temporaries within this evaluation context; we're not
1421 // going to track them in the AST, since we'll be rebuilding the
1422 // ASTs during template instantiation.
1423 ExprTemporaries.erase(
1424 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1425 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001426
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001427 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001428 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001429 LParenLoc,
1430 BaseInit.takeAs<Expr>(),
1431 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001432 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001433
1434 // C++ [base.class.init]p2:
1435 // If a mem-initializer-id is ambiguous because it designates both
1436 // a direct non-virtual base class and an inherited virtual base
1437 // class, the mem-initializer is ill-formed.
1438 if (DirectBaseSpec && VirtualBaseSpec)
1439 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001440 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001441
1442 CXXBaseSpecifier *BaseSpec
1443 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1444 if (!BaseSpec)
1445 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1446
1447 // Initialize the base.
1448 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001449 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001450 InitializationKind Kind =
1451 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1452
1453 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1454
1455 OwningExprResult BaseInit =
1456 InitSeq.Perform(*this, BaseEntity, Kind,
1457 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1458 if (BaseInit.isInvalid())
1459 return true;
1460
1461 // C++0x [class.base.init]p7:
1462 // The initialization of each base and member constitutes a
1463 // full-expression.
1464 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1465 if (BaseInit.isInvalid())
1466 return true;
1467
1468 // If we are in a dependent context, template instantiation will
1469 // perform this type-checking again. Just save the arguments that we
1470 // received in a ParenListExpr.
1471 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1472 // of the information that we have about the base
1473 // initializer. However, deconstructing the ASTs is a dicey process,
1474 // and this approach is far more likely to get the corner cases right.
1475 if (CurContext->isDependentContext()) {
1476 // Bump the reference count of all of the arguments.
1477 for (unsigned I = 0; I != NumArgs; ++I)
1478 Args[I]->Retain();
1479
1480 OwningExprResult Init
1481 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1482 RParenLoc));
1483 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001484 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001485 LParenLoc,
1486 Init.takeAs<Expr>(),
1487 RParenLoc);
1488 }
1489
1490 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001491 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001492 LParenLoc,
1493 BaseInit.takeAs<Expr>(),
1494 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001495}
1496
Anders Carlsson1b00e242010-04-23 03:10:23 +00001497/// ImplicitInitializerKind - How an implicit base or member initializer should
1498/// initialize its base or member.
1499enum ImplicitInitializerKind {
1500 IIK_Default,
1501 IIK_Copy,
1502 IIK_Move
1503};
1504
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001505static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001506BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001507 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001508 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001509 bool IsInheritedVirtualBase,
1510 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001511 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001512 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1513 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001514
Anders Carlsson1b00e242010-04-23 03:10:23 +00001515 Sema::OwningExprResult BaseInit(SemaRef);
1516
1517 switch (ImplicitInitKind) {
1518 case IIK_Default: {
1519 InitializationKind InitKind
1520 = InitializationKind::CreateDefault(Constructor->getLocation());
1521 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1522 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1523 Sema::MultiExprArg(SemaRef, 0, 0));
1524 break;
1525 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001526
Anders Carlsson1b00e242010-04-23 03:10:23 +00001527 case IIK_Copy: {
1528 ParmVarDecl *Param = Constructor->getParamDecl(0);
1529 QualType ParamType = Param->getType().getNonReferenceType();
1530
1531 Expr *CopyCtorArg =
1532 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001533 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001534
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001535 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001536 QualType ArgTy =
1537 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1538 ParamType.getQualifiers());
1539 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001540 CastExpr::CK_UncheckedDerivedToBase,
Anders Carlsson36db0d92010-04-24 22:54:32 +00001541 /*isLvalue=*/true,
1542 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001543
Anders Carlsson1b00e242010-04-23 03:10:23 +00001544 InitializationKind InitKind
1545 = InitializationKind::CreateDirect(Constructor->getLocation(),
1546 SourceLocation(), SourceLocation());
1547 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1548 &CopyCtorArg, 1);
1549 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1550 Sema::MultiExprArg(SemaRef,
1551 (void**)&CopyCtorArg, 1));
1552 break;
1553 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001554
Anders Carlsson1b00e242010-04-23 03:10:23 +00001555 case IIK_Move:
1556 assert(false && "Unhandled initializer kind!");
1557 }
1558
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001559 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1560 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001561 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001562
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001563 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001564 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1565 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1566 SourceLocation()),
1567 BaseSpec->isVirtual(),
1568 SourceLocation(),
1569 BaseInit.takeAs<Expr>(),
1570 SourceLocation());
1571
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001572 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001573}
1574
Anders Carlsson3c1db572010-04-23 02:15:47 +00001575static bool
1576BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001577 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001578 FieldDecl *Field,
1579 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001580 if (Field->isInvalidDecl())
1581 return true;
1582
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001583 SourceLocation Loc = Constructor->getLocation();
1584
Anders Carlsson423f5d82010-04-23 16:04:08 +00001585 if (ImplicitInitKind == IIK_Copy) {
1586 ParmVarDecl *Param = Constructor->getParamDecl(0);
1587 QualType ParamType = Param->getType().getNonReferenceType();
1588
1589 Expr *MemberExprBase =
1590 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001591 Loc, ParamType, 0);
1592
1593 // Build a reference to this field within the parameter.
1594 CXXScopeSpec SS;
1595 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1596 Sema::LookupMemberName);
1597 MemberLookup.addDecl(Field, AS_public);
1598 MemberLookup.resolveKind();
1599 Sema::OwningExprResult CopyCtorArg
1600 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1601 ParamType, Loc,
1602 /*IsArrow=*/false,
1603 SS,
1604 /*FirstQualifierInScope=*/0,
1605 MemberLookup,
1606 /*TemplateArgs=*/0);
1607 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001608 return true;
1609
Douglas Gregor94f9a482010-05-05 05:51:00 +00001610 // When the field we are copying is an array, create index variables for
1611 // each dimension of the array. We use these index variables to subscript
1612 // the source array, and other clients (e.g., CodeGen) will perform the
1613 // necessary iteration with these index variables.
1614 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1615 QualType BaseType = Field->getType();
1616 QualType SizeType = SemaRef.Context.getSizeType();
1617 while (const ConstantArrayType *Array
1618 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1619 // Create the iteration variable for this array index.
1620 IdentifierInfo *IterationVarName = 0;
1621 {
1622 llvm::SmallString<8> Str;
1623 llvm::raw_svector_ostream OS(Str);
1624 OS << "__i" << IndexVariables.size();
1625 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1626 }
1627 VarDecl *IterationVar
1628 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1629 IterationVarName, SizeType,
1630 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1631 VarDecl::None, VarDecl::None);
1632 IndexVariables.push_back(IterationVar);
1633
1634 // Create a reference to the iteration variable.
1635 Sema::OwningExprResult IterationVarRef
1636 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1637 assert(!IterationVarRef.isInvalid() &&
1638 "Reference to invented variable cannot fail!");
1639
1640 // Subscript the array with this iteration variable.
1641 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1642 Loc,
1643 move(IterationVarRef),
1644 Loc);
1645 if (CopyCtorArg.isInvalid())
1646 return true;
1647
1648 BaseType = Array->getElementType();
1649 }
1650
1651 // Construct the entity that we will be initializing. For an array, this
1652 // will be first element in the array, which may require several levels
1653 // of array-subscript entities.
1654 llvm::SmallVector<InitializedEntity, 4> Entities;
1655 Entities.reserve(1 + IndexVariables.size());
1656 Entities.push_back(InitializedEntity::InitializeMember(Field));
1657 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1658 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1659 0,
1660 Entities.back()));
1661
1662 // Direct-initialize to use the copy constructor.
1663 InitializationKind InitKind =
1664 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1665
1666 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1667 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1668 &CopyCtorArgE, 1);
1669
1670 Sema::OwningExprResult MemberInit
1671 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1672 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1673 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1674 if (MemberInit.isInvalid())
1675 return true;
1676
1677 CXXMemberInit
1678 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1679 MemberInit.takeAs<Expr>(), Loc,
1680 IndexVariables.data(),
1681 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001682 return false;
1683 }
1684
Anders Carlsson423f5d82010-04-23 16:04:08 +00001685 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1686
Anders Carlsson3c1db572010-04-23 02:15:47 +00001687 QualType FieldBaseElementType =
1688 SemaRef.Context.getBaseElementType(Field->getType());
1689
Anders Carlsson3c1db572010-04-23 02:15:47 +00001690 if (FieldBaseElementType->isRecordType()) {
1691 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001692 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001693 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001694
1695 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1696 Sema::OwningExprResult MemberInit =
1697 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1698 Sema::MultiExprArg(SemaRef, 0, 0));
1699 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1700 if (MemberInit.isInvalid())
1701 return true;
1702
1703 CXXMemberInit =
1704 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001705 Field, Loc, Loc,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001706 MemberInit.takeAs<Expr>(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001707 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001708 return false;
1709 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001710
1711 if (FieldBaseElementType->isReferenceType()) {
1712 SemaRef.Diag(Constructor->getLocation(),
1713 diag::err_uninitialized_member_in_ctor)
1714 << (int)Constructor->isImplicit()
1715 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1716 << 0 << Field->getDeclName();
1717 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1718 return true;
1719 }
1720
1721 if (FieldBaseElementType.isConstQualified()) {
1722 SemaRef.Diag(Constructor->getLocation(),
1723 diag::err_uninitialized_member_in_ctor)
1724 << (int)Constructor->isImplicit()
1725 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1726 << 1 << Field->getDeclName();
1727 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1728 return true;
1729 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001730
1731 // Nothing to initialize.
1732 CXXMemberInit = 0;
1733 return false;
1734}
John McCallbc83b3f2010-05-20 23:23:51 +00001735
1736namespace {
1737struct BaseAndFieldInfo {
1738 Sema &S;
1739 CXXConstructorDecl *Ctor;
1740 bool AnyErrorsInInits;
1741 ImplicitInitializerKind IIK;
1742 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1743 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1744
1745 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1746 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1747 // FIXME: Handle implicit move constructors.
1748 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1749 IIK = IIK_Copy;
1750 else
1751 IIK = IIK_Default;
1752 }
1753};
1754}
1755
Chandler Carruth139e9622010-06-30 02:59:29 +00001756static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1757 FieldDecl *Top, FieldDecl *Field,
1758 CXXBaseOrMemberInitializer *Init) {
1759 // If the member doesn't need to be initialized, Init will still be null.
1760 if (!Init)
1761 return;
1762
1763 Info.AllToInit.push_back(Init);
1764 if (Field != Top) {
1765 Init->setMember(Top);
1766 Init->setAnonUnionMember(Field);
1767 }
1768}
1769
John McCallbc83b3f2010-05-20 23:23:51 +00001770static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1771 FieldDecl *Top, FieldDecl *Field) {
1772
Chandler Carruth139e9622010-06-30 02:59:29 +00001773 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001774 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001775 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001776 return false;
1777 }
1778
1779 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1780 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1781 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001782 CXXRecordDecl *FieldClassDecl
1783 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001784
1785 // Even though union members never have non-trivial default
1786 // constructions in C++03, we still build member initializers for aggregate
1787 // record types which can be union members, and C++0x allows non-trivial
1788 // default constructors for union members, so we ensure that only one
1789 // member is initialized for these.
1790 if (FieldClassDecl->isUnion()) {
1791 // First check for an explicit initializer for one field.
1792 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1793 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1794 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1795 RecordFieldInitializer(Info, Top, *FA, Init);
1796
1797 // Once we've initialized a field of an anonymous union, the union
1798 // field in the class is also initialized, so exit immediately.
1799 return false;
1800 }
1801 }
1802
1803 // Fallthrough and construct a default initializer for the union as
1804 // a whole, which can call its default constructor if such a thing exists
1805 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1806 // behavior going forward with C++0x, when anonymous unions there are
1807 // finalized, we should revisit this.
1808 } else {
1809 // For structs, we simply descend through to initialize all members where
1810 // necessary.
1811 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1812 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1813 if (CollectFieldInitializer(Info, Top, *FA))
1814 return true;
1815 }
1816 }
John McCallbc83b3f2010-05-20 23:23:51 +00001817 }
1818
1819 // Don't try to build an implicit initializer if there were semantic
1820 // errors in any of the initializers (and therefore we might be
1821 // missing some that the user actually wrote).
1822 if (Info.AnyErrorsInInits)
1823 return false;
1824
1825 CXXBaseOrMemberInitializer *Init = 0;
1826 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1827 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001828
Chandler Carruth139e9622010-06-30 02:59:29 +00001829 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001830 return false;
1831}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001832
Eli Friedman9cf6b592009-11-09 19:20:36 +00001833bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001834Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001835 CXXBaseOrMemberInitializer **Initializers,
1836 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001837 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001838 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001839 // Just store the initializers as written, they will be checked during
1840 // instantiation.
1841 if (NumInitializers > 0) {
1842 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1843 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1844 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1845 memcpy(baseOrMemberInitializers, Initializers,
1846 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1847 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1848 }
1849
1850 return false;
1851 }
1852
John McCallbc83b3f2010-05-20 23:23:51 +00001853 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001854
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001855 // We need to build the initializer AST according to order of construction
1856 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001857 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001858 if (!ClassDecl)
1859 return true;
1860
Eli Friedman9cf6b592009-11-09 19:20:36 +00001861 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001862
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001863 for (unsigned i = 0; i < NumInitializers; i++) {
1864 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001865
1866 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001867 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001868 else
John McCallbc83b3f2010-05-20 23:23:51 +00001869 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001870 }
1871
Anders Carlsson43c64af2010-04-21 19:52:01 +00001872 // Keep track of the direct virtual bases.
1873 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1874 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1875 E = ClassDecl->bases_end(); I != E; ++I) {
1876 if (I->isVirtual())
1877 DirectVBases.insert(I);
1878 }
1879
Anders Carlssondb0a9652010-04-02 06:26:44 +00001880 // Push virtual bases before others.
1881 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1882 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1883
1884 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001885 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1886 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001887 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001888 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001889 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001890 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001891 VBase, IsInheritedVirtualBase,
1892 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001893 HadError = true;
1894 continue;
1895 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001896
John McCallbc83b3f2010-05-20 23:23:51 +00001897 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001898 }
1899 }
Mike Stump11289f42009-09-09 15:08:12 +00001900
John McCallbc83b3f2010-05-20 23:23:51 +00001901 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001902 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1903 E = ClassDecl->bases_end(); Base != E; ++Base) {
1904 // Virtuals are in the virtual base list and already constructed.
1905 if (Base->isVirtual())
1906 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001907
Anders Carlssondb0a9652010-04-02 06:26:44 +00001908 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001909 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1910 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001911 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001912 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001913 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001914 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001915 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001916 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001917 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001918 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001919
John McCallbc83b3f2010-05-20 23:23:51 +00001920 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001921 }
1922 }
Mike Stump11289f42009-09-09 15:08:12 +00001923
John McCallbc83b3f2010-05-20 23:23:51 +00001924 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001925 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001926 E = ClassDecl->field_end(); Field != E; ++Field) {
1927 if ((*Field)->getType()->isIncompleteArrayType()) {
1928 assert(ClassDecl->hasFlexibleArrayMember() &&
1929 "Incomplete array type is not valid");
1930 continue;
1931 }
John McCallbc83b3f2010-05-20 23:23:51 +00001932 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001933 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001934 }
Mike Stump11289f42009-09-09 15:08:12 +00001935
John McCallbc83b3f2010-05-20 23:23:51 +00001936 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001937 if (NumInitializers > 0) {
1938 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1939 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1940 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001941 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001942 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001943 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001944
John McCalla6309952010-03-16 21:39:52 +00001945 // Constructors implicitly reference the base and member
1946 // destructors.
1947 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1948 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001949 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001950
1951 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001952}
1953
Eli Friedman952c15d2009-07-21 19:28:10 +00001954static void *GetKeyForTopLevelField(FieldDecl *Field) {
1955 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001956 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001957 if (RT->getDecl()->isAnonymousStructOrUnion())
1958 return static_cast<void *>(RT->getDecl());
1959 }
1960 return static_cast<void *>(Field);
1961}
1962
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001963static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1964 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001965}
1966
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001967static void *GetKeyForMember(ASTContext &Context,
1968 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001969 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001970 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001971 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001972
Eli Friedman952c15d2009-07-21 19:28:10 +00001973 // For fields injected into the class via declaration of an anonymous union,
1974 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001975 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001976
Anders Carlssona942dcd2010-03-30 15:39:27 +00001977 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1978 // data member of the class. Data member used in the initializer list is
1979 // in AnonUnionMember field.
1980 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1981 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001982
John McCall23eebd92010-04-10 09:28:51 +00001983 // If the field is a member of an anonymous struct or union, our key
1984 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001985 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001986 if (RD->isAnonymousStructOrUnion()) {
1987 while (true) {
1988 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1989 if (Parent->isAnonymousStructOrUnion())
1990 RD = Parent;
1991 else
1992 break;
1993 }
1994
Anders Carlsson83ac3122010-03-30 16:19:37 +00001995 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00001996 }
Mike Stump11289f42009-09-09 15:08:12 +00001997
Anders Carlssona942dcd2010-03-30 15:39:27 +00001998 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00001999}
2000
Anders Carlssone857b292010-04-02 03:37:03 +00002001static void
2002DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002003 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00002004 CXXBaseOrMemberInitializer **Inits,
2005 unsigned NumInits) {
2006 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002007 return;
Mike Stump11289f42009-09-09 15:08:12 +00002008
John McCallbb7b6582010-04-10 07:37:23 +00002009 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2010 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002011 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002012
John McCallbb7b6582010-04-10 07:37:23 +00002013 // Build the list of bases and members in the order that they'll
2014 // actually be initialized. The explicit initializers should be in
2015 // this same order but may be missing things.
2016 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002017
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002018 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2019
John McCallbb7b6582010-04-10 07:37:23 +00002020 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002021 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002022 ClassDecl->vbases_begin(),
2023 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002024 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002025
John McCallbb7b6582010-04-10 07:37:23 +00002026 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002027 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002028 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002029 if (Base->isVirtual())
2030 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002031 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002032 }
Mike Stump11289f42009-09-09 15:08:12 +00002033
John McCallbb7b6582010-04-10 07:37:23 +00002034 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002035 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2036 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002037 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002038
John McCallbb7b6582010-04-10 07:37:23 +00002039 unsigned NumIdealInits = IdealInitKeys.size();
2040 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002041
John McCallbb7b6582010-04-10 07:37:23 +00002042 CXXBaseOrMemberInitializer *PrevInit = 0;
2043 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2044 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2045 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2046
2047 // Scan forward to try to find this initializer in the idealized
2048 // initializers list.
2049 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2050 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002051 break;
John McCallbb7b6582010-04-10 07:37:23 +00002052
2053 // If we didn't find this initializer, it must be because we
2054 // scanned past it on a previous iteration. That can only
2055 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002056 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002057 Sema::SemaDiagnosticBuilder D =
2058 SemaRef.Diag(PrevInit->getSourceLocation(),
2059 diag::warn_initializer_out_of_order);
2060
2061 if (PrevInit->isMemberInitializer())
2062 D << 0 << PrevInit->getMember()->getDeclName();
2063 else
2064 D << 1 << PrevInit->getBaseClassInfo()->getType();
2065
2066 if (Init->isMemberInitializer())
2067 D << 0 << Init->getMember()->getDeclName();
2068 else
2069 D << 1 << Init->getBaseClassInfo()->getType();
2070
2071 // Move back to the initializer's location in the ideal list.
2072 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2073 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002074 break;
John McCallbb7b6582010-04-10 07:37:23 +00002075
2076 assert(IdealIndex != NumIdealInits &&
2077 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002078 }
John McCallbb7b6582010-04-10 07:37:23 +00002079
2080 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002081 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002082}
2083
John McCall23eebd92010-04-10 09:28:51 +00002084namespace {
2085bool CheckRedundantInit(Sema &S,
2086 CXXBaseOrMemberInitializer *Init,
2087 CXXBaseOrMemberInitializer *&PrevInit) {
2088 if (!PrevInit) {
2089 PrevInit = Init;
2090 return false;
2091 }
2092
2093 if (FieldDecl *Field = Init->getMember())
2094 S.Diag(Init->getSourceLocation(),
2095 diag::err_multiple_mem_initialization)
2096 << Field->getDeclName()
2097 << Init->getSourceRange();
2098 else {
2099 Type *BaseClass = Init->getBaseClass();
2100 assert(BaseClass && "neither field nor base");
2101 S.Diag(Init->getSourceLocation(),
2102 diag::err_multiple_base_initialization)
2103 << QualType(BaseClass, 0)
2104 << Init->getSourceRange();
2105 }
2106 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2107 << 0 << PrevInit->getSourceRange();
2108
2109 return true;
2110}
2111
2112typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2113typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2114
2115bool CheckRedundantUnionInit(Sema &S,
2116 CXXBaseOrMemberInitializer *Init,
2117 RedundantUnionMap &Unions) {
2118 FieldDecl *Field = Init->getMember();
2119 RecordDecl *Parent = Field->getParent();
2120 if (!Parent->isAnonymousStructOrUnion())
2121 return false;
2122
2123 NamedDecl *Child = Field;
2124 do {
2125 if (Parent->isUnion()) {
2126 UnionEntry &En = Unions[Parent];
2127 if (En.first && En.first != Child) {
2128 S.Diag(Init->getSourceLocation(),
2129 diag::err_multiple_mem_union_initialization)
2130 << Field->getDeclName()
2131 << Init->getSourceRange();
2132 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2133 << 0 << En.second->getSourceRange();
2134 return true;
2135 } else if (!En.first) {
2136 En.first = Child;
2137 En.second = Init;
2138 }
2139 }
2140
2141 Child = Parent;
2142 Parent = cast<RecordDecl>(Parent->getDeclContext());
2143 } while (Parent->isAnonymousStructOrUnion());
2144
2145 return false;
2146}
2147}
2148
Anders Carlssone857b292010-04-02 03:37:03 +00002149/// ActOnMemInitializers - Handle the member initializers for a constructor.
2150void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2151 SourceLocation ColonLoc,
2152 MemInitTy **meminits, unsigned NumMemInits,
2153 bool AnyErrors) {
2154 if (!ConstructorDecl)
2155 return;
2156
2157 AdjustDeclIfTemplate(ConstructorDecl);
2158
2159 CXXConstructorDecl *Constructor
2160 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2161
2162 if (!Constructor) {
2163 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2164 return;
2165 }
2166
2167 CXXBaseOrMemberInitializer **MemInits =
2168 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002169
2170 // Mapping for the duplicate initializers check.
2171 // For member initializers, this is keyed with a FieldDecl*.
2172 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002173 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002174
2175 // Mapping for the inconsistent anonymous-union initializers check.
2176 RedundantUnionMap MemberUnions;
2177
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002178 bool HadError = false;
2179 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002180 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002181
Abramo Bagnara341d7832010-05-26 18:09:23 +00002182 // Set the source order index.
2183 Init->setSourceOrder(i);
2184
John McCall23eebd92010-04-10 09:28:51 +00002185 if (Init->isMemberInitializer()) {
2186 FieldDecl *Field = Init->getMember();
2187 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2188 CheckRedundantUnionInit(*this, Init, MemberUnions))
2189 HadError = true;
2190 } else {
2191 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2192 if (CheckRedundantInit(*this, Init, Members[Key]))
2193 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002194 }
Anders Carlssone857b292010-04-02 03:37:03 +00002195 }
2196
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002197 if (HadError)
2198 return;
2199
Anders Carlssone857b292010-04-02 03:37:03 +00002200 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002201
2202 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002203}
2204
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002205void
John McCalla6309952010-03-16 21:39:52 +00002206Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2207 CXXRecordDecl *ClassDecl) {
2208 // Ignore dependent contexts.
2209 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002210 return;
John McCall1064d7e2010-03-16 05:22:47 +00002211
2212 // FIXME: all the access-control diagnostics are positioned on the
2213 // field/base declaration. That's probably good; that said, the
2214 // user might reasonably want to know why the destructor is being
2215 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002216
Anders Carlssondee9a302009-11-17 04:44:12 +00002217 // Non-static data members.
2218 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2219 E = ClassDecl->field_end(); I != E; ++I) {
2220 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002221 if (Field->isInvalidDecl())
2222 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002223 QualType FieldType = Context.getBaseElementType(Field->getType());
2224
2225 const RecordType* RT = FieldType->getAs<RecordType>();
2226 if (!RT)
2227 continue;
2228
2229 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2230 if (FieldClassDecl->hasTrivialDestructor())
2231 continue;
2232
Douglas Gregore71edda2010-07-01 22:47:18 +00002233 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002234 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002235 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002236 << Field->getDeclName()
2237 << FieldType);
2238
John McCalla6309952010-03-16 21:39:52 +00002239 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002240 }
2241
John McCall1064d7e2010-03-16 05:22:47 +00002242 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2243
Anders Carlssondee9a302009-11-17 04:44:12 +00002244 // Bases.
2245 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2246 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002247 // Bases are always records in a well-formed non-dependent class.
2248 const RecordType *RT = Base->getType()->getAs<RecordType>();
2249
2250 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002251 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002252 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002253
2254 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002255 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002256 if (BaseClassDecl->hasTrivialDestructor())
2257 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002258
Douglas Gregore71edda2010-07-01 22:47:18 +00002259 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002260
2261 // FIXME: caret should be on the start of the class name
2262 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002263 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002264 << Base->getType()
2265 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002266
John McCalla6309952010-03-16 21:39:52 +00002267 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002268 }
2269
2270 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002271 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2272 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002273
2274 // Bases are always records in a well-formed non-dependent class.
2275 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2276
2277 // Ignore direct virtual bases.
2278 if (DirectVirtualBases.count(RT))
2279 continue;
2280
Anders Carlssondee9a302009-11-17 04:44:12 +00002281 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002282 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002283 if (BaseClassDecl->hasTrivialDestructor())
2284 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002285
Douglas Gregore71edda2010-07-01 22:47:18 +00002286 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002287 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002288 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002289 << VBase->getType());
2290
John McCalla6309952010-03-16 21:39:52 +00002291 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002292 }
2293}
2294
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +00002295void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002296 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002297 return;
Mike Stump11289f42009-09-09 15:08:12 +00002298
Mike Stump11289f42009-09-09 15:08:12 +00002299 if (CXXConstructorDecl *Constructor
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002300 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002301 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002302}
2303
Mike Stump11289f42009-09-09 15:08:12 +00002304bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002305 unsigned DiagID, AbstractDiagSelID SelID,
2306 const CXXRecordDecl *CurrentRD) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002307 if (SelID == -1)
2308 return RequireNonAbstractType(Loc, T,
2309 PDiag(DiagID), CurrentRD);
2310 else
2311 return RequireNonAbstractType(Loc, T,
2312 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002313}
2314
Anders Carlssoneabf7702009-08-27 00:13:57 +00002315bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2316 const PartialDiagnostic &PD,
2317 const CXXRecordDecl *CurrentRD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002318 if (!getLangOptions().CPlusPlus)
2319 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002320
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002321 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002322 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002323 CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002324
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002325 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002326 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002327 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002328 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002329
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002330 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002331 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002332 }
Mike Stump11289f42009-09-09 15:08:12 +00002333
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002334 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002335 if (!RT)
2336 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002337
John McCall67da35c2010-02-04 22:26:26 +00002338 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002339
Anders Carlssonb57738b2009-03-24 17:23:42 +00002340 if (CurrentRD && CurrentRD != RD)
2341 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002342
John McCall67da35c2010-02-04 22:26:26 +00002343 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002344 if (!RD->getDefinition())
John McCall67da35c2010-02-04 22:26:26 +00002345 return false;
2346
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002347 if (!RD->isAbstract())
2348 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002349
Anders Carlssoneabf7702009-08-27 00:13:57 +00002350 Diag(Loc, PD) << RD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002351
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002352 // Check if we've already emitted the list of pure virtual functions for this
2353 // class.
2354 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2355 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002356
Douglas Gregor4165bd62010-03-23 23:47:56 +00002357 CXXFinalOverriderMap FinalOverriders;
2358 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002359
Anders Carlssona2f74f32010-06-03 01:00:02 +00002360 // Keep a set of seen pure methods so we won't diagnose the same method
2361 // more than once.
2362 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2363
Douglas Gregor4165bd62010-03-23 23:47:56 +00002364 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2365 MEnd = FinalOverriders.end();
2366 M != MEnd;
2367 ++M) {
2368 for (OverridingMethods::iterator SO = M->second.begin(),
2369 SOEnd = M->second.end();
2370 SO != SOEnd; ++SO) {
2371 // C++ [class.abstract]p4:
2372 // A class is abstract if it contains or inherits at least one
2373 // pure virtual function for which the final overrider is pure
2374 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002375
Douglas Gregor4165bd62010-03-23 23:47:56 +00002376 //
2377 if (SO->second.size() != 1)
2378 continue;
2379
2380 if (!SO->second.front().Method->isPure())
2381 continue;
2382
Anders Carlssona2f74f32010-06-03 01:00:02 +00002383 if (!SeenPureMethods.insert(SO->second.front().Method))
2384 continue;
2385
Douglas Gregor4165bd62010-03-23 23:47:56 +00002386 Diag(SO->second.front().Method->getLocation(),
2387 diag::note_pure_virtual_function)
2388 << SO->second.front().Method->getDeclName();
2389 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002390 }
2391
2392 if (!PureVirtualClassDiagSet)
2393 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2394 PureVirtualClassDiagSet->insert(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002395
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002396 return true;
2397}
2398
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002399namespace {
Benjamin Kramer337e3a52009-11-28 19:45:26 +00002400 class AbstractClassUsageDiagnoser
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002401 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2402 Sema &SemaRef;
2403 CXXRecordDecl *AbstractClass;
Mike Stump11289f42009-09-09 15:08:12 +00002404
Anders Carlssonb57738b2009-03-24 17:23:42 +00002405 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002406 bool Invalid = false;
2407
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002408 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2409 E = DC->decls_end(); I != E; ++I)
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002410 Invalid |= Visit(*I);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002411
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002412 return Invalid;
2413 }
Mike Stump11289f42009-09-09 15:08:12 +00002414
Anders Carlssonb57738b2009-03-24 17:23:42 +00002415 public:
2416 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2417 : SemaRef(SemaRef), AbstractClass(ac) {
2418 Visit(SemaRef.Context.getTranslationUnitDecl());
2419 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002420
Anders Carlssonb57738b2009-03-24 17:23:42 +00002421 bool VisitFunctionDecl(const FunctionDecl *FD) {
2422 if (FD->isThisDeclarationADefinition()) {
2423 // No need to do the check if we're in a definition, because it requires
2424 // that the return/param types are complete.
Mike Stump11289f42009-09-09 15:08:12 +00002425 // because that requires
Anders Carlssonb57738b2009-03-24 17:23:42 +00002426 return VisitDeclContext(FD);
2427 }
Mike Stump11289f42009-09-09 15:08:12 +00002428
Anders Carlssonb57738b2009-03-24 17:23:42 +00002429 // Check the return type.
John McCall9dd450b2009-09-21 23:43:11 +00002430 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00002431 bool Invalid =
Anders Carlssonb57738b2009-03-24 17:23:42 +00002432 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2433 diag::err_abstract_type_in_decl,
2434 Sema::AbstractReturnType,
2435 AbstractClass);
2436
Mike Stump11289f42009-09-09 15:08:12 +00002437 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssonb57738b2009-03-24 17:23:42 +00002438 E = FD->param_end(); I != E; ++I) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002439 const ParmVarDecl *VD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002440 Invalid |=
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002441 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002442 VD->getOriginalType(),
2443 diag::err_abstract_type_in_decl,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002444 Sema::AbstractParamType,
2445 AbstractClass);
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002446 }
2447
2448 return Invalid;
2449 }
Mike Stump11289f42009-09-09 15:08:12 +00002450
Anders Carlssonb57738b2009-03-24 17:23:42 +00002451 bool VisitDecl(const Decl* D) {
2452 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2453 return VisitDeclContext(DC);
Mike Stump11289f42009-09-09 15:08:12 +00002454
Anders Carlssonb57738b2009-03-24 17:23:42 +00002455 return false;
2456 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002457 };
2458}
2459
Douglas Gregorc99f1552009-12-03 18:33:45 +00002460/// \brief Perform semantic checks on a class definition that has been
2461/// completing, introducing implicitly-declared members, checking for
2462/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002463void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002464 if (!Record || Record->isInvalidDecl())
2465 return;
2466
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002467 if (!Record->isDependentType())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002468 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002469
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002470 if (Record->isInvalidDecl())
2471 return;
2472
John McCall2cb94162010-01-28 07:38:46 +00002473 // Set access bits correctly on the directly-declared conversions.
2474 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2475 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2476 Convs->setAccess(I, (*I)->getAccess());
2477
Douglas Gregor4165bd62010-03-23 23:47:56 +00002478 // Determine whether we need to check for final overriders. We do
2479 // this either when there are virtual base classes (in which case we
2480 // may end up finding multiple final overriders for a given virtual
2481 // function) or any of the base classes is abstract (in which case
2482 // we might detect that this class is abstract).
2483 bool CheckFinalOverriders = false;
2484 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2485 !Record->isDependentType()) {
2486 if (Record->getNumVBases())
2487 CheckFinalOverriders = true;
2488 else if (!Record->isAbstract()) {
2489 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2490 BEnd = Record->bases_end();
2491 B != BEnd; ++B) {
2492 CXXRecordDecl *BaseDecl
2493 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2494 if (BaseDecl->isAbstract()) {
2495 CheckFinalOverriders = true;
2496 break;
2497 }
2498 }
2499 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002500 }
2501
Douglas Gregor4165bd62010-03-23 23:47:56 +00002502 if (CheckFinalOverriders) {
2503 CXXFinalOverriderMap FinalOverriders;
2504 Record->getFinalOverriders(FinalOverriders);
2505
2506 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2507 MEnd = FinalOverriders.end();
2508 M != MEnd; ++M) {
2509 for (OverridingMethods::iterator SO = M->second.begin(),
2510 SOEnd = M->second.end();
2511 SO != SOEnd; ++SO) {
2512 assert(SO->second.size() > 0 &&
2513 "All virtual functions have overridding virtual functions");
2514 if (SO->second.size() == 1) {
2515 // C++ [class.abstract]p4:
2516 // A class is abstract if it contains or inherits at least one
2517 // pure virtual function for which the final overrider is pure
2518 // virtual.
2519 if (SO->second.front().Method->isPure())
2520 Record->setAbstract(true);
2521 continue;
2522 }
2523
2524 // C++ [class.virtual]p2:
2525 // In a derived class, if a virtual member function of a base
2526 // class subobject has more than one final overrider the
2527 // program is ill-formed.
2528 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2529 << (NamedDecl *)M->first << Record;
2530 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2531 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2532 OMEnd = SO->second.end();
2533 OM != OMEnd; ++OM)
2534 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2535 << (NamedDecl *)M->first << OM->Method->getParent();
2536
2537 Record->setInvalidDecl();
2538 }
2539 }
2540 }
2541
2542 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregorc99f1552009-12-03 18:33:45 +00002543 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor454a5b62010-04-15 00:00:53 +00002544
2545 // If this is not an aggregate type and has no user-declared constructor,
2546 // complain about any non-static data members of reference or const scalar
2547 // type, since they will never get initializers.
2548 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2549 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2550 bool Complained = false;
2551 for (RecordDecl::field_iterator F = Record->field_begin(),
2552 FEnd = Record->field_end();
2553 F != FEnd; ++F) {
2554 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002555 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002556 if (!Complained) {
2557 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2558 << Record->getTagKind() << Record;
2559 Complained = true;
2560 }
2561
2562 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2563 << F->getType()->isReferenceType()
2564 << F->getDeclName();
2565 }
2566 }
2567 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002568
2569 if (Record->isDynamicClass())
2570 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002571}
2572
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002573void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00002574 DeclPtrTy TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002575 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002576 SourceLocation RBrac,
2577 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002578 if (!TagDecl)
2579 return;
Mike Stump11289f42009-09-09 15:08:12 +00002580
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002581 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002582
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002583 ActOnFields(S, RLoc, TagDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00002584 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002585 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002586
Douglas Gregor0be31a22010-07-02 17:43:08 +00002587 CheckCompletedCXXClass(
2588 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002589}
2590
Douglas Gregor95755162010-07-01 05:10:53 +00002591namespace {
2592 /// \brief Helper class that collects exception specifications for
2593 /// implicitly-declared special member functions.
2594 class ImplicitExceptionSpecification {
2595 ASTContext &Context;
2596 bool AllowsAllExceptions;
2597 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2598 llvm::SmallVector<QualType, 4> Exceptions;
2599
2600 public:
2601 explicit ImplicitExceptionSpecification(ASTContext &Context)
2602 : Context(Context), AllowsAllExceptions(false) { }
2603
2604 /// \brief Whether the special member function should have any
2605 /// exception specification at all.
2606 bool hasExceptionSpecification() const {
2607 return !AllowsAllExceptions;
2608 }
2609
2610 /// \brief Whether the special member function should have a
2611 /// throw(...) exception specification (a Microsoft extension).
2612 bool hasAnyExceptionSpecification() const {
2613 return false;
2614 }
2615
2616 /// \brief The number of exceptions in the exception specification.
2617 unsigned size() const { return Exceptions.size(); }
2618
2619 /// \brief The set of exceptions in the exception specification.
2620 const QualType *data() const { return Exceptions.data(); }
2621
2622 /// \brief Note that
2623 void CalledDecl(CXXMethodDecl *Method) {
2624 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002625 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002626 return;
2627
2628 const FunctionProtoType *Proto
2629 = Method->getType()->getAs<FunctionProtoType>();
2630
2631 // If this function can throw any exceptions, make a note of that.
2632 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2633 AllowsAllExceptions = true;
2634 ExceptionsSeen.clear();
2635 Exceptions.clear();
2636 return;
2637 }
2638
2639 // Record the exceptions in this function's exception specification.
2640 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2641 EEnd = Proto->exception_end();
2642 E != EEnd; ++E)
2643 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2644 Exceptions.push_back(*E);
2645 }
2646 };
2647}
2648
2649
Douglas Gregor05379422008-11-03 17:51:48 +00002650/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2651/// special functions, such as the default constructor, copy
2652/// constructor, or destructor, to the given C++ class (C++
2653/// [special]p1). This routine can only be executed just before the
2654/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002655void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002656 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002657 DeclareImplicitDefaultConstructor(ClassDecl);
Douglas Gregor05379422008-11-03 17:51:48 +00002658
Douglas Gregor54be3392010-07-01 17:57:27 +00002659 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002660 DeclareImplicitCopyConstructor(ClassDecl);
Douglas Gregor05379422008-11-03 17:51:48 +00002661
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00002662 if (!ClassDecl->hasUserDeclaredCopyAssignment())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002663 DeclareImplicitCopyAssignment(ClassDecl);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002664
Douglas Gregorf1203042010-07-01 19:09:28 +00002665 if (!ClassDecl->hasUserDeclaredDestructor())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002666 DeclareImplicitDestructor(ClassDecl);
Douglas Gregor05379422008-11-03 17:51:48 +00002667}
2668
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002669void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002670 Decl *D = TemplateD.getAs<Decl>();
2671 if (!D)
2672 return;
2673
2674 TemplateParameterList *Params = 0;
2675 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2676 Params = Template->getTemplateParameters();
2677 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2678 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2679 Params = PartialSpec->getTemplateParameters();
2680 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002681 return;
2682
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002683 for (TemplateParameterList::iterator Param = Params->begin(),
2684 ParamEnd = Params->end();
2685 Param != ParamEnd; ++Param) {
2686 NamedDecl *Named = cast<NamedDecl>(*Param);
2687 if (Named->getDeclName()) {
2688 S->AddDecl(DeclPtrTy::make(Named));
2689 IdResolver.AddDecl(Named);
2690 }
2691 }
2692}
2693
John McCall6df5fef2009-12-19 10:49:29 +00002694void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2695 if (!RecordD) return;
2696 AdjustDeclIfTemplate(RecordD);
2697 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2698 PushDeclContext(S, Record);
2699}
2700
2701void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2702 if (!RecordD) return;
2703 PopDeclContext();
2704}
2705
Douglas Gregor4d87df52008-12-16 21:30:33 +00002706/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2707/// parsing a top-level (non-nested) C++ class, and we are now
2708/// parsing those parts of the given Method declaration that could
2709/// not be parsed earlier (C++ [class.mem]p2), such as default
2710/// arguments. This action should enter the scope of the given
2711/// Method declaration as if we had just parsed the qualified method
2712/// name. However, it should not bring the parameters into scope;
2713/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002714void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002715}
2716
2717/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2718/// C++ method declaration. We're (re-)introducing the given
2719/// function parameter into scope for use in parsing later parts of
2720/// the method declaration. For example, we could see an
2721/// ActOnParamDefaultArgument event for this parameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002722void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002723 if (!ParamD)
2724 return;
Mike Stump11289f42009-09-09 15:08:12 +00002725
Chris Lattner83f095c2009-03-28 19:18:32 +00002726 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +00002727
2728 // If this parameter has an unparsed default argument, clear it out
2729 // to make way for the parsed default argument.
2730 if (Param->hasUnparsedDefaultArg())
2731 Param->setDefaultArg(0);
2732
Chris Lattner83f095c2009-03-28 19:18:32 +00002733 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002734 if (Param->getDeclName())
2735 IdResolver.AddDecl(Param);
2736}
2737
2738/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2739/// processing the delayed method declaration for Method. The method
2740/// declaration is now considered finished. There may be a separate
2741/// ActOnStartOfFunctionDef action later (not necessarily
2742/// immediately!) for this method, if it was also defined inside the
2743/// class body.
Chris Lattner83f095c2009-03-28 19:18:32 +00002744void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002745 if (!MethodD)
2746 return;
Mike Stump11289f42009-09-09 15:08:12 +00002747
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002748 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002749
Chris Lattner83f095c2009-03-28 19:18:32 +00002750 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor4d87df52008-12-16 21:30:33 +00002751
2752 // Now that we have our default arguments, check the constructor
2753 // again. It could produce additional diagnostics or affect whether
2754 // the class has implicitly-declared destructors, among other
2755 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002756 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2757 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002758
2759 // Check the default arguments, which we may have added.
2760 if (!Method->isInvalidDecl())
2761 CheckCXXDefaultArguments(Method);
2762}
2763
Douglas Gregor831c93f2008-11-05 20:51:48 +00002764/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002765/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002766/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002767/// emit diagnostics and set the invalid bit to true. In any case, the type
2768/// will be updated to reflect a well-formed type for the constructor and
2769/// returned.
2770QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2771 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002772 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002773
2774 // C++ [class.ctor]p3:
2775 // A constructor shall not be virtual (10.3) or static (9.4). A
2776 // constructor can be invoked for a const, volatile or const
2777 // volatile object. A constructor shall not be declared const,
2778 // volatile, or const volatile (9.3.2).
2779 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002780 if (!D.isInvalidType())
2781 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2782 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2783 << SourceRange(D.getIdentifierLoc());
2784 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002785 }
2786 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002787 if (!D.isInvalidType())
2788 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2789 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2790 << SourceRange(D.getIdentifierLoc());
2791 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002792 SC = FunctionDecl::None;
2793 }
Mike Stump11289f42009-09-09 15:08:12 +00002794
Chris Lattner38378bf2009-04-25 08:28:21 +00002795 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2796 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002797 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002798 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2799 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002800 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002801 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2802 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002803 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002804 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2805 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002806 }
Mike Stump11289f42009-09-09 15:08:12 +00002807
Douglas Gregor831c93f2008-11-05 20:51:48 +00002808 // Rebuild the function type "R" without any type qualifiers (in
2809 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002810 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002811 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002812 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2813 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002814 Proto->isVariadic(), 0,
2815 Proto->hasExceptionSpec(),
2816 Proto->hasAnyExceptionSpec(),
2817 Proto->getNumExceptions(),
2818 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002819 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002820}
2821
Douglas Gregor4d87df52008-12-16 21:30:33 +00002822/// CheckConstructor - Checks a fully-formed constructor for
2823/// well-formedness, issuing any diagnostics required. Returns true if
2824/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002825void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002826 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002827 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2828 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002829 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002830
2831 // C++ [class.copy]p3:
2832 // A declaration of a constructor for a class X is ill-formed if
2833 // its first parameter is of type (optionally cv-qualified) X and
2834 // either there are no other parameters or else all other
2835 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002836 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002837 ((Constructor->getNumParams() == 1) ||
2838 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002839 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2840 Constructor->getTemplateSpecializationKind()
2841 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002842 QualType ParamType = Constructor->getParamDecl(0)->getType();
2843 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2844 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002845 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002846 const char *ConstRef
2847 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2848 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002849 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002850 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002851
2852 // FIXME: Rather that making the constructor invalid, we should endeavor
2853 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002854 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002855 }
2856 }
Mike Stump11289f42009-09-09 15:08:12 +00002857
John McCall43314ab2010-04-13 07:45:41 +00002858 // Notify the class that we've added a constructor. In principle we
2859 // don't need to do this for out-of-line declarations; in practice
2860 // we only instantiate the most recent declaration of a method, so
2861 // we have to call this for everything but friends.
2862 if (!Constructor->getFriendObjectKind())
2863 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002864}
2865
Anders Carlsson26a807d2009-11-30 21:24:50 +00002866/// CheckDestructor - Checks a fully-formed destructor for well-formedness,
2867/// issuing any diagnostics required. Returns true on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002868bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002869 CXXRecordDecl *RD = Destructor->getParent();
2870
2871 if (Destructor->isVirtual()) {
2872 SourceLocation Loc;
2873
2874 if (!Destructor->isImplicit())
2875 Loc = Destructor->getLocation();
2876 else
2877 Loc = RD->getLocation();
2878
2879 // If we have a virtual destructor, look up the deallocation function
2880 FunctionDecl *OperatorDelete = 0;
2881 DeclarationName Name =
2882 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00002883 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00002884 return true;
2885
2886 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00002887 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00002888
2889 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00002890}
2891
Mike Stump11289f42009-09-09 15:08:12 +00002892static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002893FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2894 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2895 FTI.ArgInfo[0].Param &&
2896 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2897}
2898
Douglas Gregor831c93f2008-11-05 20:51:48 +00002899/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2900/// the well-formednes of the destructor declarator @p D with type @p
2901/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002902/// emit diagnostics and set the declarator to invalid. Even if this happens,
2903/// will be updated to reflect a well-formed type for the destructor and
2904/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00002905QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner38378bf2009-04-25 08:28:21 +00002906 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002907 // C++ [class.dtor]p1:
2908 // [...] A typedef-name that names a class is a class-name
2909 // (7.1.3); however, a typedef-name that names a class shall not
2910 // be used as the identifier in the declarator for a destructor
2911 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00002912 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00002913 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00002914 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002915 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002916
2917 // C++ [class.dtor]p2:
2918 // A destructor is used to destroy objects of its class type. A
2919 // destructor takes no parameters, and no return type can be
2920 // specified for it (not even void). The address of a destructor
2921 // shall not be taken. A destructor shall not be static. A
2922 // destructor can be invoked for a const, volatile or const
2923 // volatile object. A destructor shall not be declared const,
2924 // volatile or const volatile (9.3.2).
2925 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002926 if (!D.isInvalidType())
2927 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2928 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00002929 << SourceRange(D.getIdentifierLoc())
2930 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2931
Douglas Gregor831c93f2008-11-05 20:51:48 +00002932 SC = FunctionDecl::None;
2933 }
Chris Lattner38378bf2009-04-25 08:28:21 +00002934 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002935 // Destructors don't have return types, but the parser will
2936 // happily parse something like:
2937 //
2938 // class X {
2939 // float ~X();
2940 // };
2941 //
2942 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00002943 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2944 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2945 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002946 }
Mike Stump11289f42009-09-09 15:08:12 +00002947
Chris Lattner38378bf2009-04-25 08:28:21 +00002948 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2949 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00002950 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002951 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2952 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002953 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002954 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2955 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002956 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002957 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2958 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00002959 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002960 }
2961
2962 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00002963 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002964 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2965
2966 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00002967 FTI.freeArgs();
2968 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002969 }
2970
Mike Stump11289f42009-09-09 15:08:12 +00002971 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00002972 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002973 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00002974 D.setInvalidType();
2975 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00002976
2977 // Rebuild the function type "R" without any type qualifiers or
2978 // parameters (in case any of the errors above fired) and with
2979 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00002980 // types.
2981 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
2982 if (!Proto)
2983 return QualType();
2984
Douglas Gregor36c569f2010-02-21 22:15:06 +00002985 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00002986 Proto->hasExceptionSpec(),
2987 Proto->hasAnyExceptionSpec(),
2988 Proto->getNumExceptions(),
2989 Proto->exception_begin(),
2990 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002991}
2992
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002993/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
2994/// well-formednes of the conversion function declarator @p D with
2995/// type @p R. If there are any errors in the declarator, this routine
2996/// will emit diagnostics and return true. Otherwise, it will return
2997/// false. Either way, the type @p R will be updated to reflect a
2998/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002999void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003000 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003001 // C++ [class.conv.fct]p1:
3002 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003003 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003004 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003005 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003006 if (!D.isInvalidType())
3007 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3008 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3009 << SourceRange(D.getIdentifierLoc());
3010 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003011 SC = FunctionDecl::None;
3012 }
John McCall212fa2e2010-04-13 00:04:31 +00003013
3014 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3015
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003016 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003017 // Conversion functions don't have return types, but the parser will
3018 // happily parse something like:
3019 //
3020 // class X {
3021 // float operator bool();
3022 // };
3023 //
3024 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003025 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3026 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3027 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003028 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003029 }
3030
John McCall212fa2e2010-04-13 00:04:31 +00003031 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3032
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003033 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003034 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003035 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3036
3037 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003038 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003039 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003040 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003041 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003042 D.setInvalidType();
3043 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003044
John McCall212fa2e2010-04-13 00:04:31 +00003045 // Diagnose "&operator bool()" and other such nonsense. This
3046 // is actually a gcc extension which we don't support.
3047 if (Proto->getResultType() != ConvType) {
3048 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3049 << Proto->getResultType();
3050 D.setInvalidType();
3051 ConvType = Proto->getResultType();
3052 }
3053
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003054 // C++ [class.conv.fct]p4:
3055 // The conversion-type-id shall not represent a function type nor
3056 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003057 if (ConvType->isArrayType()) {
3058 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3059 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003060 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003061 } else if (ConvType->isFunctionType()) {
3062 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3063 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003064 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003065 }
3066
3067 // Rebuild the function type "R" without any parameters (in case any
3068 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003069 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003070 if (D.isInvalidType()) {
3071 R = Context.getFunctionType(ConvType, 0, 0, false,
3072 Proto->getTypeQuals(),
3073 Proto->hasExceptionSpec(),
3074 Proto->hasAnyExceptionSpec(),
3075 Proto->getNumExceptions(),
3076 Proto->exception_begin(),
3077 Proto->getExtInfo());
3078 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003079
Douglas Gregor5fb53972009-01-14 15:45:31 +00003080 // C++0x explicit conversion operators.
3081 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003082 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003083 diag::warn_explicit_conversion_functions)
3084 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003085}
3086
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003087/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3088/// the declaration of the given C++ conversion function. This routine
3089/// is responsible for recording the conversion function in the C++
3090/// class, if possible.
Chris Lattner83f095c2009-03-28 19:18:32 +00003091Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003092 assert(Conversion && "Expected to receive a conversion function declaration");
3093
Douglas Gregor4287b372008-12-12 08:25:50 +00003094 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003095
3096 // Make sure we aren't redeclaring the conversion function.
3097 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003098
3099 // C++ [class.conv.fct]p1:
3100 // [...] A conversion function is never used to convert a
3101 // (possibly cv-qualified) object to the (possibly cv-qualified)
3102 // same object type (or a reference to it), to a (possibly
3103 // cv-qualified) base class of that type (or a reference to it),
3104 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003105 // FIXME: Suppress this warning if the conversion function ends up being a
3106 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003107 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003108 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003109 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003110 ConvType = ConvTypeRef->getPointeeType();
3111 if (ConvType->isRecordType()) {
3112 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3113 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003114 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003115 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003116 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003117 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003118 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003119 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003120 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003121 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003122 }
3123
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003124 if (Conversion->getPrimaryTemplate()) {
3125 // ignore specializations
3126 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003127 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003128 = Conversion->getDescribedFunctionTemplate()) {
3129 if (ClassDecl->replaceConversion(
3130 ConversionTemplate->getPreviousDeclaration(),
3131 ConversionTemplate))
3132 return DeclPtrTy::make(ConversionTemplate);
3133 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3134 Conversion))
John McCalld14a8642009-11-21 08:51:07 +00003135 return DeclPtrTy::make(Conversion);
Douglas Gregor1dc98262008-12-26 15:00:45 +00003136 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003137 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003138 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003139 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003140 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003141 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003142
Chris Lattner83f095c2009-03-28 19:18:32 +00003143 return DeclPtrTy::make(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003144}
3145
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003146//===----------------------------------------------------------------------===//
3147// Namespace Handling
3148//===----------------------------------------------------------------------===//
3149
3150/// ActOnStartNamespaceDef - This is called at the start of a namespace
3151/// definition.
Chris Lattner83f095c2009-03-28 19:18:32 +00003152Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3153 SourceLocation IdentLoc,
3154 IdentifierInfo *II,
Anders Carlssona7bcade2010-02-07 01:09:23 +00003155 SourceLocation LBrace,
3156 AttributeList *AttrList) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003157 NamespaceDecl *Namespc =
3158 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3159 Namespc->setLBracLoc(LBrace);
3160
3161 Scope *DeclRegionScope = NamespcScope->getParent();
3162
Anders Carlssona7bcade2010-02-07 01:09:23 +00003163 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3164
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003165 if (II) {
3166 // C++ [namespace.def]p2:
3167 // The identifier in an original-namespace-definition shall not have been
3168 // previously defined in the declarative region in which the
3169 // original-namespace-definition appears. The identifier in an
3170 // original-namespace-definition is the name of the namespace. Subsequently
3171 // in that declarative region, it is treated as an original-namespace-name.
3172
John McCall9f3059a2009-10-09 21:13:30 +00003173 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003174 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003175 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003176
Douglas Gregor91f84212008-12-11 16:49:14 +00003177 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3178 // This is an extended namespace definition.
3179 // Attach this namespace decl to the chain of extended namespace
3180 // definitions.
3181 OrigNS->setNextNamespace(Namespc);
3182 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003183
Mike Stump11289f42009-09-09 15:08:12 +00003184 // Remove the previous declaration from the scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003185 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003186 IdResolver.RemoveDecl(OrigNS);
Chris Lattner83f095c2009-03-28 19:18:32 +00003187 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003188 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003189 } else if (PrevDecl) {
3190 // This is an invalid name redefinition.
3191 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3192 << Namespc->getDeclName();
3193 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3194 Namespc->setInvalidDecl();
3195 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003196 } else if (II->isStr("std") &&
3197 CurContext->getLookupContext()->isTranslationUnit()) {
3198 // This is the first "real" definition of the namespace "std", so update
3199 // our cache of the "std" namespace to point at this definition.
3200 if (StdNamespace) {
3201 // We had already defined a dummy namespace "std". Link this new
3202 // namespace definition to the dummy namespace "std".
3203 StdNamespace->setNextNamespace(Namespc);
3204 StdNamespace->setLocation(IdentLoc);
3205 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
3206 }
3207
3208 // Make our StdNamespace cache point at the first real definition of the
3209 // "std" namespace.
3210 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003211 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003212
3213 PushOnScopeChains(Namespc, DeclRegionScope);
3214 } else {
John McCall4fa53422009-10-01 00:25:31 +00003215 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003216 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003217
3218 // Link the anonymous namespace into its parent.
3219 NamespaceDecl *PrevDecl;
3220 DeclContext *Parent = CurContext->getLookupContext();
3221 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3222 PrevDecl = TU->getAnonymousNamespace();
3223 TU->setAnonymousNamespace(Namespc);
3224 } else {
3225 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3226 PrevDecl = ND->getAnonymousNamespace();
3227 ND->setAnonymousNamespace(Namespc);
3228 }
3229
3230 // Link the anonymous namespace with its previous declaration.
3231 if (PrevDecl) {
3232 assert(PrevDecl->isAnonymousNamespace());
3233 assert(!PrevDecl->getNextNamespace());
3234 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3235 PrevDecl->setNextNamespace(Namespc);
3236 }
John McCall4fa53422009-10-01 00:25:31 +00003237
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003238 CurContext->addDecl(Namespc);
3239
John McCall4fa53422009-10-01 00:25:31 +00003240 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3241 // behaves as if it were replaced by
3242 // namespace unique { /* empty body */ }
3243 // using namespace unique;
3244 // namespace unique { namespace-body }
3245 // where all occurrences of 'unique' in a translation unit are
3246 // replaced by the same identifier and this identifier differs
3247 // from all other identifiers in the entire program.
3248
3249 // We just create the namespace with an empty name and then add an
3250 // implicit using declaration, just like the standard suggests.
3251 //
3252 // CodeGen enforces the "universally unique" aspect by giving all
3253 // declarations semantically contained within an anonymous
3254 // namespace internal linkage.
3255
John McCall0db42252009-12-16 02:06:49 +00003256 if (!PrevDecl) {
3257 UsingDirectiveDecl* UD
3258 = UsingDirectiveDecl::Create(Context, CurContext,
3259 /* 'using' */ LBrace,
3260 /* 'namespace' */ SourceLocation(),
3261 /* qualifier */ SourceRange(),
3262 /* NNS */ NULL,
3263 /* identifier */ SourceLocation(),
3264 Namespc,
3265 /* Ancestor */ CurContext);
3266 UD->setImplicit();
3267 CurContext->addDecl(UD);
3268 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003269 }
3270
3271 // Although we could have an invalid decl (i.e. the namespace name is a
3272 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003273 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3274 // for the namespace has the declarations that showed up in that particular
3275 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003276 PushDeclContext(NamespcScope, Namespc);
Chris Lattner83f095c2009-03-28 19:18:32 +00003277 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003278}
3279
Sebastian Redla6602e92009-11-23 15:34:23 +00003280/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3281/// is a namespace alias, returns the namespace it points to.
3282static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3283 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3284 return AD->getNamespace();
3285 return dyn_cast_or_null<NamespaceDecl>(D);
3286}
3287
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003288/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3289/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattner83f095c2009-03-28 19:18:32 +00003290void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3291 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003292 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3293 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3294 Namespc->setRBracLoc(RBrace);
3295 PopDeclContext();
3296}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003297
Douglas Gregorcdf87022010-06-29 17:53:46 +00003298/// \brief Retrieve the special "std" namespace, which may require us to
3299/// implicitly define the namespace.
3300NamespaceDecl *Sema::getStdNamespace() {
3301 if (!StdNamespace) {
3302 // The "std" namespace has not yet been defined, so build one implicitly.
3303 StdNamespace = NamespaceDecl::Create(Context,
3304 Context.getTranslationUnitDecl(),
3305 SourceLocation(),
3306 &PP.getIdentifierTable().get("std"));
3307 StdNamespace->setImplicit(true);
3308 }
3309
3310 return StdNamespace;
3311}
3312
Chris Lattner83f095c2009-03-28 19:18:32 +00003313Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3314 SourceLocation UsingLoc,
3315 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003316 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003317 SourceLocation IdentLoc,
3318 IdentifierInfo *NamespcName,
3319 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003320 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3321 assert(NamespcName && "Invalid NamespcName.");
3322 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003323 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003324
Douglas Gregor889ceb72009-02-03 19:21:40 +00003325 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003326 NestedNameSpecifier *Qualifier = 0;
3327 if (SS.isSet())
3328 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3329
Douglas Gregor34074322009-01-14 22:20:51 +00003330 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003331 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3332 LookupParsedName(R, S, &SS);
3333 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00003334 return DeclPtrTy();
John McCall27b18f82009-11-17 02:14:36 +00003335
Douglas Gregorcdf87022010-06-29 17:53:46 +00003336 if (R.empty()) {
3337 // Allow "using namespace std;" or "using namespace ::std;" even if
3338 // "std" hasn't been defined yet, for GCC compatibility.
3339 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3340 NamespcName->isStr("std")) {
3341 Diag(IdentLoc, diag::ext_using_undefined_std);
3342 R.addDecl(getStdNamespace());
3343 R.resolveKind();
3344 }
3345 // Otherwise, attempt typo correction.
3346 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3347 CTC_NoKeywords, 0)) {
3348 if (R.getAsSingle<NamespaceDecl>() ||
3349 R.getAsSingle<NamespaceAliasDecl>()) {
3350 if (DeclContext *DC = computeDeclContext(SS, false))
3351 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3352 << NamespcName << DC << Corrected << SS.getRange()
3353 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3354 else
3355 Diag(IdentLoc, diag::err_using_directive_suggest)
3356 << NamespcName << Corrected
3357 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3358 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3359 << Corrected;
3360
3361 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003362 } else {
3363 R.clear();
3364 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003365 }
3366 }
3367 }
3368
John McCall9f3059a2009-10-09 21:13:30 +00003369 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003370 NamedDecl *Named = R.getFoundDecl();
3371 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3372 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003373 // C++ [namespace.udir]p1:
3374 // A using-directive specifies that the names in the nominated
3375 // namespace can be used in the scope in which the
3376 // using-directive appears after the using-directive. During
3377 // unqualified name lookup (3.4.1), the names appear as if they
3378 // were declared in the nearest enclosing namespace which
3379 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003380 // namespace. [Note: in this context, "contains" means "contains
3381 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003382
3383 // Find enclosing context containing both using-directive and
3384 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003385 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003386 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3387 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3388 CommonAncestor = CommonAncestor->getParent();
3389
Sebastian Redla6602e92009-11-23 15:34:23 +00003390 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003391 SS.getRange(),
3392 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003393 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003394 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003395 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003396 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003397 }
3398
Douglas Gregor889ceb72009-02-03 19:21:40 +00003399 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003400 delete AttrList;
Chris Lattner83f095c2009-03-28 19:18:32 +00003401 return DeclPtrTy::make(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003402}
3403
3404void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3405 // If scope has associated entity, then using directive is at namespace
3406 // or translation unit scope. We add UsingDirectiveDecls, into
3407 // it's lookup structure.
3408 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003409 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003410 else
3411 // Otherwise it is block-sope. using-directives will affect lookup
3412 // only to the end of scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003413 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregord7c4d982008-12-30 03:27:21 +00003414}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003415
Douglas Gregorfec52632009-06-20 00:51:54 +00003416
3417Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003418 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003419 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003420 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003421 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003422 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003423 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003424 bool IsTypeName,
3425 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003426 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003427
Douglas Gregor220f4272009-11-04 16:30:06 +00003428 switch (Name.getKind()) {
3429 case UnqualifiedId::IK_Identifier:
3430 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003431 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003432 case UnqualifiedId::IK_ConversionFunctionId:
3433 break;
3434
3435 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003436 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003437 // C++0x inherited constructors.
3438 if (getLangOptions().CPlusPlus0x) break;
3439
Douglas Gregor220f4272009-11-04 16:30:06 +00003440 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3441 << SS.getRange();
3442 return DeclPtrTy();
3443
3444 case UnqualifiedId::IK_DestructorName:
3445 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3446 << SS.getRange();
3447 return DeclPtrTy();
3448
3449 case UnqualifiedId::IK_TemplateId:
3450 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3451 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3452 return DeclPtrTy();
3453 }
3454
3455 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall3969e302009-12-08 07:46:18 +00003456 if (!TargetName)
3457 return DeclPtrTy();
3458
John McCalla0097262009-12-11 02:10:03 +00003459 // Warn about using declarations.
3460 // TODO: store that the declaration was written without 'using' and
3461 // talk about access decls instead of using decls in the
3462 // diagnostics.
3463 if (!HasUsingKeyword) {
3464 UsingLoc = Name.getSourceRange().getBegin();
3465
3466 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003467 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003468 }
3469
John McCall3f746822009-11-17 05:59:44 +00003470 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003471 Name.getSourceRange().getBegin(),
John McCalle61f2ba2009-11-18 02:36:19 +00003472 TargetName, AttrList,
3473 /* IsInstantiation */ false,
3474 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003475 if (UD)
3476 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003477
Anders Carlsson696a3f12009-08-28 05:40:36 +00003478 return DeclPtrTy::make(UD);
3479}
3480
John McCall84d87672009-12-10 09:41:52 +00003481/// Determines whether to create a using shadow decl for a particular
3482/// decl, given the set of decls existing prior to this using lookup.
3483bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3484 const LookupResult &Previous) {
3485 // Diagnose finding a decl which is not from a base class of the
3486 // current class. We do this now because there are cases where this
3487 // function will silently decide not to build a shadow decl, which
3488 // will pre-empt further diagnostics.
3489 //
3490 // We don't need to do this in C++0x because we do the check once on
3491 // the qualifier.
3492 //
3493 // FIXME: diagnose the following if we care enough:
3494 // struct A { int foo; };
3495 // struct B : A { using A::foo; };
3496 // template <class T> struct C : A {};
3497 // template <class T> struct D : C<T> { using B::foo; } // <---
3498 // This is invalid (during instantiation) in C++03 because B::foo
3499 // resolves to the using decl in B, which is not a base class of D<T>.
3500 // We can't diagnose it immediately because C<T> is an unknown
3501 // specialization. The UsingShadowDecl in D<T> then points directly
3502 // to A::foo, which will look well-formed when we instantiate.
3503 // The right solution is to not collapse the shadow-decl chain.
3504 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3505 DeclContext *OrigDC = Orig->getDeclContext();
3506
3507 // Handle enums and anonymous structs.
3508 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3509 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3510 while (OrigRec->isAnonymousStructOrUnion())
3511 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3512
3513 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3514 if (OrigDC == CurContext) {
3515 Diag(Using->getLocation(),
3516 diag::err_using_decl_nested_name_specifier_is_current_class)
3517 << Using->getNestedNameRange();
3518 Diag(Orig->getLocation(), diag::note_using_decl_target);
3519 return true;
3520 }
3521
3522 Diag(Using->getNestedNameRange().getBegin(),
3523 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3524 << Using->getTargetNestedNameDecl()
3525 << cast<CXXRecordDecl>(CurContext)
3526 << Using->getNestedNameRange();
3527 Diag(Orig->getLocation(), diag::note_using_decl_target);
3528 return true;
3529 }
3530 }
3531
3532 if (Previous.empty()) return false;
3533
3534 NamedDecl *Target = Orig;
3535 if (isa<UsingShadowDecl>(Target))
3536 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3537
John McCalla17e83e2009-12-11 02:33:26 +00003538 // If the target happens to be one of the previous declarations, we
3539 // don't have a conflict.
3540 //
3541 // FIXME: but we might be increasing its access, in which case we
3542 // should redeclare it.
3543 NamedDecl *NonTag = 0, *Tag = 0;
3544 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3545 I != E; ++I) {
3546 NamedDecl *D = (*I)->getUnderlyingDecl();
3547 if (D->getCanonicalDecl() == Target->getCanonicalDecl())
3548 return false;
3549
3550 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3551 }
3552
John McCall84d87672009-12-10 09:41:52 +00003553 if (Target->isFunctionOrFunctionTemplate()) {
3554 FunctionDecl *FD;
3555 if (isa<FunctionTemplateDecl>(Target))
3556 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3557 else
3558 FD = cast<FunctionDecl>(Target);
3559
3560 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003561 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003562 case Ovl_Overload:
3563 return false;
3564
3565 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003566 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003567 break;
3568
3569 // We found a decl with the exact signature.
3570 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003571 // If we're in a record, we want to hide the target, so we
3572 // return true (without a diagnostic) to tell the caller not to
3573 // build a shadow decl.
3574 if (CurContext->isRecord())
3575 return true;
3576
3577 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003578 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003579 break;
3580 }
3581
3582 Diag(Target->getLocation(), diag::note_using_decl_target);
3583 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3584 return true;
3585 }
3586
3587 // Target is not a function.
3588
John McCall84d87672009-12-10 09:41:52 +00003589 if (isa<TagDecl>(Target)) {
3590 // No conflict between a tag and a non-tag.
3591 if (!Tag) return false;
3592
John McCalle29c5cd2009-12-10 19:51:03 +00003593 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003594 Diag(Target->getLocation(), diag::note_using_decl_target);
3595 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3596 return true;
3597 }
3598
3599 // No conflict between a tag and a non-tag.
3600 if (!NonTag) return false;
3601
John McCalle29c5cd2009-12-10 19:51:03 +00003602 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003603 Diag(Target->getLocation(), diag::note_using_decl_target);
3604 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3605 return true;
3606}
3607
John McCall3f746822009-11-17 05:59:44 +00003608/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003609UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003610 UsingDecl *UD,
3611 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003612
3613 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003614 NamedDecl *Target = Orig;
3615 if (isa<UsingShadowDecl>(Target)) {
3616 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3617 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003618 }
3619
3620 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003621 = UsingShadowDecl::Create(Context, CurContext,
3622 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003623 UD->addShadowDecl(Shadow);
3624
3625 if (S)
John McCall3969e302009-12-08 07:46:18 +00003626 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003627 else
John McCall3969e302009-12-08 07:46:18 +00003628 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003629 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003630
John McCallda4458e2010-03-31 01:36:47 +00003631 // Register it as a conversion if appropriate.
3632 if (Shadow->getDeclName().getNameKind()
3633 == DeclarationName::CXXConversionFunctionName)
3634 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3635
John McCall3969e302009-12-08 07:46:18 +00003636 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3637 Shadow->setInvalidDecl();
3638
John McCall84d87672009-12-10 09:41:52 +00003639 return Shadow;
3640}
John McCall3969e302009-12-08 07:46:18 +00003641
John McCall84d87672009-12-10 09:41:52 +00003642/// Hides a using shadow declaration. This is required by the current
3643/// using-decl implementation when a resolvable using declaration in a
3644/// class is followed by a declaration which would hide or override
3645/// one or more of the using decl's targets; for example:
3646///
3647/// struct Base { void foo(int); };
3648/// struct Derived : Base {
3649/// using Base::foo;
3650/// void foo(int);
3651/// };
3652///
3653/// The governing language is C++03 [namespace.udecl]p12:
3654///
3655/// When a using-declaration brings names from a base class into a
3656/// derived class scope, member functions in the derived class
3657/// override and/or hide member functions with the same name and
3658/// parameter types in a base class (rather than conflicting).
3659///
3660/// There are two ways to implement this:
3661/// (1) optimistically create shadow decls when they're not hidden
3662/// by existing declarations, or
3663/// (2) don't create any shadow decls (or at least don't make them
3664/// visible) until we've fully parsed/instantiated the class.
3665/// The problem with (1) is that we might have to retroactively remove
3666/// a shadow decl, which requires several O(n) operations because the
3667/// decl structures are (very reasonably) not designed for removal.
3668/// (2) avoids this but is very fiddly and phase-dependent.
3669void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003670 if (Shadow->getDeclName().getNameKind() ==
3671 DeclarationName::CXXConversionFunctionName)
3672 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3673
John McCall84d87672009-12-10 09:41:52 +00003674 // Remove it from the DeclContext...
3675 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003676
John McCall84d87672009-12-10 09:41:52 +00003677 // ...and the scope, if applicable...
3678 if (S) {
3679 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3680 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003681 }
3682
John McCall84d87672009-12-10 09:41:52 +00003683 // ...and the using decl.
3684 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3685
3686 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003687 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003688}
3689
John McCalle61f2ba2009-11-18 02:36:19 +00003690/// Builds a using declaration.
3691///
3692/// \param IsInstantiation - Whether this call arises from an
3693/// instantiation of an unresolved using declaration. We treat
3694/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003695NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3696 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003697 CXXScopeSpec &SS,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003698 SourceLocation IdentLoc,
3699 DeclarationName Name,
3700 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003701 bool IsInstantiation,
3702 bool IsTypeName,
3703 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003704 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3705 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003706
Anders Carlssonf038fc22009-08-28 05:49:21 +00003707 // FIXME: We ignore attributes for now.
3708 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003709
Anders Carlsson59140b32009-08-28 03:16:11 +00003710 if (SS.isEmpty()) {
3711 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003712 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003713 }
Mike Stump11289f42009-09-09 15:08:12 +00003714
John McCall84d87672009-12-10 09:41:52 +00003715 // Do the redeclaration lookup in the current scope.
3716 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3717 ForRedeclaration);
3718 Previous.setHideTags(false);
3719 if (S) {
3720 LookupName(Previous, S);
3721
3722 // It is really dumb that we have to do this.
3723 LookupResult::Filter F = Previous.makeFilter();
3724 while (F.hasNext()) {
3725 NamedDecl *D = F.next();
3726 if (!isDeclInScope(D, CurContext, S))
3727 F.erase();
3728 }
3729 F.done();
3730 } else {
3731 assert(IsInstantiation && "no scope in non-instantiation");
3732 assert(CurContext->isRecord() && "scope not record in instantiation");
3733 LookupQualifiedName(Previous, CurContext);
3734 }
3735
Mike Stump11289f42009-09-09 15:08:12 +00003736 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003737 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3738
John McCall84d87672009-12-10 09:41:52 +00003739 // Check for invalid redeclarations.
3740 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3741 return 0;
3742
3743 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003744 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3745 return 0;
3746
John McCall84c16cf2009-11-12 03:15:40 +00003747 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003748 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003749 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003750 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003751 // FIXME: not all declaration name kinds are legal here
3752 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3753 UsingLoc, TypenameLoc,
3754 SS.getRange(), NNS,
John McCalle61f2ba2009-11-18 02:36:19 +00003755 IdentLoc, Name);
John McCallb96ec562009-12-04 22:46:56 +00003756 } else {
3757 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3758 UsingLoc, SS.getRange(), NNS,
3759 IdentLoc, Name);
John McCalle61f2ba2009-11-18 02:36:19 +00003760 }
John McCallb96ec562009-12-04 22:46:56 +00003761 } else {
3762 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3763 SS.getRange(), UsingLoc, NNS, Name,
3764 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003765 }
John McCallb96ec562009-12-04 22:46:56 +00003766 D->setAccess(AS);
3767 CurContext->addDecl(D);
3768
3769 if (!LookupContext) return D;
3770 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003771
John McCall0b66eb32010-05-01 00:40:08 +00003772 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003773 UD->setInvalidDecl();
3774 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003775 }
3776
John McCall3969e302009-12-08 07:46:18 +00003777 // Look up the target name.
3778
John McCall27b18f82009-11-17 02:14:36 +00003779 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003780
John McCall3969e302009-12-08 07:46:18 +00003781 // Unlike most lookups, we don't always want to hide tag
3782 // declarations: tag names are visible through the using declaration
3783 // even if hidden by ordinary names, *except* in a dependent context
3784 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003785 if (!IsInstantiation)
3786 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003787
John McCall27b18f82009-11-17 02:14:36 +00003788 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003789
John McCall9f3059a2009-10-09 21:13:30 +00003790 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003791 Diag(IdentLoc, diag::err_no_member)
3792 << Name << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003793 UD->setInvalidDecl();
3794 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003795 }
3796
John McCallb96ec562009-12-04 22:46:56 +00003797 if (R.isAmbiguous()) {
3798 UD->setInvalidDecl();
3799 return UD;
3800 }
Mike Stump11289f42009-09-09 15:08:12 +00003801
John McCalle61f2ba2009-11-18 02:36:19 +00003802 if (IsTypeName) {
3803 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003804 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003805 Diag(IdentLoc, diag::err_using_typename_non_type);
3806 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3807 Diag((*I)->getUnderlyingDecl()->getLocation(),
3808 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003809 UD->setInvalidDecl();
3810 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003811 }
3812 } else {
3813 // If we asked for a non-typename and we got a type, error out,
3814 // but only if this is an instantiation of an unresolved using
3815 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003816 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003817 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3818 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003819 UD->setInvalidDecl();
3820 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003821 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003822 }
3823
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003824 // C++0x N2914 [namespace.udecl]p6:
3825 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003826 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003827 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3828 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003829 UD->setInvalidDecl();
3830 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003831 }
Mike Stump11289f42009-09-09 15:08:12 +00003832
John McCall84d87672009-12-10 09:41:52 +00003833 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3834 if (!CheckUsingShadowDecl(UD, *I, Previous))
3835 BuildUsingShadowDecl(S, UD, *I);
3836 }
John McCall3f746822009-11-17 05:59:44 +00003837
3838 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003839}
3840
John McCall84d87672009-12-10 09:41:52 +00003841/// Checks that the given using declaration is not an invalid
3842/// redeclaration. Note that this is checking only for the using decl
3843/// itself, not for any ill-formedness among the UsingShadowDecls.
3844bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3845 bool isTypeName,
3846 const CXXScopeSpec &SS,
3847 SourceLocation NameLoc,
3848 const LookupResult &Prev) {
3849 // C++03 [namespace.udecl]p8:
3850 // C++0x [namespace.udecl]p10:
3851 // A using-declaration is a declaration and can therefore be used
3852 // repeatedly where (and only where) multiple declarations are
3853 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003854 //
3855 // That's in non-member contexts.
3856 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003857 return false;
3858
3859 NestedNameSpecifier *Qual
3860 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3861
3862 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3863 NamedDecl *D = *I;
3864
3865 bool DTypename;
3866 NestedNameSpecifier *DQual;
3867 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3868 DTypename = UD->isTypeName();
3869 DQual = UD->getTargetNestedNameDecl();
3870 } else if (UnresolvedUsingValueDecl *UD
3871 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3872 DTypename = false;
3873 DQual = UD->getTargetNestedNameSpecifier();
3874 } else if (UnresolvedUsingTypenameDecl *UD
3875 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3876 DTypename = true;
3877 DQual = UD->getTargetNestedNameSpecifier();
3878 } else continue;
3879
3880 // using decls differ if one says 'typename' and the other doesn't.
3881 // FIXME: non-dependent using decls?
3882 if (isTypeName != DTypename) continue;
3883
3884 // using decls differ if they name different scopes (but note that
3885 // template instantiation can cause this check to trigger when it
3886 // didn't before instantiation).
3887 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3888 Context.getCanonicalNestedNameSpecifier(DQual))
3889 continue;
3890
3891 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003892 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003893 return true;
3894 }
3895
3896 return false;
3897}
3898
John McCall3969e302009-12-08 07:46:18 +00003899
John McCallb96ec562009-12-04 22:46:56 +00003900/// Checks that the given nested-name qualifier used in a using decl
3901/// in the current context is appropriately related to the current
3902/// scope. If an error is found, diagnoses it and returns true.
3903bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3904 const CXXScopeSpec &SS,
3905 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00003906 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003907
John McCall3969e302009-12-08 07:46:18 +00003908 if (!CurContext->isRecord()) {
3909 // C++03 [namespace.udecl]p3:
3910 // C++0x [namespace.udecl]p8:
3911 // A using-declaration for a class member shall be a member-declaration.
3912
3913 // If we weren't able to compute a valid scope, it must be a
3914 // dependent class scope.
3915 if (!NamedContext || NamedContext->isRecord()) {
3916 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3917 << SS.getRange();
3918 return true;
3919 }
3920
3921 // Otherwise, everything is known to be fine.
3922 return false;
3923 }
3924
3925 // The current scope is a record.
3926
3927 // If the named context is dependent, we can't decide much.
3928 if (!NamedContext) {
3929 // FIXME: in C++0x, we can diagnose if we can prove that the
3930 // nested-name-specifier does not refer to a base class, which is
3931 // still possible in some cases.
3932
3933 // Otherwise we have to conservatively report that things might be
3934 // okay.
3935 return false;
3936 }
3937
3938 if (!NamedContext->isRecord()) {
3939 // Ideally this would point at the last name in the specifier,
3940 // but we don't have that level of source info.
3941 Diag(SS.getRange().getBegin(),
3942 diag::err_using_decl_nested_name_specifier_is_not_class)
3943 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
3944 return true;
3945 }
3946
3947 if (getLangOptions().CPlusPlus0x) {
3948 // C++0x [namespace.udecl]p3:
3949 // In a using-declaration used as a member-declaration, the
3950 // nested-name-specifier shall name a base class of the class
3951 // being defined.
3952
3953 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
3954 cast<CXXRecordDecl>(NamedContext))) {
3955 if (CurContext == NamedContext) {
3956 Diag(NameLoc,
3957 diag::err_using_decl_nested_name_specifier_is_current_class)
3958 << SS.getRange();
3959 return true;
3960 }
3961
3962 Diag(SS.getRange().getBegin(),
3963 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3964 << (NestedNameSpecifier*) SS.getScopeRep()
3965 << cast<CXXRecordDecl>(CurContext)
3966 << SS.getRange();
3967 return true;
3968 }
3969
3970 return false;
3971 }
3972
3973 // C++03 [namespace.udecl]p4:
3974 // A using-declaration used as a member-declaration shall refer
3975 // to a member of a base class of the class being defined [etc.].
3976
3977 // Salient point: SS doesn't have to name a base class as long as
3978 // lookup only finds members from base classes. Therefore we can
3979 // diagnose here only if we can prove that that can't happen,
3980 // i.e. if the class hierarchies provably don't intersect.
3981
3982 // TODO: it would be nice if "definitely valid" results were cached
3983 // in the UsingDecl and UsingShadowDecl so that these checks didn't
3984 // need to be repeated.
3985
3986 struct UserData {
3987 llvm::DenseSet<const CXXRecordDecl*> Bases;
3988
3989 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
3990 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
3991 Data->Bases.insert(Base);
3992 return true;
3993 }
3994
3995 bool hasDependentBases(const CXXRecordDecl *Class) {
3996 return !Class->forallBases(collect, this);
3997 }
3998
3999 /// Returns true if the base is dependent or is one of the
4000 /// accumulated base classes.
4001 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4002 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4003 return !Data->Bases.count(Base);
4004 }
4005
4006 bool mightShareBases(const CXXRecordDecl *Class) {
4007 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4008 }
4009 };
4010
4011 UserData Data;
4012
4013 // Returns false if we find a dependent base.
4014 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4015 return false;
4016
4017 // Returns false if the class has a dependent base or if it or one
4018 // of its bases is present in the base set of the current context.
4019 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4020 return false;
4021
4022 Diag(SS.getRange().getBegin(),
4023 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4024 << (NestedNameSpecifier*) SS.getScopeRep()
4025 << cast<CXXRecordDecl>(CurContext)
4026 << SS.getRange();
4027
4028 return true;
John McCallb96ec562009-12-04 22:46:56 +00004029}
4030
Mike Stump11289f42009-09-09 15:08:12 +00004031Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004032 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004033 SourceLocation AliasLoc,
4034 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004035 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004036 SourceLocation IdentLoc,
4037 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004038
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004039 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004040 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4041 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004042
Anders Carlssondca83c42009-03-28 06:23:46 +00004043 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004044 NamedDecl *PrevDecl
4045 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4046 ForRedeclaration);
4047 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4048 PrevDecl = 0;
4049
4050 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004051 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004052 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004053 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004054 // FIXME: At some point, we'll want to create the (redundant)
4055 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004056 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004057 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004058 return DeclPtrTy();
4059 }
Mike Stump11289f42009-09-09 15:08:12 +00004060
Anders Carlssondca83c42009-03-28 06:23:46 +00004061 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4062 diag::err_redefinition_different_kind;
4063 Diag(AliasLoc, DiagID) << Alias;
4064 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner83f095c2009-03-28 19:18:32 +00004065 return DeclPtrTy();
Anders Carlssondca83c42009-03-28 06:23:46 +00004066 }
4067
John McCall27b18f82009-11-17 02:14:36 +00004068 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00004069 return DeclPtrTy();
Mike Stump11289f42009-09-09 15:08:12 +00004070
John McCall9f3059a2009-10-09 21:13:30 +00004071 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004072 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4073 CTC_NoKeywords, 0)) {
4074 if (R.getAsSingle<NamespaceDecl>() ||
4075 R.getAsSingle<NamespaceAliasDecl>()) {
4076 if (DeclContext *DC = computeDeclContext(SS, false))
4077 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4078 << Ident << DC << Corrected << SS.getRange()
4079 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4080 else
4081 Diag(IdentLoc, diag::err_using_directive_suggest)
4082 << Ident << Corrected
4083 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4084
4085 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4086 << Corrected;
4087
4088 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004089 } else {
4090 R.clear();
4091 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004092 }
4093 }
4094
4095 if (R.empty()) {
4096 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4097 return DeclPtrTy();
4098 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004099 }
Mike Stump11289f42009-09-09 15:08:12 +00004100
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004101 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004102 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4103 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004104 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004105 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004106
John McCalld8d0d432010-02-16 06:53:13 +00004107 PushOnScopeChains(AliasDecl, S);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00004108 return DeclPtrTy::make(AliasDecl);
Anders Carlsson9205d552009-03-28 05:27:17 +00004109}
4110
Douglas Gregora57478e2010-05-01 15:04:51 +00004111namespace {
4112 /// \brief Scoped object used to handle the state changes required in Sema
4113 /// to implicitly define the body of a C++ member function;
4114 class ImplicitlyDefinedFunctionScope {
4115 Sema &S;
4116 DeclContext *PreviousContext;
4117
4118 public:
4119 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4120 : S(S), PreviousContext(S.CurContext)
4121 {
4122 S.CurContext = Method;
4123 S.PushFunctionScope();
4124 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4125 }
4126
4127 ~ImplicitlyDefinedFunctionScope() {
4128 S.PopExpressionEvaluationContext();
4129 S.PopFunctionOrBlockScope();
4130 S.CurContext = PreviousContext;
4131 }
4132 };
4133}
4134
Douglas Gregor0be31a22010-07-02 17:43:08 +00004135CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4136 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004137 // C++ [class.ctor]p5:
4138 // A default constructor for a class X is a constructor of class X
4139 // that can be called without an argument. If there is no
4140 // user-declared constructor for class X, a default constructor is
4141 // implicitly declared. An implicitly-declared default constructor
4142 // is an inline public member of its class.
Douglas Gregor6d880b12010-07-01 22:31:05 +00004143
4144 // C++ [except.spec]p14:
4145 // An implicitly declared special member function (Clause 12) shall have an
4146 // exception-specification. [...]
4147 ImplicitExceptionSpecification ExceptSpec(Context);
4148
4149 // Direct base-class destructors.
4150 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4151 BEnd = ClassDecl->bases_end();
4152 B != BEnd; ++B) {
4153 if (B->isVirtual()) // Handled below.
4154 continue;
4155
4156 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4157 if (CXXConstructorDecl *Constructor
4158 = cast<CXXRecordDecl>(BaseType->getDecl())->getDefaultConstructor())
4159 ExceptSpec.CalledDecl(Constructor);
4160 }
4161
4162 // Virtual base-class destructors.
4163 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4164 BEnd = ClassDecl->vbases_end();
4165 B != BEnd; ++B) {
4166 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4167 if (CXXConstructorDecl *Constructor
4168 = cast<CXXRecordDecl>(BaseType->getDecl())->getDefaultConstructor())
4169 ExceptSpec.CalledDecl(Constructor);
4170 }
4171
4172 // Field destructors.
4173 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4174 FEnd = ClassDecl->field_end();
4175 F != FEnd; ++F) {
4176 if (const RecordType *RecordTy
4177 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4178 if (CXXConstructorDecl *Constructor
4179 = cast<CXXRecordDecl>(RecordTy->getDecl())->getDefaultConstructor())
4180 ExceptSpec.CalledDecl(Constructor);
4181 }
4182
4183
4184 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004185 CanQualType ClassType
4186 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4187 DeclarationName Name
4188 = Context.DeclarationNames.getCXXConstructorName(ClassType);
4189 CXXConstructorDecl *DefaultCon
4190 = CXXConstructorDecl::Create(Context, ClassDecl,
4191 ClassDecl->getLocation(), Name,
4192 Context.getFunctionType(Context.VoidTy,
4193 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004194 ExceptSpec.hasExceptionSpecification(),
4195 ExceptSpec.hasAnyExceptionSpecification(),
4196 ExceptSpec.size(),
4197 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004198 FunctionType::ExtInfo()),
4199 /*TInfo=*/0,
4200 /*isExplicit=*/false,
4201 /*isInline=*/true,
4202 /*isImplicitlyDeclared=*/true);
4203 DefaultCon->setAccess(AS_public);
4204 DefaultCon->setImplicit();
4205 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor0be31a22010-07-02 17:43:08 +00004206 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004207 PushOnScopeChains(DefaultCon, S, true);
4208 else
4209 ClassDecl->addDecl(DefaultCon);
4210 return DefaultCon;
4211}
4212
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004213void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4214 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004215 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004216 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004217 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004218
Anders Carlsson423f5d82010-04-23 16:04:08 +00004219 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004220 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004221
Douglas Gregora57478e2010-05-01 15:04:51 +00004222 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004223 ErrorTrap Trap(*this);
4224 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4225 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004226 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004227 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004228 Constructor->setInvalidDecl();
4229 } else {
4230 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004231 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004232 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004233}
4234
Douglas Gregor0be31a22010-07-02 17:43:08 +00004235CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004236 // C++ [class.dtor]p2:
4237 // If a class has no user-declared destructor, a destructor is
4238 // declared implicitly. An implicitly-declared destructor is an
4239 // inline public member of its class.
4240
4241 // C++ [except.spec]p14:
4242 // An implicitly declared special member function (Clause 12) shall have
4243 // an exception-specification.
4244 ImplicitExceptionSpecification ExceptSpec(Context);
4245
4246 // Direct base-class destructors.
4247 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4248 BEnd = ClassDecl->bases_end();
4249 B != BEnd; ++B) {
4250 if (B->isVirtual()) // Handled below.
4251 continue;
4252
4253 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4254 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004255 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004256 }
4257
4258 // Virtual base-class destructors.
4259 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4260 BEnd = ClassDecl->vbases_end();
4261 B != BEnd; ++B) {
4262 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4263 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004264 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004265 }
4266
4267 // Field destructors.
4268 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4269 FEnd = ClassDecl->field_end();
4270 F != FEnd; ++F) {
4271 if (const RecordType *RecordTy
4272 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4273 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004274 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004275 }
4276
4277 QualType Ty = Context.getFunctionType(Context.VoidTy,
4278 0, 0, false, 0,
4279 ExceptSpec.hasExceptionSpecification(),
4280 ExceptSpec.hasAnyExceptionSpecification(),
4281 ExceptSpec.size(),
4282 ExceptSpec.data(),
4283 FunctionType::ExtInfo());
4284
4285 CanQualType ClassType
4286 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4287 DeclarationName Name
4288 = Context.DeclarationNames.getCXXDestructorName(ClassType);
4289 CXXDestructorDecl *Destructor
4290 = CXXDestructorDecl::Create(Context, ClassDecl,
4291 ClassDecl->getLocation(), Name, Ty,
4292 /*isInline=*/true,
4293 /*isImplicitlyDeclared=*/true);
4294 Destructor->setAccess(AS_public);
4295 Destructor->setImplicit();
4296 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor0be31a22010-07-02 17:43:08 +00004297 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregorf1203042010-07-01 19:09:28 +00004298 PushOnScopeChains(Destructor, S, true);
4299 else
4300 ClassDecl->addDecl(Destructor);
4301
4302 // This could be uniqued if it ever proves significant.
4303 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4304
4305 AddOverriddenMethods(ClassDecl, Destructor);
4306 return Destructor;
4307}
4308
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004309void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004310 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004311 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004312 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004313 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004314 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004315
Douglas Gregor54818f02010-05-12 16:39:35 +00004316 if (Destructor->isInvalidDecl())
4317 return;
4318
Douglas Gregora57478e2010-05-01 15:04:51 +00004319 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004320
Douglas Gregor54818f02010-05-12 16:39:35 +00004321 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004322 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4323 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004324
Douglas Gregor54818f02010-05-12 16:39:35 +00004325 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004326 Diag(CurrentLocation, diag::note_member_synthesized_at)
4327 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4328
4329 Destructor->setInvalidDecl();
4330 return;
4331 }
4332
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004333 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004334 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004335}
4336
Douglas Gregorb139cd52010-05-01 20:49:11 +00004337/// \brief Builds a statement that copies the given entity from \p From to
4338/// \c To.
4339///
4340/// This routine is used to copy the members of a class with an
4341/// implicitly-declared copy assignment operator. When the entities being
4342/// copied are arrays, this routine builds for loops to copy them.
4343///
4344/// \param S The Sema object used for type-checking.
4345///
4346/// \param Loc The location where the implicit copy is being generated.
4347///
4348/// \param T The type of the expressions being copied. Both expressions must
4349/// have this type.
4350///
4351/// \param To The expression we are copying to.
4352///
4353/// \param From The expression we are copying from.
4354///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004355/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4356/// Otherwise, it's a non-static member subobject.
4357///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004358/// \param Depth Internal parameter recording the depth of the recursion.
4359///
4360/// \returns A statement or a loop that copies the expressions.
4361static Sema::OwningStmtResult
4362BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4363 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004364 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004365 typedef Sema::OwningStmtResult OwningStmtResult;
4366 typedef Sema::OwningExprResult OwningExprResult;
4367
4368 // C++0x [class.copy]p30:
4369 // Each subobject is assigned in the manner appropriate to its type:
4370 //
4371 // - if the subobject is of class type, the copy assignment operator
4372 // for the class is used (as if by explicit qualification; that is,
4373 // ignoring any possible virtual overriding functions in more derived
4374 // classes);
4375 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4376 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4377
4378 // Look for operator=.
4379 DeclarationName Name
4380 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4381 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4382 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4383
4384 // Filter out any result that isn't a copy-assignment operator.
4385 LookupResult::Filter F = OpLookup.makeFilter();
4386 while (F.hasNext()) {
4387 NamedDecl *D = F.next();
4388 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4389 if (Method->isCopyAssignmentOperator())
4390 continue;
4391
4392 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004393 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004394 F.done();
4395
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004396 // Suppress the protected check (C++ [class.protected]) for each of the
4397 // assignment operators we found. This strange dance is required when
4398 // we're assigning via a base classes's copy-assignment operator. To
4399 // ensure that we're getting the right base class subobject (without
4400 // ambiguities), we need to cast "this" to that subobject type; to
4401 // ensure that we don't go through the virtual call mechanism, we need
4402 // to qualify the operator= name with the base class (see below). However,
4403 // this means that if the base class has a protected copy assignment
4404 // operator, the protected member access check will fail. So, we
4405 // rewrite "protected" access to "public" access in this case, since we
4406 // know by construction that we're calling from a derived class.
4407 if (CopyingBaseSubobject) {
4408 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4409 L != LEnd; ++L) {
4410 if (L.getAccess() == AS_protected)
4411 L.setAccess(AS_public);
4412 }
4413 }
4414
Douglas Gregorb139cd52010-05-01 20:49:11 +00004415 // Create the nested-name-specifier that will be used to qualify the
4416 // reference to operator=; this is required to suppress the virtual
4417 // call mechanism.
4418 CXXScopeSpec SS;
4419 SS.setRange(Loc);
4420 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4421 T.getTypePtr()));
4422
4423 // Create the reference to operator=.
4424 OwningExprResult OpEqualRef
4425 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4426 /*FirstQualifierInScope=*/0, OpLookup,
4427 /*TemplateArgs=*/0,
4428 /*SuppressQualifierCheck=*/true);
4429 if (OpEqualRef.isInvalid())
4430 return S.StmtError();
4431
4432 // Build the call to the assignment operator.
4433 Expr *FromE = From.takeAs<Expr>();
4434 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4435 OpEqualRef.takeAs<Expr>(),
4436 Loc, &FromE, 1, 0, Loc);
4437 if (Call.isInvalid())
4438 return S.StmtError();
4439
4440 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004441 }
John McCallab8c2732010-03-16 06:11:48 +00004442
Douglas Gregorb139cd52010-05-01 20:49:11 +00004443 // - if the subobject is of scalar type, the built-in assignment
4444 // operator is used.
4445 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4446 if (!ArrayTy) {
4447 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4448 BinaryOperator::Assign,
4449 To.takeAs<Expr>(),
4450 From.takeAs<Expr>());
4451 if (Assignment.isInvalid())
4452 return S.StmtError();
4453
4454 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004455 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004456
4457 // - if the subobject is an array, each element is assigned, in the
4458 // manner appropriate to the element type;
4459
4460 // Construct a loop over the array bounds, e.g.,
4461 //
4462 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4463 //
4464 // that will copy each of the array elements.
4465 QualType SizeType = S.Context.getSizeType();
4466
4467 // Create the iteration variable.
4468 IdentifierInfo *IterationVarName = 0;
4469 {
4470 llvm::SmallString<8> Str;
4471 llvm::raw_svector_ostream OS(Str);
4472 OS << "__i" << Depth;
4473 IterationVarName = &S.Context.Idents.get(OS.str());
4474 }
4475 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4476 IterationVarName, SizeType,
4477 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4478 VarDecl::None, VarDecl::None);
4479
4480 // Initialize the iteration variable to zero.
4481 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4482 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4483
4484 // Create a reference to the iteration variable; we'll use this several
4485 // times throughout.
4486 Expr *IterationVarRef
4487 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4488 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4489
4490 // Create the DeclStmt that holds the iteration variable.
4491 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4492
4493 // Create the comparison against the array bound.
4494 llvm::APInt Upper = ArrayTy->getSize();
4495 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4496 OwningExprResult Comparison
4497 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4498 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4499 BinaryOperator::NE, S.Context.BoolTy, Loc));
4500
4501 // Create the pre-increment of the iteration variable.
4502 OwningExprResult Increment
4503 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4504 UnaryOperator::PreInc,
4505 SizeType, Loc));
4506
4507 // Subscript the "from" and "to" expressions with the iteration variable.
4508 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4509 S.Owned(IterationVarRef->Retain()),
4510 Loc);
4511 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4512 S.Owned(IterationVarRef->Retain()),
4513 Loc);
4514 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4515 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4516
4517 // Build the copy for an individual element of the array.
4518 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4519 ArrayTy->getElementType(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004520 move(To), move(From),
4521 CopyingBaseSubobject, Depth+1);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004522 if (Copy.isInvalid()) {
4523 InitStmt->Destroy(S.Context);
4524 return S.StmtError();
4525 }
4526
4527 // Construct the loop that copies all elements of this array.
4528 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4529 S.MakeFullExpr(Comparison),
4530 Sema::DeclPtrTy(),
4531 S.MakeFullExpr(Increment),
4532 Loc, move(Copy));
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004533}
4534
Douglas Gregor0be31a22010-07-02 17:43:08 +00004535CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004536 // Note: The following rules are largely analoguous to the copy
4537 // constructor rules. Note that virtual bases are not taken into account
4538 // for determining the argument type of the operator. Note also that
4539 // operators taking an object instead of a reference are allowed.
4540 //
4541 // C++ [class.copy]p10:
4542 // If the class definition does not explicitly declare a copy
4543 // assignment operator, one is declared implicitly.
4544 // The implicitly-defined copy assignment operator for a class X
4545 // will have the form
4546 //
4547 // X& X::operator=(const X&)
4548 //
4549 // if
4550 bool HasConstCopyAssignment = true;
4551
4552 // -- each direct base class B of X has a copy assignment operator
4553 // whose parameter is of type const B&, const volatile B& or B,
4554 // and
4555 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4556 BaseEnd = ClassDecl->bases_end();
4557 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4558 assert(!Base->getType()->isDependentType() &&
4559 "Cannot generate implicit members for class with dependent bases.");
4560 const CXXRecordDecl *BaseClassDecl
4561 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
4562 const CXXMethodDecl *MD = 0;
4563 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
4564 MD);
4565 }
4566
4567 // -- for all the nonstatic data members of X that are of a class
4568 // type M (or array thereof), each such class type has a copy
4569 // assignment operator whose parameter is of type const M&,
4570 // const volatile M& or M.
4571 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4572 FieldEnd = ClassDecl->field_end();
4573 HasConstCopyAssignment && Field != FieldEnd;
4574 ++Field) {
4575 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4576 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4577 const CXXRecordDecl *FieldClassDecl
4578 = cast<CXXRecordDecl>(FieldClassType->getDecl());
4579 const CXXMethodDecl *MD = 0;
4580 HasConstCopyAssignment
4581 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
4582 }
4583 }
4584
4585 // Otherwise, the implicitly declared copy assignment operator will
4586 // have the form
4587 //
4588 // X& X::operator=(X&)
4589 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4590 QualType RetType = Context.getLValueReferenceType(ArgType);
4591 if (HasConstCopyAssignment)
4592 ArgType = ArgType.withConst();
4593 ArgType = Context.getLValueReferenceType(ArgType);
4594
Douglas Gregor68e11362010-07-01 17:48:08 +00004595 // C++ [except.spec]p14:
4596 // An implicitly declared special member function (Clause 12) shall have an
4597 // exception-specification. [...]
4598 ImplicitExceptionSpecification ExceptSpec(Context);
4599 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4600 BaseEnd = ClassDecl->bases_end();
4601 Base != BaseEnd; ++Base) {
4602 const CXXRecordDecl *BaseClassDecl
4603 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
4604 if (CXXMethodDecl *CopyAssign
4605 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4606 ExceptSpec.CalledDecl(CopyAssign);
4607 }
4608 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4609 FieldEnd = ClassDecl->field_end();
4610 Field != FieldEnd;
4611 ++Field) {
4612 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4613 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4614 const CXXRecordDecl *FieldClassDecl
4615 = cast<CXXRecordDecl>(FieldClassType->getDecl());
4616 if (CXXMethodDecl *CopyAssign
4617 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4618 ExceptSpec.CalledDecl(CopyAssign);
4619 }
4620 }
4621
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004622 // An implicitly-declared copy assignment operator is an inline public
4623 // member of its class.
4624 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4625 CXXMethodDecl *CopyAssignment
4626 = CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
4627 Context.getFunctionType(RetType, &ArgType, 1,
4628 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004629 ExceptSpec.hasExceptionSpecification(),
4630 ExceptSpec.hasAnyExceptionSpecification(),
4631 ExceptSpec.size(),
4632 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004633 FunctionType::ExtInfo()),
4634 /*TInfo=*/0, /*isStatic=*/false,
4635 /*StorageClassAsWritten=*/FunctionDecl::None,
4636 /*isInline=*/true);
4637 CopyAssignment->setAccess(AS_public);
4638 CopyAssignment->setImplicit();
4639 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4640 CopyAssignment->setCopyAssignment(true);
4641
4642 // Add the parameter to the operator.
4643 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4644 ClassDecl->getLocation(),
4645 /*Id=*/0,
4646 ArgType, /*TInfo=*/0,
4647 VarDecl::None,
4648 VarDecl::None, 0);
4649 CopyAssignment->setParams(&FromParam, 1);
4650
4651 // Don't call addedAssignmentOperator. The class does not need to know about
4652 // the implicitly-declared copy assignment operator.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004653 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004654 PushOnScopeChains(CopyAssignment, S, true);
4655 else
4656 ClassDecl->addDecl(CopyAssignment);
4657
4658 AddOverriddenMethods(ClassDecl, CopyAssignment);
4659 return CopyAssignment;
4660}
4661
Douglas Gregorb139cd52010-05-01 20:49:11 +00004662void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4663 CXXMethodDecl *CopyAssignOperator) {
4664 assert((CopyAssignOperator->isImplicit() &&
4665 CopyAssignOperator->isOverloadedOperator() &&
4666 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004667 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004668 "DefineImplicitCopyAssignment called for wrong function");
4669
4670 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4671
4672 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4673 CopyAssignOperator->setInvalidDecl();
4674 return;
4675 }
4676
4677 CopyAssignOperator->setUsed();
4678
4679 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004680 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004681
4682 // C++0x [class.copy]p30:
4683 // The implicitly-defined or explicitly-defaulted copy assignment operator
4684 // for a non-union class X performs memberwise copy assignment of its
4685 // subobjects. The direct base classes of X are assigned first, in the
4686 // order of their declaration in the base-specifier-list, and then the
4687 // immediate non-static data members of X are assigned, in the order in
4688 // which they were declared in the class definition.
4689
4690 // The statements that form the synthesized function body.
4691 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4692
4693 // The parameter for the "other" object, which we are copying from.
4694 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4695 Qualifiers OtherQuals = Other->getType().getQualifiers();
4696 QualType OtherRefType = Other->getType();
4697 if (const LValueReferenceType *OtherRef
4698 = OtherRefType->getAs<LValueReferenceType>()) {
4699 OtherRefType = OtherRef->getPointeeType();
4700 OtherQuals = OtherRefType.getQualifiers();
4701 }
4702
4703 // Our location for everything implicitly-generated.
4704 SourceLocation Loc = CopyAssignOperator->getLocation();
4705
4706 // Construct a reference to the "other" object. We'll be using this
4707 // throughout the generated ASTs.
4708 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4709 assert(OtherRef && "Reference to parameter cannot fail!");
4710
4711 // Construct the "this" pointer. We'll be using this throughout the generated
4712 // ASTs.
4713 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4714 assert(This && "Reference to this cannot fail!");
4715
4716 // Assign base classes.
4717 bool Invalid = false;
4718 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4719 E = ClassDecl->bases_end(); Base != E; ++Base) {
4720 // Form the assignment:
4721 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4722 QualType BaseType = Base->getType().getUnqualifiedType();
4723 CXXRecordDecl *BaseClassDecl = 0;
4724 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4725 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4726 else {
4727 Invalid = true;
4728 continue;
4729 }
4730
4731 // Construct the "from" expression, which is an implicit cast to the
4732 // appropriately-qualified base type.
4733 Expr *From = OtherRef->Retain();
4734 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
4735 CastExpr::CK_UncheckedDerivedToBase, /*isLvalue=*/true,
4736 CXXBaseSpecifierArray(Base));
4737
4738 // Dereference "this".
4739 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4740 Owned(This->Retain()));
4741
4742 // Implicitly cast "this" to the appropriately-qualified base type.
4743 Expr *ToE = To.takeAs<Expr>();
4744 ImpCastExprToType(ToE,
4745 Context.getCVRQualifiedType(BaseType,
4746 CopyAssignOperator->getTypeQualifiers()),
4747 CastExpr::CK_UncheckedDerivedToBase,
4748 /*isLvalue=*/true, CXXBaseSpecifierArray(Base));
4749 To = Owned(ToE);
4750
4751 // Build the copy.
4752 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004753 move(To), Owned(From),
4754 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004755 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004756 Diag(CurrentLocation, diag::note_member_synthesized_at)
4757 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4758 CopyAssignOperator->setInvalidDecl();
4759 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004760 }
4761
4762 // Success! Record the copy.
4763 Statements.push_back(Copy.takeAs<Expr>());
4764 }
4765
4766 // \brief Reference to the __builtin_memcpy function.
4767 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004768 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004769 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004770
4771 // Assign non-static members.
4772 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4773 FieldEnd = ClassDecl->field_end();
4774 Field != FieldEnd; ++Field) {
4775 // Check for members of reference type; we can't copy those.
4776 if (Field->getType()->isReferenceType()) {
4777 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4778 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4779 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004780 Diag(CurrentLocation, diag::note_member_synthesized_at)
4781 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004782 Invalid = true;
4783 continue;
4784 }
4785
4786 // Check for members of const-qualified, non-class type.
4787 QualType BaseType = Context.getBaseElementType(Field->getType());
4788 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4789 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4790 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4791 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004792 Diag(CurrentLocation, diag::note_member_synthesized_at)
4793 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004794 Invalid = true;
4795 continue;
4796 }
4797
4798 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00004799 if (FieldType->isIncompleteArrayType()) {
4800 assert(ClassDecl->hasFlexibleArrayMember() &&
4801 "Incomplete array type is not valid");
4802 continue;
4803 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004804
4805 // Build references to the field in the object we're copying from and to.
4806 CXXScopeSpec SS; // Intentionally empty
4807 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4808 LookupMemberName);
4809 MemberLookup.addDecl(*Field);
4810 MemberLookup.resolveKind();
4811 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4812 OtherRefType,
4813 Loc, /*IsArrow=*/false,
4814 SS, 0, MemberLookup, 0);
4815 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4816 This->getType(),
4817 Loc, /*IsArrow=*/true,
4818 SS, 0, MemberLookup, 0);
4819 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4820 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4821
4822 // If the field should be copied with __builtin_memcpy rather than via
4823 // explicit assignments, do so. This optimization only applies for arrays
4824 // of scalars and arrays of class type with trivial copy-assignment
4825 // operators.
4826 if (FieldType->isArrayType() &&
4827 (!BaseType->isRecordType() ||
4828 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4829 ->hasTrivialCopyAssignment())) {
4830 // Compute the size of the memory buffer to be copied.
4831 QualType SizeType = Context.getSizeType();
4832 llvm::APInt Size(Context.getTypeSize(SizeType),
4833 Context.getTypeSizeInChars(BaseType).getQuantity());
4834 for (const ConstantArrayType *Array
4835 = Context.getAsConstantArrayType(FieldType);
4836 Array;
4837 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4838 llvm::APInt ArraySize = Array->getSize();
4839 ArraySize.zextOrTrunc(Size.getBitWidth());
4840 Size *= ArraySize;
4841 }
4842
4843 // Take the address of the field references for "from" and "to".
4844 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4845 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004846
4847 bool NeedsCollectableMemCpy =
4848 (BaseType->isRecordType() &&
4849 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
4850
4851 if (NeedsCollectableMemCpy) {
4852 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004853 // Create a reference to the __builtin_objc_memmove_collectable function.
4854 LookupResult R(*this,
4855 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004856 Loc, LookupOrdinaryName);
4857 LookupName(R, TUScope, true);
4858
4859 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
4860 if (!CollectableMemCpy) {
4861 // Something went horribly wrong earlier, and we will have
4862 // complained about it.
4863 Invalid = true;
4864 continue;
4865 }
4866
4867 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
4868 CollectableMemCpy->getType(),
4869 Loc, 0).takeAs<Expr>();
4870 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
4871 }
4872 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004873 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004874 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004875 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
4876 LookupOrdinaryName);
4877 LookupName(R, TUScope, true);
4878
4879 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
4880 if (!BuiltinMemCpy) {
4881 // Something went horribly wrong earlier, and we will have complained
4882 // about it.
4883 Invalid = true;
4884 continue;
4885 }
4886
4887 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
4888 BuiltinMemCpy->getType(),
4889 Loc, 0).takeAs<Expr>();
4890 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
4891 }
4892
4893 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
4894 CallArgs.push_back(To.takeAs<Expr>());
4895 CallArgs.push_back(From.takeAs<Expr>());
4896 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
4897 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
4898 Commas.push_back(Loc);
4899 Commas.push_back(Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00004900 OwningExprResult Call = ExprError();
4901 if (NeedsCollectableMemCpy)
4902 Call = ActOnCallExpr(/*Scope=*/0,
4903 Owned(CollectableMemCpyRef->Retain()),
4904 Loc, move_arg(CallArgs),
4905 Commas.data(), Loc);
4906 else
4907 Call = ActOnCallExpr(/*Scope=*/0,
4908 Owned(BuiltinMemCpyRef->Retain()),
4909 Loc, move_arg(CallArgs),
4910 Commas.data(), Loc);
4911
Douglas Gregorb139cd52010-05-01 20:49:11 +00004912 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
4913 Statements.push_back(Call.takeAs<Expr>());
4914 continue;
4915 }
4916
4917 // Build the copy of this field.
4918 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004919 move(To), move(From),
4920 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004921 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004922 Diag(CurrentLocation, diag::note_member_synthesized_at)
4923 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4924 CopyAssignOperator->setInvalidDecl();
4925 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004926 }
4927
4928 // Success! Record the copy.
4929 Statements.push_back(Copy.takeAs<Stmt>());
4930 }
4931
4932 if (!Invalid) {
4933 // Add a "return *this;"
4934 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4935 Owned(This->Retain()));
4936
4937 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
4938 if (Return.isInvalid())
4939 Invalid = true;
4940 else {
4941 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00004942
4943 if (Trap.hasErrorOccurred()) {
4944 Diag(CurrentLocation, diag::note_member_synthesized_at)
4945 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4946 Invalid = true;
4947 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004948 }
4949 }
4950
4951 if (Invalid) {
4952 CopyAssignOperator->setInvalidDecl();
4953 return;
4954 }
4955
4956 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
4957 /*isStmtExpr=*/false);
4958 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
4959 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004960}
4961
Douglas Gregor0be31a22010-07-02 17:43:08 +00004962CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
4963 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00004964 // C++ [class.copy]p4:
4965 // If the class definition does not explicitly declare a copy
4966 // constructor, one is declared implicitly.
4967
Douglas Gregor54be3392010-07-01 17:57:27 +00004968 // C++ [class.copy]p5:
4969 // The implicitly-declared copy constructor for a class X will
4970 // have the form
4971 //
4972 // X::X(const X&)
4973 //
4974 // if
4975 bool HasConstCopyConstructor = true;
4976
4977 // -- each direct or virtual base class B of X has a copy
4978 // constructor whose first parameter is of type const B& or
4979 // const volatile B&, and
4980 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4981 BaseEnd = ClassDecl->bases_end();
4982 HasConstCopyConstructor && Base != BaseEnd;
4983 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00004984 // Virtual bases are handled below.
4985 if (Base->isVirtual())
4986 continue;
4987
4988 const CXXRecordDecl *BaseClassDecl
4989 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
4990 HasConstCopyConstructor
4991 = BaseClassDecl->hasConstCopyConstructor(Context);
4992 }
4993
4994 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
4995 BaseEnd = ClassDecl->vbases_end();
4996 HasConstCopyConstructor && Base != BaseEnd;
4997 ++Base) {
Douglas Gregor54be3392010-07-01 17:57:27 +00004998 const CXXRecordDecl *BaseClassDecl
4999 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5000 HasConstCopyConstructor
5001 = BaseClassDecl->hasConstCopyConstructor(Context);
5002 }
5003
5004 // -- for all the nonstatic data members of X that are of a
5005 // class type M (or array thereof), each such class type
5006 // has a copy constructor whose first parameter is of type
5007 // const M& or const volatile M&.
5008 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5009 FieldEnd = ClassDecl->field_end();
5010 HasConstCopyConstructor && Field != FieldEnd;
5011 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005012 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005013 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5014 const CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005015 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor54be3392010-07-01 17:57:27 +00005016 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005017 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005018 }
5019 }
5020
5021 // Otherwise, the implicitly declared copy constructor will have
5022 // the form
5023 //
5024 // X::X(X&)
5025 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5026 QualType ArgType = ClassType;
5027 if (HasConstCopyConstructor)
5028 ArgType = ArgType.withConst();
5029 ArgType = Context.getLValueReferenceType(ArgType);
5030
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005031 // C++ [except.spec]p14:
5032 // An implicitly declared special member function (Clause 12) shall have an
5033 // exception-specification. [...]
5034 ImplicitExceptionSpecification ExceptSpec(Context);
5035 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5036 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5037 BaseEnd = ClassDecl->bases_end();
5038 Base != BaseEnd;
5039 ++Base) {
5040 // Virtual bases are handled below.
5041 if (Base->isVirtual())
5042 continue;
5043
5044 const CXXRecordDecl *BaseClassDecl
5045 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5046 if (CXXConstructorDecl *CopyConstructor
5047 = BaseClassDecl->getCopyConstructor(Context, Quals))
5048 ExceptSpec.CalledDecl(CopyConstructor);
5049 }
5050 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5051 BaseEnd = ClassDecl->vbases_end();
5052 Base != BaseEnd;
5053 ++Base) {
5054 const CXXRecordDecl *BaseClassDecl
5055 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
5056 if (CXXConstructorDecl *CopyConstructor
5057 = BaseClassDecl->getCopyConstructor(Context, Quals))
5058 ExceptSpec.CalledDecl(CopyConstructor);
5059 }
5060 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5061 FieldEnd = ClassDecl->field_end();
5062 Field != FieldEnd;
5063 ++Field) {
5064 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5065 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
5066 const CXXRecordDecl *FieldClassDecl
5067 = cast<CXXRecordDecl>(FieldClassType->getDecl());
5068 if (CXXConstructorDecl *CopyConstructor
5069 = FieldClassDecl->getCopyConstructor(Context, Quals))
5070 ExceptSpec.CalledDecl(CopyConstructor);
5071 }
5072 }
5073
Douglas Gregor54be3392010-07-01 17:57:27 +00005074 // An implicitly-declared copy constructor is an inline public
5075 // member of its class.
5076 DeclarationName Name
5077 = Context.DeclarationNames.getCXXConstructorName(
5078 Context.getCanonicalType(ClassType));
5079 CXXConstructorDecl *CopyConstructor
5080 = CXXConstructorDecl::Create(Context, ClassDecl,
5081 ClassDecl->getLocation(), Name,
5082 Context.getFunctionType(Context.VoidTy,
5083 &ArgType, 1,
5084 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005085 ExceptSpec.hasExceptionSpecification(),
5086 ExceptSpec.hasAnyExceptionSpecification(),
5087 ExceptSpec.size(),
5088 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005089 FunctionType::ExtInfo()),
5090 /*TInfo=*/0,
5091 /*isExplicit=*/false,
5092 /*isInline=*/true,
5093 /*isImplicitlyDeclared=*/true);
5094 CopyConstructor->setAccess(AS_public);
5095 CopyConstructor->setImplicit();
5096 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5097
5098 // Add the parameter to the constructor.
5099 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5100 ClassDecl->getLocation(),
5101 /*IdentifierInfo=*/0,
5102 ArgType, /*TInfo=*/0,
5103 VarDecl::None,
5104 VarDecl::None, 0);
5105 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005106 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor54be3392010-07-01 17:57:27 +00005107 PushOnScopeChains(CopyConstructor, S, true);
5108 else
5109 ClassDecl->addDecl(CopyConstructor);
5110
5111 return CopyConstructor;
5112}
5113
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005114void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5115 CXXConstructorDecl *CopyConstructor,
5116 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005117 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005118 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005119 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005120 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005121
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005122 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005123 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005124
Douglas Gregora57478e2010-05-01 15:04:51 +00005125 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005126 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005127
Douglas Gregor54818f02010-05-12 16:39:35 +00005128 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5129 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005130 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005131 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005132 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005133 } else {
5134 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5135 CopyConstructor->getLocation(),
5136 MultiStmtArg(*this, 0, 0),
5137 /*isStmtExpr=*/false)
5138 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005139 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005140
5141 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005142}
5143
Anders Carlsson6eb55572009-08-25 05:12:04 +00005144Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005145Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005146 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005147 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005148 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005149 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005150 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005151
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005152 // C++0x [class.copy]p34:
5153 // When certain criteria are met, an implementation is allowed to
5154 // omit the copy/move construction of a class object, even if the
5155 // copy/move constructor and/or destructor for the object have
5156 // side effects. [...]
5157 // - when a temporary class object that has not been bound to a
5158 // reference (12.2) would be copied/moved to a class object
5159 // with the same cv-unqualified type, the copy/move operation
5160 // can be omitted by constructing the temporary object
5161 // directly into the target of the omitted copy/move
5162 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5163 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5164 Elidable = SubExpr->isTemporaryObject() &&
5165 Context.hasSameUnqualifiedType(SubExpr->getType(),
5166 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00005167 }
Mike Stump11289f42009-09-09 15:08:12 +00005168
5169 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005170 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005171 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00005172}
5173
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005174/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5175/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00005176Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005177Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5178 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005179 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005180 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005181 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005182 unsigned NumExprs = ExprArgs.size();
5183 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005184
Douglas Gregor27381f32009-11-23 12:27:39 +00005185 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005186 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005187 Constructor, Elidable, Exprs, NumExprs,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005188 RequiresZeroInit, ConstructKind));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005189}
5190
Mike Stump11289f42009-09-09 15:08:12 +00005191bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005192 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005193 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00005194 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005195 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005196 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005197 if (TempResult.isInvalid())
5198 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005199
Anders Carlsson6eb55572009-08-25 05:12:04 +00005200 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00005201 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005202 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005203 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005204
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005205 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005206}
5207
John McCall03c48482010-02-02 09:10:11 +00005208void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5209 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005210 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005211 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005212 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005213 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005214 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005215 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005216 << VD->getDeclName()
5217 << VD->getType());
John McCall6781b052010-02-02 08:45:54 +00005218 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005219}
5220
Mike Stump11289f42009-09-09 15:08:12 +00005221/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005222/// ActOnDeclarator, when a C++ direct initializer is present.
5223/// e.g: "int x(1);"
Chris Lattner83f095c2009-03-28 19:18:32 +00005224void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
5225 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005226 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005227 SourceLocation *CommaLocs,
5228 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005229 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattner83f095c2009-03-28 19:18:32 +00005230 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005231
5232 // If there is no declaration, there was an error parsing it. Just ignore
5233 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005234 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005235 return;
Mike Stump11289f42009-09-09 15:08:12 +00005236
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005237 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5238 if (!VDecl) {
5239 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5240 RealDecl->setInvalidDecl();
5241 return;
5242 }
5243
Douglas Gregor402250f2009-08-26 21:14:46 +00005244 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005245 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005246 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5247 //
5248 // Clients that want to distinguish between the two forms, can check for
5249 // direct initializer using VarDecl::hasCXXDirectInitializer().
5250 // A major benefit is that clients that don't particularly care about which
5251 // exactly form was it (like the CodeGen) can handle both cases without
5252 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005253
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005254 // C++ 8.5p11:
5255 // The form of initialization (using parentheses or '=') is generally
5256 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005257 // class type.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005258 QualType DeclInitType = VDecl->getType();
5259 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahaniand264ee02009-10-28 19:04:36 +00005260 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005261
Douglas Gregor50dc2192010-02-11 22:55:30 +00005262 if (!VDecl->getType()->isDependentType() &&
5263 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005264 diag::err_typecheck_decl_incomplete_type)) {
5265 VDecl->setInvalidDecl();
5266 return;
5267 }
5268
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005269 // The variable can not have an abstract class type.
5270 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5271 diag::err_abstract_type_in_decl,
5272 AbstractVariableType))
5273 VDecl->setInvalidDecl();
5274
Sebastian Redl5ca79842010-02-01 20:16:42 +00005275 const VarDecl *Def;
5276 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005277 Diag(VDecl->getLocation(), diag::err_redefinition)
5278 << VDecl->getDeclName();
5279 Diag(Def->getLocation(), diag::note_previous_definition);
5280 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005281 return;
5282 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005283
5284 // If either the declaration has a dependent type or if any of the
5285 // expressions is type-dependent, we represent the initialization
5286 // via a ParenListExpr for later use during template instantiation.
5287 if (VDecl->getType()->isDependentType() ||
5288 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5289 // Let clients know that initialization was done with a direct initializer.
5290 VDecl->setCXXDirectInitializer(true);
5291
5292 // Store the initialization expressions as a ParenListExpr.
5293 unsigned NumExprs = Exprs.size();
5294 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5295 (Expr **)Exprs.release(),
5296 NumExprs, RParenLoc));
5297 return;
5298 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005299
5300 // Capture the variable that is being initialized and the style of
5301 // initialization.
5302 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5303
5304 // FIXME: Poor source location information.
5305 InitializationKind Kind
5306 = InitializationKind::CreateDirect(VDecl->getLocation(),
5307 LParenLoc, RParenLoc);
5308
5309 InitializationSequence InitSeq(*this, Entity, Kind,
5310 (Expr**)Exprs.get(), Exprs.size());
5311 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5312 if (Result.isInvalid()) {
5313 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005314 return;
5315 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005316
5317 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregord5058122010-02-11 01:19:42 +00005318 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005319 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005320
John McCall03c48482010-02-02 09:10:11 +00005321 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5322 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005323}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005324
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005325/// \brief Given a constructor and the set of arguments provided for the
5326/// constructor, convert the arguments and add any required default arguments
5327/// to form a proper call to this constructor.
5328///
5329/// \returns true if an error occurred, false otherwise.
5330bool
5331Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5332 MultiExprArg ArgsPtr,
5333 SourceLocation Loc,
5334 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
5335 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5336 unsigned NumArgs = ArgsPtr.size();
5337 Expr **Args = (Expr **)ArgsPtr.get();
5338
5339 const FunctionProtoType *Proto
5340 = Constructor->getType()->getAs<FunctionProtoType>();
5341 assert(Proto && "Constructor without a prototype?");
5342 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005343
5344 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005345 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005346 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005347 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005348 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005349
5350 VariadicCallType CallType =
5351 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5352 llvm::SmallVector<Expr *, 8> AllArgs;
5353 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5354 Proto, 0, Args, NumArgs, AllArgs,
5355 CallType);
5356 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5357 ConvertedArgs.push_back(AllArgs[i]);
5358 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005359}
5360
Anders Carlssone363c8e2009-12-12 00:32:00 +00005361static inline bool
5362CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5363 const FunctionDecl *FnDecl) {
5364 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5365 if (isa<NamespaceDecl>(DC)) {
5366 return SemaRef.Diag(FnDecl->getLocation(),
5367 diag::err_operator_new_delete_declared_in_namespace)
5368 << FnDecl->getDeclName();
5369 }
5370
5371 if (isa<TranslationUnitDecl>(DC) &&
5372 FnDecl->getStorageClass() == FunctionDecl::Static) {
5373 return SemaRef.Diag(FnDecl->getLocation(),
5374 diag::err_operator_new_delete_declared_static)
5375 << FnDecl->getDeclName();
5376 }
5377
Anders Carlsson60659a82009-12-12 02:43:16 +00005378 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005379}
5380
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005381static inline bool
5382CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5383 CanQualType ExpectedResultType,
5384 CanQualType ExpectedFirstParamType,
5385 unsigned DependentParamTypeDiag,
5386 unsigned InvalidParamTypeDiag) {
5387 QualType ResultType =
5388 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5389
5390 // Check that the result type is not dependent.
5391 if (ResultType->isDependentType())
5392 return SemaRef.Diag(FnDecl->getLocation(),
5393 diag::err_operator_new_delete_dependent_result_type)
5394 << FnDecl->getDeclName() << ExpectedResultType;
5395
5396 // Check that the result type is what we expect.
5397 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5398 return SemaRef.Diag(FnDecl->getLocation(),
5399 diag::err_operator_new_delete_invalid_result_type)
5400 << FnDecl->getDeclName() << ExpectedResultType;
5401
5402 // A function template must have at least 2 parameters.
5403 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5404 return SemaRef.Diag(FnDecl->getLocation(),
5405 diag::err_operator_new_delete_template_too_few_parameters)
5406 << FnDecl->getDeclName();
5407
5408 // The function decl must have at least 1 parameter.
5409 if (FnDecl->getNumParams() == 0)
5410 return SemaRef.Diag(FnDecl->getLocation(),
5411 diag::err_operator_new_delete_too_few_parameters)
5412 << FnDecl->getDeclName();
5413
5414 // Check the the first parameter type is not dependent.
5415 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5416 if (FirstParamType->isDependentType())
5417 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5418 << FnDecl->getDeclName() << ExpectedFirstParamType;
5419
5420 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005421 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005422 ExpectedFirstParamType)
5423 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5424 << FnDecl->getDeclName() << ExpectedFirstParamType;
5425
5426 return false;
5427}
5428
Anders Carlsson12308f42009-12-11 23:23:22 +00005429static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005430CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005431 // C++ [basic.stc.dynamic.allocation]p1:
5432 // A program is ill-formed if an allocation function is declared in a
5433 // namespace scope other than global scope or declared static in global
5434 // scope.
5435 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5436 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005437
5438 CanQualType SizeTy =
5439 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5440
5441 // C++ [basic.stc.dynamic.allocation]p1:
5442 // The return type shall be void*. The first parameter shall have type
5443 // std::size_t.
5444 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5445 SizeTy,
5446 diag::err_operator_new_dependent_param_type,
5447 diag::err_operator_new_param_type))
5448 return true;
5449
5450 // C++ [basic.stc.dynamic.allocation]p1:
5451 // The first parameter shall not have an associated default argument.
5452 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005453 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005454 diag::err_operator_new_default_arg)
5455 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5456
5457 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005458}
5459
5460static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005461CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5462 // C++ [basic.stc.dynamic.deallocation]p1:
5463 // A program is ill-formed if deallocation functions are declared in a
5464 // namespace scope other than global scope or declared static in global
5465 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005466 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5467 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005468
5469 // C++ [basic.stc.dynamic.deallocation]p2:
5470 // Each deallocation function shall return void and its first parameter
5471 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005472 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5473 SemaRef.Context.VoidPtrTy,
5474 diag::err_operator_delete_dependent_param_type,
5475 diag::err_operator_delete_param_type))
5476 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005477
Anders Carlssonc0b2ce12009-12-12 00:16:02 +00005478 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5479 if (FirstParamType->isDependentType())
5480 return SemaRef.Diag(FnDecl->getLocation(),
5481 diag::err_operator_delete_dependent_param_type)
5482 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
5483
5484 if (SemaRef.Context.getCanonicalType(FirstParamType) !=
5485 SemaRef.Context.VoidPtrTy)
Anders Carlsson12308f42009-12-11 23:23:22 +00005486 return SemaRef.Diag(FnDecl->getLocation(),
5487 diag::err_operator_delete_param_type)
5488 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
Anders Carlsson12308f42009-12-11 23:23:22 +00005489
5490 return false;
5491}
5492
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005493/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5494/// of this overloaded operator is well-formed. If so, returns false;
5495/// otherwise, emits appropriate diagnostics and returns true.
5496bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005497 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005498 "Expected an overloaded operator declaration");
5499
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005500 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5501
Mike Stump11289f42009-09-09 15:08:12 +00005502 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005503 // The allocation and deallocation functions, operator new,
5504 // operator new[], operator delete and operator delete[], are
5505 // described completely in 3.7.3. The attributes and restrictions
5506 // found in the rest of this subclause do not apply to them unless
5507 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005508 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005509 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005510
Anders Carlsson22f443f2009-12-12 00:26:23 +00005511 if (Op == OO_New || Op == OO_Array_New)
5512 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005513
5514 // C++ [over.oper]p6:
5515 // An operator function shall either be a non-static member
5516 // function or be a non-member function and have at least one
5517 // parameter whose type is a class, a reference to a class, an
5518 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005519 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5520 if (MethodDecl->isStatic())
5521 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005522 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005523 } else {
5524 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005525 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5526 ParamEnd = FnDecl->param_end();
5527 Param != ParamEnd; ++Param) {
5528 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005529 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5530 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005531 ClassOrEnumParam = true;
5532 break;
5533 }
5534 }
5535
Douglas Gregord69246b2008-11-17 16:14:12 +00005536 if (!ClassOrEnumParam)
5537 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005538 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005539 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005540 }
5541
5542 // C++ [over.oper]p8:
5543 // An operator function cannot have default arguments (8.3.6),
5544 // except where explicitly stated below.
5545 //
Mike Stump11289f42009-09-09 15:08:12 +00005546 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005547 // (C++ [over.call]p1).
5548 if (Op != OO_Call) {
5549 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5550 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005551 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005552 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005553 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005554 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005555 }
5556 }
5557
Douglas Gregor6cf08062008-11-10 13:38:07 +00005558 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5559 { false, false, false }
5560#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5561 , { Unary, Binary, MemberOnly }
5562#include "clang/Basic/OperatorKinds.def"
5563 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005564
Douglas Gregor6cf08062008-11-10 13:38:07 +00005565 bool CanBeUnaryOperator = OperatorUses[Op][0];
5566 bool CanBeBinaryOperator = OperatorUses[Op][1];
5567 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005568
5569 // C++ [over.oper]p8:
5570 // [...] Operator functions cannot have more or fewer parameters
5571 // than the number required for the corresponding operator, as
5572 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005573 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005574 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005575 if (Op != OO_Call &&
5576 ((NumParams == 1 && !CanBeUnaryOperator) ||
5577 (NumParams == 2 && !CanBeBinaryOperator) ||
5578 (NumParams < 1) || (NumParams > 2))) {
5579 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005580 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005581 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005582 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005583 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005584 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005585 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005586 assert(CanBeBinaryOperator &&
5587 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005588 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005589 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005590
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005591 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005592 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005593 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005594
Douglas Gregord69246b2008-11-17 16:14:12 +00005595 // Overloaded operators other than operator() cannot be variadic.
5596 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005597 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005598 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005599 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005600 }
5601
5602 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005603 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5604 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005605 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005606 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005607 }
5608
5609 // C++ [over.inc]p1:
5610 // The user-defined function called operator++ implements the
5611 // prefix and postfix ++ operator. If this function is a member
5612 // function with no parameters, or a non-member function with one
5613 // parameter of class or enumeration type, it defines the prefix
5614 // increment operator ++ for objects of that type. If the function
5615 // is a member function with one parameter (which shall be of type
5616 // int) or a non-member function with two parameters (the second
5617 // of which shall be of type int), it defines the postfix
5618 // increment operator ++ for objects of that type.
5619 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5620 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5621 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005622 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005623 ParamIsInt = BT->getKind() == BuiltinType::Int;
5624
Chris Lattner2b786902008-11-21 07:50:02 +00005625 if (!ParamIsInt)
5626 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005627 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005628 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005629 }
5630
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005631 // Notify the class if it got an assignment operator.
5632 if (Op == OO_Equal) {
5633 // Would have returned earlier otherwise.
5634 assert(isa<CXXMethodDecl>(FnDecl) &&
5635 "Overloaded = not member, but not filtered.");
5636 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5637 Method->getParent()->addedAssignmentOperator(Context, Method);
5638 }
5639
Douglas Gregord69246b2008-11-17 16:14:12 +00005640 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005641}
Chris Lattner3b024a32008-12-17 07:09:26 +00005642
Alexis Huntc88db062010-01-13 09:01:02 +00005643/// CheckLiteralOperatorDeclaration - Check whether the declaration
5644/// of this literal operator function is well-formed. If so, returns
5645/// false; otherwise, emits appropriate diagnostics and returns true.
5646bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5647 DeclContext *DC = FnDecl->getDeclContext();
5648 Decl::Kind Kind = DC->getDeclKind();
5649 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5650 Kind != Decl::LinkageSpec) {
5651 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5652 << FnDecl->getDeclName();
5653 return true;
5654 }
5655
5656 bool Valid = false;
5657
Alexis Hunt7dd26172010-04-07 23:11:06 +00005658 // template <char...> type operator "" name() is the only valid template
5659 // signature, and the only valid signature with no parameters.
5660 if (FnDecl->param_size() == 0) {
5661 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5662 // Must have only one template parameter
5663 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5664 if (Params->size() == 1) {
5665 NonTypeTemplateParmDecl *PmDecl =
5666 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005667
Alexis Hunt7dd26172010-04-07 23:11:06 +00005668 // The template parameter must be a char parameter pack.
5669 // FIXME: This test will always fail because non-type parameter packs
5670 // have not been implemented.
5671 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5672 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5673 Valid = true;
5674 }
5675 }
5676 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005677 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005678 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5679
Alexis Huntc88db062010-01-13 09:01:02 +00005680 QualType T = (*Param)->getType();
5681
Alexis Hunt079a6f72010-04-07 22:57:35 +00005682 // unsigned long long int, long double, and any character type are allowed
5683 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005684 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5685 Context.hasSameType(T, Context.LongDoubleTy) ||
5686 Context.hasSameType(T, Context.CharTy) ||
5687 Context.hasSameType(T, Context.WCharTy) ||
5688 Context.hasSameType(T, Context.Char16Ty) ||
5689 Context.hasSameType(T, Context.Char32Ty)) {
5690 if (++Param == FnDecl->param_end())
5691 Valid = true;
5692 goto FinishedParams;
5693 }
5694
Alexis Hunt079a6f72010-04-07 22:57:35 +00005695 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005696 const PointerType *PT = T->getAs<PointerType>();
5697 if (!PT)
5698 goto FinishedParams;
5699 T = PT->getPointeeType();
5700 if (!T.isConstQualified())
5701 goto FinishedParams;
5702 T = T.getUnqualifiedType();
5703
5704 // Move on to the second parameter;
5705 ++Param;
5706
5707 // If there is no second parameter, the first must be a const char *
5708 if (Param == FnDecl->param_end()) {
5709 if (Context.hasSameType(T, Context.CharTy))
5710 Valid = true;
5711 goto FinishedParams;
5712 }
5713
5714 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5715 // are allowed as the first parameter to a two-parameter function
5716 if (!(Context.hasSameType(T, Context.CharTy) ||
5717 Context.hasSameType(T, Context.WCharTy) ||
5718 Context.hasSameType(T, Context.Char16Ty) ||
5719 Context.hasSameType(T, Context.Char32Ty)))
5720 goto FinishedParams;
5721
5722 // The second and final parameter must be an std::size_t
5723 T = (*Param)->getType().getUnqualifiedType();
5724 if (Context.hasSameType(T, Context.getSizeType()) &&
5725 ++Param == FnDecl->param_end())
5726 Valid = true;
5727 }
5728
5729 // FIXME: This diagnostic is absolutely terrible.
5730FinishedParams:
5731 if (!Valid) {
5732 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5733 << FnDecl->getDeclName();
5734 return true;
5735 }
5736
5737 return false;
5738}
5739
Douglas Gregor07665a62009-01-05 19:45:36 +00005740/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5741/// linkage specification, including the language and (if present)
5742/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5743/// the location of the language string literal, which is provided
5744/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5745/// the '{' brace. Otherwise, this linkage specification does not
5746/// have any braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005747Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5748 SourceLocation ExternLoc,
5749 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00005750 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00005751 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00005752 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005753 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005754 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005755 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005756 Language = LinkageSpecDecl::lang_cxx;
5757 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00005758 Diag(LangLoc, diag::err_bad_language);
Chris Lattner83f095c2009-03-28 19:18:32 +00005759 return DeclPtrTy();
Chris Lattner438e5012008-12-17 07:13:27 +00005760 }
Mike Stump11289f42009-09-09 15:08:12 +00005761
Chris Lattner438e5012008-12-17 07:13:27 +00005762 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00005763
Douglas Gregor07665a62009-01-05 19:45:36 +00005764 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00005765 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00005766 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005767 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00005768 PushDeclContext(S, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005769 return DeclPtrTy::make(D);
Chris Lattner438e5012008-12-17 07:13:27 +00005770}
5771
Douglas Gregor07665a62009-01-05 19:45:36 +00005772/// ActOnFinishLinkageSpecification - Completely the definition of
5773/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5774/// valid, it's the position of the closing '}' brace in a linkage
5775/// specification that uses braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005776Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5777 DeclPtrTy LinkageSpec,
5778 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00005779 if (LinkageSpec)
5780 PopDeclContext();
5781 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00005782}
5783
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005784/// \brief Perform semantic analysis for the variable declaration that
5785/// occurs within a C++ catch clause, returning the newly-created
5786/// variable.
5787VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00005788 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005789 IdentifierInfo *Name,
5790 SourceLocation Loc,
5791 SourceRange Range) {
5792 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005793
5794 // Arrays and functions decay.
5795 if (ExDeclType->isArrayType())
5796 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5797 else if (ExDeclType->isFunctionType())
5798 ExDeclType = Context.getPointerType(ExDeclType);
5799
5800 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5801 // The exception-declaration shall not denote a pointer or reference to an
5802 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00005803 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00005804 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005805 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00005806 Invalid = true;
5807 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005808
Douglas Gregor104ee002010-03-08 01:47:36 +00005809 // GCC allows catching pointers and references to incomplete types
5810 // as an extension; so do we, but we warn by default.
5811
Sebastian Redl54c04d42008-12-22 19:15:10 +00005812 QualType BaseType = ExDeclType;
5813 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00005814 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00005815 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005816 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005817 BaseType = Ptr->getPointeeType();
5818 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00005819 DK = diag::ext_catch_incomplete_ptr;
5820 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00005821 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00005822 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005823 BaseType = Ref->getPointeeType();
5824 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00005825 DK = diag::ext_catch_incomplete_ref;
5826 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005827 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00005828 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00005829 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5830 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00005831 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005832
Mike Stump11289f42009-09-09 15:08:12 +00005833 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005834 RequireNonAbstractType(Loc, ExDeclType,
5835 diag::err_abstract_type_in_decl,
5836 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00005837 Invalid = true;
5838
Mike Stump11289f42009-09-09 15:08:12 +00005839 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregorc4df4072010-04-19 22:54:31 +00005840 Name, ExDeclType, TInfo, VarDecl::None,
5841 VarDecl::None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00005842 ExDecl->setExceptionVariable(true);
5843
Douglas Gregor6de584c2010-03-05 23:38:39 +00005844 if (!Invalid) {
5845 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
5846 // C++ [except.handle]p16:
5847 // The object declared in an exception-declaration or, if the
5848 // exception-declaration does not specify a name, a temporary (12.2) is
5849 // copy-initialized (8.5) from the exception object. [...]
5850 // The object is destroyed when the handler exits, after the destruction
5851 // of any automatic objects initialized within the handler.
5852 //
5853 // We just pretend to initialize the object with itself, then make sure
5854 // it can be destroyed later.
5855 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
5856 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
5857 Loc, ExDeclType, 0);
5858 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
5859 SourceLocation());
5860 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
5861 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
5862 MultiExprArg(*this, (void**)&ExDeclRef, 1));
5863 if (Result.isInvalid())
5864 Invalid = true;
5865 else
5866 FinalizeVarWithDestructor(ExDecl, RecordTy);
5867 }
5868 }
5869
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005870 if (Invalid)
5871 ExDecl->setInvalidDecl();
5872
5873 return ExDecl;
5874}
5875
5876/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
5877/// handler.
5878Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00005879 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
5880 QualType ExDeclType = TInfo->getType();
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005881
5882 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00005883 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005884 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00005885 LookupOrdinaryName,
5886 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005887 // The scope should be freshly made just for us. There is just no way
5888 // it contains any previous declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +00005889 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl54c04d42008-12-22 19:15:10 +00005890 if (PrevDecl->isTemplateParameter()) {
5891 // Maybe we will complain about the shadowed template parameter.
5892 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005893 }
5894 }
5895
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005896 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005897 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
5898 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005899 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005900 }
5901
John McCallbcd03502009-12-07 02:54:59 +00005902 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005903 D.getIdentifier(),
5904 D.getIdentifierLoc(),
5905 D.getDeclSpec().getSourceRange());
5906
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005907 if (Invalid)
5908 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00005909
Sebastian Redl54c04d42008-12-22 19:15:10 +00005910 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005911 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005912 PushOnScopeChains(ExDecl, S);
5913 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005914 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005915
Douglas Gregor758a8692009-06-17 21:51:59 +00005916 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005917 return DeclPtrTy::make(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005918}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005919
Mike Stump11289f42009-09-09 15:08:12 +00005920Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00005921 ExprArg assertexpr,
5922 ExprArg assertmessageexpr) {
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005923 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump11289f42009-09-09 15:08:12 +00005924 StringLiteral *AssertMessage =
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005925 cast<StringLiteral>((Expr *)assertmessageexpr.get());
5926
Anders Carlsson54b26982009-03-14 00:33:21 +00005927 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
5928 llvm::APSInt Value(32);
5929 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
5930 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
5931 AssertExpr->getSourceRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00005932 return DeclPtrTy();
Anders Carlsson54b26982009-03-14 00:33:21 +00005933 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005934
Anders Carlsson54b26982009-03-14 00:33:21 +00005935 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00005936 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00005937 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00005938 }
5939 }
Mike Stump11289f42009-09-09 15:08:12 +00005940
Anders Carlsson78e2bc02009-03-15 17:35:16 +00005941 assertexpr.release();
5942 assertmessageexpr.release();
Mike Stump11289f42009-09-09 15:08:12 +00005943 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005944 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00005945
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005946 CurContext->addDecl(Decl);
Chris Lattner83f095c2009-03-28 19:18:32 +00005947 return DeclPtrTy::make(Decl);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005948}
Sebastian Redlf769df52009-03-24 22:27:57 +00005949
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005950/// \brief Perform semantic analysis of the given friend type declaration.
5951///
5952/// \returns A friend declaration that.
5953FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
5954 TypeSourceInfo *TSInfo) {
5955 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
5956
5957 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00005958 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005959
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005960 if (!getLangOptions().CPlusPlus0x) {
5961 // C++03 [class.friend]p2:
5962 // An elaborated-type-specifier shall be used in a friend declaration
5963 // for a class.*
5964 //
5965 // * The class-key of the elaborated-type-specifier is required.
5966 if (!ActiveTemplateInstantiations.empty()) {
5967 // Do not complain about the form of friend template types during
5968 // template instantiation; we will already have complained when the
5969 // template was declared.
5970 } else if (!T->isElaboratedTypeSpecifier()) {
5971 // If we evaluated the type to a record type, suggest putting
5972 // a tag in front.
5973 if (const RecordType *RT = T->getAs<RecordType>()) {
5974 RecordDecl *RD = RT->getDecl();
5975
5976 std::string InsertionText = std::string(" ") + RD->getKindName();
5977
5978 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
5979 << (unsigned) RD->getTagKind()
5980 << T
5981 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
5982 InsertionText);
5983 } else {
5984 Diag(FriendLoc, diag::ext_nonclass_type_friend)
5985 << T
5986 << SourceRange(FriendLoc, TypeRange.getEnd());
5987 }
5988 } else if (T->getAs<EnumType>()) {
5989 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005990 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005991 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005992 }
5993 }
5994
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005995 // C++0x [class.friend]p3:
5996 // If the type specifier in a friend declaration designates a (possibly
5997 // cv-qualified) class type, that class is declared as a friend; otherwise,
5998 // the friend declaration is ignored.
5999
6000 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6001 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006002
6003 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6004}
6005
John McCall11083da2009-09-16 22:47:08 +00006006/// Handle a friend type declaration. This works in tandem with
6007/// ActOnTag.
6008///
6009/// Notes on friend class templates:
6010///
6011/// We generally treat friend class declarations as if they were
6012/// declaring a class. So, for example, the elaborated type specifier
6013/// in a friend declaration is required to obey the restrictions of a
6014/// class-head (i.e. no typedefs in the scope chain), template
6015/// parameters are required to match up with simple template-ids, &c.
6016/// However, unlike when declaring a template specialization, it's
6017/// okay to refer to a template specialization without an empty
6018/// template parameter declaration, e.g.
6019/// friend class A<T>::B<unsigned>;
6020/// We permit this as a special case; if there are any template
6021/// parameters present at all, require proper matching, i.e.
6022/// template <> template <class T> friend class A<int>::B;
Chris Lattner1fb66f42009-10-25 17:47:27 +00006023Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00006024 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006025 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00006026
6027 assert(DS.isFriendSpecified());
6028 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6029
John McCall11083da2009-09-16 22:47:08 +00006030 // Try to convert the decl specifier to a type. This works for
6031 // friend templates because ActOnTag never produces a ClassTemplateDecl
6032 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00006033 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00006034 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6035 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00006036 if (TheDeclarator.isInvalidType())
6037 return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00006038
John McCall11083da2009-09-16 22:47:08 +00006039 // This is definitely an error in C++98. It's probably meant to
6040 // be forbidden in C++0x, too, but the specification is just
6041 // poorly written.
6042 //
6043 // The problem is with declarations like the following:
6044 // template <T> friend A<T>::foo;
6045 // where deciding whether a class C is a friend or not now hinges
6046 // on whether there exists an instantiation of A that causes
6047 // 'foo' to equal C. There are restrictions on class-heads
6048 // (which we declare (by fiat) elaborated friend declarations to
6049 // be) that makes this tractable.
6050 //
6051 // FIXME: handle "template <> friend class A<T>;", which
6052 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00006053 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00006054 Diag(Loc, diag::err_tagless_friend_type_template)
6055 << DS.getSourceRange();
6056 return DeclPtrTy();
6057 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006058
John McCallaa74a0c2009-08-28 07:59:38 +00006059 // C++98 [class.friend]p1: A friend of a class is a function
6060 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00006061 // This is fixed in DR77, which just barely didn't make the C++03
6062 // deadline. It's also a very silly restriction that seriously
6063 // affects inner classes and which nobody else seems to implement;
6064 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00006065 //
6066 // But note that we could warn about it: it's always useless to
6067 // friend one of your own members (it's not, however, worthless to
6068 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00006069
John McCall11083da2009-09-16 22:47:08 +00006070 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006071 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00006072 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006073 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00006074 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00006075 TSI,
John McCall11083da2009-09-16 22:47:08 +00006076 DS.getFriendSpecLoc());
6077 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006078 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6079
6080 if (!D)
6081 return DeclPtrTy();
6082
John McCall11083da2009-09-16 22:47:08 +00006083 D->setAccess(AS_public);
6084 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006085
John McCall11083da2009-09-16 22:47:08 +00006086 return DeclPtrTy::make(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006087}
6088
John McCall2f212b32009-09-11 21:02:39 +00006089Sema::DeclPtrTy
6090Sema::ActOnFriendFunctionDecl(Scope *S,
6091 Declarator &D,
6092 bool IsDefinition,
6093 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006094 const DeclSpec &DS = D.getDeclSpec();
6095
6096 assert(DS.isFriendSpecified());
6097 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6098
6099 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00006100 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6101 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00006102
6103 // C++ [class.friend]p1
6104 // A friend of a class is a function or class....
6105 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00006106 // It *doesn't* see through dependent types, which is correct
6107 // according to [temp.arg.type]p3:
6108 // If a declaration acquires a function type through a
6109 // type dependent on a template-parameter and this causes
6110 // a declaration that does not use the syntactic form of a
6111 // function declarator to have a function type, the program
6112 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00006113 if (!T->isFunctionType()) {
6114 Diag(Loc, diag::err_unexpected_friend);
6115
6116 // It might be worthwhile to try to recover by creating an
6117 // appropriate declaration.
6118 return DeclPtrTy();
6119 }
6120
6121 // C++ [namespace.memdef]p3
6122 // - If a friend declaration in a non-local class first declares a
6123 // class or function, the friend class or function is a member
6124 // of the innermost enclosing namespace.
6125 // - The name of the friend is not found by simple name lookup
6126 // until a matching declaration is provided in that namespace
6127 // scope (either before or after the class declaration granting
6128 // friendship).
6129 // - If a friend function is called, its name may be found by the
6130 // name lookup that considers functions from namespaces and
6131 // classes associated with the types of the function arguments.
6132 // - When looking for a prior declaration of a class or a function
6133 // declared as a friend, scopes outside the innermost enclosing
6134 // namespace scope are not considered.
6135
John McCallaa74a0c2009-08-28 07:59:38 +00006136 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
6137 DeclarationName Name = GetNameForDeclarator(D);
John McCall07e91c02009-08-06 02:15:43 +00006138 assert(Name);
6139
John McCall07e91c02009-08-06 02:15:43 +00006140 // The context we found the declaration in, or in which we should
6141 // create the declaration.
6142 DeclContext *DC;
6143
6144 // FIXME: handle local classes
6145
6146 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall1f82f242009-11-18 22:49:29 +00006147 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
6148 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00006149 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6150 DC = computeDeclContext(ScopeQual);
6151
6152 // FIXME: handle dependent contexts
6153 if (!DC) return DeclPtrTy();
John McCall0b66eb32010-05-01 00:40:08 +00006154 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00006155
John McCall1f82f242009-11-18 22:49:29 +00006156 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006157
John McCall45831862010-05-28 01:41:47 +00006158 // Ignore things found implicitly in the wrong scope.
John McCall07e91c02009-08-06 02:15:43 +00006159 // TODO: better diagnostics for this case. Suggesting the right
6160 // qualified scope would be nice...
John McCall45831862010-05-28 01:41:47 +00006161 LookupResult::Filter F = Previous.makeFilter();
6162 while (F.hasNext()) {
6163 NamedDecl *D = F.next();
6164 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6165 F.erase();
6166 }
6167 F.done();
6168
6169 if (Previous.empty()) {
John McCallaa74a0c2009-08-28 07:59:38 +00006170 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00006171 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6172 return DeclPtrTy();
6173 }
6174
6175 // C++ [class.friend]p1: A friend of a class is a function or
6176 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006177 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00006178 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6179
John McCall07e91c02009-08-06 02:15:43 +00006180 // Otherwise walk out to the nearest namespace scope looking for matches.
6181 } else {
6182 // TODO: handle local class contexts.
6183
6184 DC = CurContext;
6185 while (true) {
6186 // Skip class contexts. If someone can cite chapter and verse
6187 // for this behavior, that would be nice --- it's what GCC and
6188 // EDG do, and it seems like a reasonable intent, but the spec
6189 // really only says that checks for unqualified existing
6190 // declarations should stop at the nearest enclosing namespace,
6191 // not that they should only consider the nearest enclosing
6192 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006193 while (DC->isRecord())
6194 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00006195
John McCall1f82f242009-11-18 22:49:29 +00006196 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006197
6198 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00006199 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00006200 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006201
John McCall07e91c02009-08-06 02:15:43 +00006202 if (DC->isFileContext()) break;
6203 DC = DC->getParent();
6204 }
6205
6206 // C++ [class.friend]p1: A friend of a class is a function or
6207 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00006208 // C++0x changes this for both friend types and functions.
6209 // Most C++ 98 compilers do seem to give an error here, so
6210 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00006211 if (!Previous.empty() && DC->Equals(CurContext)
6212 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00006213 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6214 }
6215
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006216 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00006217 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00006218 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6219 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6220 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00006221 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00006222 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6223 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall07e91c02009-08-06 02:15:43 +00006224 return DeclPtrTy();
6225 }
John McCall07e91c02009-08-06 02:15:43 +00006226 }
6227
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006228 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00006229 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006230 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00006231 IsDefinition,
6232 Redeclaration);
John McCallaa74a0c2009-08-28 07:59:38 +00006233 if (!ND) return DeclPtrTy();
John McCall759e32b2009-08-31 22:39:49 +00006234
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006235 assert(ND->getDeclContext() == DC);
6236 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00006237
John McCall759e32b2009-08-31 22:39:49 +00006238 // Add the function declaration to the appropriate lookup tables,
6239 // adjusting the redeclarations list as necessary. We don't
6240 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00006241 //
John McCall759e32b2009-08-31 22:39:49 +00006242 // Also update the scope-based lookup if the target context's
6243 // lookup context is in lexical scope.
6244 if (!CurContext->isDependentContext()) {
6245 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006246 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006247 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006248 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006249 }
John McCallaa74a0c2009-08-28 07:59:38 +00006250
6251 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006252 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00006253 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00006254 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00006255 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00006256
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006257 return DeclPtrTy::make(ND);
Anders Carlsson38811702009-05-11 22:55:49 +00006258}
6259
Chris Lattner83f095c2009-03-28 19:18:32 +00006260void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00006261 AdjustDeclIfTemplate(dcl);
Mike Stump11289f42009-09-09 15:08:12 +00006262
Chris Lattner83f095c2009-03-28 19:18:32 +00006263 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redlf769df52009-03-24 22:27:57 +00006264 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6265 if (!Fn) {
6266 Diag(DelLoc, diag::err_deleted_non_function);
6267 return;
6268 }
6269 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6270 Diag(DelLoc, diag::err_deleted_decl_not_first);
6271 Diag(Prev->getLocation(), diag::note_previous_declaration);
6272 // If the declaration wasn't the first, we delete the function anyway for
6273 // recovery.
6274 }
6275 Fn->setDeleted();
6276}
Sebastian Redl4c018662009-04-27 21:33:24 +00006277
6278static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6279 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6280 ++CI) {
6281 Stmt *SubStmt = *CI;
6282 if (!SubStmt)
6283 continue;
6284 if (isa<ReturnStmt>(SubStmt))
6285 Self.Diag(SubStmt->getSourceRange().getBegin(),
6286 diag::err_return_in_constructor_handler);
6287 if (!isa<Expr>(SubStmt))
6288 SearchForReturnInStmt(Self, SubStmt);
6289 }
6290}
6291
6292void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6293 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6294 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6295 SearchForReturnInStmt(*this, Handler);
6296 }
6297}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006298
Mike Stump11289f42009-09-09 15:08:12 +00006299bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006300 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00006301 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6302 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006303
Chandler Carruth284bb2e2010-02-15 11:53:20 +00006304 if (Context.hasSameType(NewTy, OldTy) ||
6305 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006306 return false;
Mike Stump11289f42009-09-09 15:08:12 +00006307
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006308 // Check if the return types are covariant
6309 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00006310
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006311 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006312 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6313 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006314 NewClassTy = NewPT->getPointeeType();
6315 OldClassTy = OldPT->getPointeeType();
6316 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006317 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6318 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6319 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6320 NewClassTy = NewRT->getPointeeType();
6321 OldClassTy = OldRT->getPointeeType();
6322 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006323 }
6324 }
Mike Stump11289f42009-09-09 15:08:12 +00006325
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006326 // The return types aren't either both pointers or references to a class type.
6327 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00006328 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006329 diag::err_different_return_type_for_overriding_virtual_function)
6330 << New->getDeclName() << NewTy << OldTy;
6331 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00006332
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006333 return true;
6334 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006335
Anders Carlssone60365b2009-12-31 18:34:24 +00006336 // C++ [class.virtual]p6:
6337 // If the return type of D::f differs from the return type of B::f, the
6338 // class type in the return type of D::f shall be complete at the point of
6339 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006340 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6341 if (!RT->isBeingDefined() &&
6342 RequireCompleteType(New->getLocation(), NewClassTy,
6343 PDiag(diag::err_covariant_return_incomplete)
6344 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00006345 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006346 }
Anders Carlssone60365b2009-12-31 18:34:24 +00006347
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00006348 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006349 // Check if the new class derives from the old class.
6350 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6351 Diag(New->getLocation(),
6352 diag::err_covariant_return_not_derived)
6353 << New->getDeclName() << NewTy << OldTy;
6354 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6355 return true;
6356 }
Mike Stump11289f42009-09-09 15:08:12 +00006357
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006358 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00006359 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00006360 diag::err_covariant_return_inaccessible_base,
6361 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6362 // FIXME: Should this point to the return type?
6363 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006364 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6365 return true;
6366 }
6367 }
Mike Stump11289f42009-09-09 15:08:12 +00006368
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006369 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006370 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006371 Diag(New->getLocation(),
6372 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006373 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006374 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6375 return true;
6376 };
Mike Stump11289f42009-09-09 15:08:12 +00006377
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006378
6379 // The new class type must have the same or less qualifiers as the old type.
6380 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6381 Diag(New->getLocation(),
6382 diag::err_covariant_return_type_class_type_more_qualified)
6383 << New->getDeclName() << NewTy << OldTy;
6384 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6385 return true;
6386 };
Mike Stump11289f42009-09-09 15:08:12 +00006387
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006388 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006389}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006390
Alexis Hunt96d5c762009-11-21 08:43:09 +00006391bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6392 const CXXMethodDecl *Old)
6393{
6394 if (Old->hasAttr<FinalAttr>()) {
6395 Diag(New->getLocation(), diag::err_final_function_overridden)
6396 << New->getDeclName();
6397 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6398 return true;
6399 }
6400
6401 return false;
6402}
6403
Douglas Gregor21920e372009-12-01 17:24:26 +00006404/// \brief Mark the given method pure.
6405///
6406/// \param Method the method to be marked pure.
6407///
6408/// \param InitRange the source range that covers the "0" initializer.
6409bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6410 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6411 Method->setPure();
6412
6413 // A class is abstract if at least one function is pure virtual.
6414 Method->getParent()->setAbstract(true);
6415 return false;
6416 }
6417
6418 if (!Method->isInvalidDecl())
6419 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6420 << Method->getDeclName() << InitRange;
6421 return true;
6422}
6423
John McCall1f4ee7b2009-12-19 09:28:58 +00006424/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6425/// an initializer for the out-of-line declaration 'Dcl'. The scope
6426/// is a fresh scope pushed for just this purpose.
6427///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006428/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6429/// static data member of class X, names should be looked up in the scope of
6430/// class X.
6431void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006432 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006433 Decl *D = Dcl.getAs<Decl>();
6434 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006435
John McCall1f4ee7b2009-12-19 09:28:58 +00006436 // We should only get called for declarations with scope specifiers, like:
6437 // int foo::bar;
6438 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006439 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006440}
6441
6442/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall1f4ee7b2009-12-19 09:28:58 +00006443/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006444void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006445 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006446 Decl *D = Dcl.getAs<Decl>();
6447 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006448
John McCall1f4ee7b2009-12-19 09:28:58 +00006449 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006450 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006451}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006452
6453/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6454/// C++ if/switch/while/for statement.
6455/// e.g: "if (int x = f()) {...}"
6456Action::DeclResult
6457Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6458 // C++ 6.4p2:
6459 // The declarator shall not specify a function or an array.
6460 // The type-specifier-seq shall not contain typedef and shall not declare a
6461 // new class or enumeration.
6462 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6463 "Parser allowed 'typedef' as storage class of condition decl.");
6464
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006465 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00006466 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6467 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006468
6469 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6470 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6471 // would be created and CXXConditionDeclExpr wants a VarDecl.
6472 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6473 << D.getSourceRange();
6474 return DeclResult();
6475 } else if (OwnedTag && OwnedTag->isDefinition()) {
6476 // The type-specifier-seq shall not declare a new class or enumeration.
6477 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6478 }
6479
6480 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6481 if (!Dcl)
6482 return DeclResult();
6483
6484 VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>());
6485 VD->setDeclaredInCondition(true);
6486 return Dcl;
6487}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006488
Douglas Gregor88d292c2010-05-13 16:44:06 +00006489void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6490 bool DefinitionRequired) {
6491 // Ignore any vtable uses in unevaluated operands or for classes that do
6492 // not have a vtable.
6493 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6494 CurContext->isDependentContext() ||
6495 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006496 return;
6497
Douglas Gregor88d292c2010-05-13 16:44:06 +00006498 // Try to insert this class into the map.
6499 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6500 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6501 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6502 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00006503 // If we already had an entry, check to see if we are promoting this vtable
6504 // to required a definition. If so, we need to reappend to the VTableUses
6505 // list, since we may have already processed the first entry.
6506 if (DefinitionRequired && !Pos.first->second) {
6507 Pos.first->second = true;
6508 } else {
6509 // Otherwise, we can early exit.
6510 return;
6511 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006512 }
6513
6514 // Local classes need to have their virtual members marked
6515 // immediately. For all other classes, we mark their virtual members
6516 // at the end of the translation unit.
6517 if (Class->isLocalClass())
6518 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006519 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006520 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006521}
6522
Douglas Gregor88d292c2010-05-13 16:44:06 +00006523bool Sema::DefineUsedVTables() {
6524 // If any dynamic classes have their key function defined within
6525 // this translation unit, then those vtables are considered "used" and must
6526 // be emitted.
6527 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6528 if (const CXXMethodDecl *KeyFunction
6529 = Context.getKeyFunction(DynamicClasses[I])) {
6530 const FunctionDecl *Definition = 0;
Douglas Gregor83de20f2010-05-14 04:08:48 +00006531 if (KeyFunction->getBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006532 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6533 }
6534 }
6535
6536 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006537 return false;
6538
Douglas Gregor88d292c2010-05-13 16:44:06 +00006539 // Note: The VTableUses vector could grow as a result of marking
6540 // the members of a class as "used", so we check the size each
6541 // time through the loop and prefer indices (with are stable) to
6542 // iterators (which are not).
6543 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00006544 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006545 if (!Class)
6546 continue;
6547
6548 SourceLocation Loc = VTableUses[I].second;
6549
6550 // If this class has a key function, but that key function is
6551 // defined in another translation unit, we don't need to emit the
6552 // vtable even though we're using it.
6553 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
6554 if (KeyFunction && !KeyFunction->getBody()) {
6555 switch (KeyFunction->getTemplateSpecializationKind()) {
6556 case TSK_Undeclared:
6557 case TSK_ExplicitSpecialization:
6558 case TSK_ExplicitInstantiationDeclaration:
6559 // The key function is in another translation unit.
6560 continue;
6561
6562 case TSK_ExplicitInstantiationDefinition:
6563 case TSK_ImplicitInstantiation:
6564 // We will be instantiating the key function.
6565 break;
6566 }
6567 } else if (!KeyFunction) {
6568 // If we have a class with no key function that is the subject
6569 // of an explicit instantiation declaration, suppress the
6570 // vtable; it will live with the explicit instantiation
6571 // definition.
6572 bool IsExplicitInstantiationDeclaration
6573 = Class->getTemplateSpecializationKind()
6574 == TSK_ExplicitInstantiationDeclaration;
6575 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6576 REnd = Class->redecls_end();
6577 R != REnd; ++R) {
6578 TemplateSpecializationKind TSK
6579 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6580 if (TSK == TSK_ExplicitInstantiationDeclaration)
6581 IsExplicitInstantiationDeclaration = true;
6582 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6583 IsExplicitInstantiationDeclaration = false;
6584 break;
6585 }
6586 }
6587
6588 if (IsExplicitInstantiationDeclaration)
6589 continue;
6590 }
6591
6592 // Mark all of the virtual members of this class as referenced, so
6593 // that we can build a vtable. Then, tell the AST consumer that a
6594 // vtable for this class is required.
6595 MarkVirtualMembersReferenced(Loc, Class);
6596 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6597 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6598
6599 // Optionally warn if we're emitting a weak vtable.
6600 if (Class->getLinkage() == ExternalLinkage &&
6601 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
6602 if (!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
6603 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6604 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006605 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006606 VTableUses.clear();
6607
Anders Carlsson82fccd02009-12-07 08:24:59 +00006608 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006609}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006610
Rafael Espindola5b334082010-03-26 00:36:59 +00006611void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6612 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006613 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6614 e = RD->method_end(); i != e; ++i) {
6615 CXXMethodDecl *MD = *i;
6616
6617 // C++ [basic.def.odr]p2:
6618 // [...] A virtual member function is used if it is not pure. [...]
6619 if (MD->isVirtual() && !MD->isPure())
6620 MarkDeclarationReferenced(Loc, MD);
6621 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006622
6623 // Only classes that have virtual bases need a VTT.
6624 if (RD->getNumVBases() == 0)
6625 return;
6626
6627 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6628 e = RD->bases_end(); i != e; ++i) {
6629 const CXXRecordDecl *Base =
6630 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6631 if (i->isVirtual())
6632 continue;
6633 if (Base->getNumVBases() == 0)
6634 continue;
6635 MarkVirtualMembersReferenced(Loc, Base);
6636 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006637}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006638
6639/// SetIvarInitializers - This routine builds initialization ASTs for the
6640/// Objective-C implementation whose ivars need be initialized.
6641void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6642 if (!getLangOptions().CPlusPlus)
6643 return;
6644 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6645 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6646 CollectIvarsToConstructOrDestruct(OID, ivars);
6647 if (ivars.empty())
6648 return;
6649 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6650 for (unsigned i = 0; i < ivars.size(); i++) {
6651 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00006652 if (Field->isInvalidDecl())
6653 continue;
6654
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006655 CXXBaseOrMemberInitializer *Member;
6656 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6657 InitializationKind InitKind =
6658 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6659
6660 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6661 Sema::OwningExprResult MemberInit =
6662 InitSeq.Perform(*this, InitEntity, InitKind,
6663 Sema::MultiExprArg(*this, 0, 0));
6664 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6665 // Note, MemberInit could actually come back empty if no initialization
6666 // is required (e.g., because it would call a trivial default constructor)
6667 if (!MemberInit.get() || MemberInit.isInvalid())
6668 continue;
6669
6670 Member =
6671 new (Context) CXXBaseOrMemberInitializer(Context,
6672 Field, SourceLocation(),
6673 SourceLocation(),
6674 MemberInit.takeAs<Expr>(),
6675 SourceLocation());
6676 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00006677
6678 // Be sure that the destructor is accessible and is marked as referenced.
6679 if (const RecordType *RecordTy
6680 = Context.getBaseElementType(Field->getType())
6681 ->getAs<RecordType>()) {
6682 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00006683 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00006684 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6685 CheckDestructorAccess(Field->getLocation(), Destructor,
6686 PDiag(diag::err_access_dtor_ivar)
6687 << Context.getBaseElementType(Field->getType()));
6688 }
6689 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006690 }
6691 ObjCImplementation->setIvarInitializers(Context,
6692 AllToInit.data(), AllToInit.size());
6693 }
6694}