blob: 05ce9e35e8ff1e036b230949b70660366a4034c2 [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
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000874/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
875/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
876/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000877/// any.
Chris Lattner83f095c2009-03-28 19:18:32 +0000878Sema::DeclPtrTy
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000879Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000880 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000881 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
882 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000883 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor92751d42008-11-17 22:58:34 +0000884 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000885 Expr *BitWidth = static_cast<Expr*>(BW);
886 Expr *Init = static_cast<Expr*>(InitExpr);
887 SourceLocation Loc = D.getIdentifierLoc();
888
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000889 bool isFunc = D.isFunctionDeclarator();
890
John McCall07e91c02009-08-06 02:15:43 +0000891 assert(!DS.isFriendSpecified());
892
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000893 // C++ 9.2p6: A member shall not be declared to have automatic storage
894 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000895 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
896 // data members and cannot be applied to names declared const or static,
897 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000898 switch (DS.getStorageClassSpec()) {
899 case DeclSpec::SCS_unspecified:
900 case DeclSpec::SCS_typedef:
901 case DeclSpec::SCS_static:
902 // FALL THROUGH.
903 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000904 case DeclSpec::SCS_mutable:
905 if (isFunc) {
906 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000907 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000908 else
Chris Lattner3b054132008-11-19 05:08:23 +0000909 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000910
Sebastian Redl8071edb2008-11-17 23:24:37 +0000911 // FIXME: It would be nicer if the keyword was ignored only for this
912 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000913 D.getMutableDeclSpec().ClearStorageClassSpecs();
914 } else {
915 QualType T = GetTypeForDeclarator(D, S);
916 diag::kind err = static_cast<diag::kind>(0);
917 if (T->isReferenceType())
918 err = diag::err_mutable_reference;
919 else if (T.isConstQualified())
920 err = diag::err_mutable_const;
921 if (err != 0) {
922 if (DS.getStorageClassSpecLoc().isValid())
923 Diag(DS.getStorageClassSpecLoc(), err);
924 else
925 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redl8071edb2008-11-17 23:24:37 +0000926 // FIXME: It would be nicer if the keyword was ignored only for this
927 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000928 D.getMutableDeclSpec().ClearStorageClassSpecs();
929 }
930 }
931 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000932 default:
933 if (DS.getStorageClassSpecLoc().isValid())
934 Diag(DS.getStorageClassSpecLoc(),
935 diag::err_storageclass_invalid_for_member);
936 else
937 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
938 D.getMutableDeclSpec().ClearStorageClassSpecs();
939 }
940
Argyrios Kyrtzidis2e3e7562008-10-15 20:23:22 +0000941 if (!isFunc &&
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000942 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidis2e3e7562008-10-15 20:23:22 +0000943 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000944 // Check also for this case:
945 //
946 // typedef int f();
947 // f a;
948 //
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000949 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000950 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000951 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000952
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000953 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
954 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000955 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000956
957 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000958 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000959 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000960 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
961 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000962 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000963 } else {
Sebastian Redld6f78502009-11-24 23:38:44 +0000964 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor3447e762009-08-20 22:52:58 +0000965 .getAs<Decl>();
Chris Lattner97e277e2009-03-05 23:03:49 +0000966 if (!Member) {
967 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000968 return DeclPtrTy();
Chris Lattner97e277e2009-03-05 23:03:49 +0000969 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000970
971 // Non-instance-fields can't have a bitfield.
972 if (BitWidth) {
973 if (Member->isInvalidDecl()) {
974 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000975 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000976 // C++ 9.6p3: A bit-field shall not be a static member.
977 // "static member 'A' cannot be a bit-field"
978 Diag(Loc, diag::err_static_not_bitfield)
979 << Name << BitWidth->getSourceRange();
980 } else if (isa<TypedefDecl>(Member)) {
981 // "typedef member 'x' cannot be a bit-field"
982 Diag(Loc, diag::err_typedef_not_bitfield)
983 << Name << BitWidth->getSourceRange();
984 } else {
985 // A function typedef ("typedef int f(); f a;").
986 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
987 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000988 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000989 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000990 }
Mike Stump11289f42009-09-09 15:08:12 +0000991
Chris Lattnerd26760a2009-03-05 23:01:03 +0000992 DeleteExpr(BitWidth);
993 BitWidth = 0;
994 Member->setInvalidDecl();
995 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000996
997 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000998
Douglas Gregor3447e762009-08-20 22:52:58 +0000999 // If we have declared a member function template, set the access of the
1000 // templated declaration as well.
1001 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1002 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +00001003 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001004
Douglas Gregor92751d42008-11-17 22:58:34 +00001005 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001006
Douglas Gregor0c880302009-03-11 23:00:04 +00001007 if (Init)
Chris Lattner83f095c2009-03-28 19:18:32 +00001008 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001009 if (Deleted) // FIXME: Source location is not very good.
1010 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001011
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001012 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +00001013 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001014 return DeclPtrTy();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001015 }
Chris Lattner83f095c2009-03-28 19:18:32 +00001016 return DeclPtrTy::make(Member);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001017}
1018
Douglas Gregor15e77a22009-12-31 09:10:24 +00001019/// \brief Find the direct and/or virtual base specifiers that
1020/// correspond to the given base type, for use in base initialization
1021/// within a constructor.
1022static bool FindBaseInitializer(Sema &SemaRef,
1023 CXXRecordDecl *ClassDecl,
1024 QualType BaseType,
1025 const CXXBaseSpecifier *&DirectBaseSpec,
1026 const CXXBaseSpecifier *&VirtualBaseSpec) {
1027 // First, check for a direct base class.
1028 DirectBaseSpec = 0;
1029 for (CXXRecordDecl::base_class_const_iterator Base
1030 = ClassDecl->bases_begin();
1031 Base != ClassDecl->bases_end(); ++Base) {
1032 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1033 // We found a direct base of this type. That's what we're
1034 // initializing.
1035 DirectBaseSpec = &*Base;
1036 break;
1037 }
1038 }
1039
1040 // Check for a virtual base class.
1041 // FIXME: We might be able to short-circuit this if we know in advance that
1042 // there are no virtual bases.
1043 VirtualBaseSpec = 0;
1044 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1045 // We haven't found a base yet; search the class hierarchy for a
1046 // virtual base class.
1047 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1048 /*DetectVirtual=*/false);
1049 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1050 BaseType, Paths)) {
1051 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1052 Path != Paths.end(); ++Path) {
1053 if (Path->back().Base->isVirtual()) {
1054 VirtualBaseSpec = Path->back().Base;
1055 break;
1056 }
1057 }
1058 }
1059 }
1060
1061 return DirectBaseSpec || VirtualBaseSpec;
1062}
1063
Douglas Gregore8381c02008-11-05 04:29:56 +00001064/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +00001065Sema::MemInitResult
Chris Lattner83f095c2009-03-28 19:18:32 +00001066Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001067 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001068 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001069 IdentifierInfo *MemberOrBase,
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001070 TypeTy *TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001071 SourceLocation IdLoc,
1072 SourceLocation LParenLoc,
1073 ExprTy **Args, unsigned NumArgs,
1074 SourceLocation *CommaLocs,
1075 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001076 if (!ConstructorD)
1077 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001078
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001079 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001080
1081 CXXConstructorDecl *Constructor
Chris Lattner83f095c2009-03-28 19:18:32 +00001082 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregore8381c02008-11-05 04:29:56 +00001083 if (!Constructor) {
1084 // The user wrote a constructor initializer on a function that is
1085 // not a C++ constructor. Ignore the error for now, because we may
1086 // have more member initializers coming; we'll diagnose it just
1087 // once in ActOnMemInitializers.
1088 return true;
1089 }
1090
1091 CXXRecordDecl *ClassDecl = Constructor->getParent();
1092
1093 // C++ [class.base.init]p2:
1094 // Names in a mem-initializer-id are looked up in the scope of the
1095 // constructor’s class and, if not found in that scope, are looked
1096 // up in the scope containing the constructor’s
1097 // definition. [Note: if the constructor’s class contains a member
1098 // with the same name as a direct or virtual base class of the
1099 // class, a mem-initializer-id naming the member or base class and
1100 // composed of a single identifier refers to the class member. A
1101 // mem-initializer-id for the hidden base class may be specified
1102 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001103 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001104 // Look for a member, first.
1105 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001106 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001107 = ClassDecl->lookup(MemberOrBase);
1108 if (Result.first != Result.second)
1109 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001110
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001111 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001112
Eli Friedman8e1433b2009-07-29 19:44:27 +00001113 if (Member)
1114 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001115 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001116 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001117 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001118 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001119 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001120
1121 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001122 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001123 } else {
1124 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1125 LookupParsedName(R, S, &SS);
1126
1127 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1128 if (!TyD) {
1129 if (R.isAmbiguous()) return true;
1130
John McCallda6841b2010-04-09 19:01:14 +00001131 // We don't want access-control diagnostics here.
1132 R.suppressDiagnostics();
1133
Douglas Gregora3b624a2010-01-19 06:46:48 +00001134 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1135 bool NotUnknownSpecialization = false;
1136 DeclContext *DC = computeDeclContext(SS, false);
1137 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1138 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1139
1140 if (!NotUnknownSpecialization) {
1141 // When the scope specifier can refer to a member of an unknown
1142 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001143 BaseType = CheckTypenameType(ETK_None,
1144 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00001145 *MemberOrBase, SourceLocation(),
1146 SS.getRange(), IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001147 if (BaseType.isNull())
1148 return true;
1149
Douglas Gregora3b624a2010-01-19 06:46:48 +00001150 R.clear();
1151 }
1152 }
1153
Douglas Gregor15e77a22009-12-31 09:10:24 +00001154 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001155 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001156 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1157 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001158 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1159 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1160 // We have found a non-static data member with a similar
1161 // name to what was typed; complain and initialize that
1162 // member.
1163 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1164 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001165 << FixItHint::CreateReplacement(R.getNameLoc(),
1166 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001167 Diag(Member->getLocation(), diag::note_previous_decl)
1168 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001169
1170 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1171 LParenLoc, RParenLoc);
1172 }
1173 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1174 const CXXBaseSpecifier *DirectBaseSpec;
1175 const CXXBaseSpecifier *VirtualBaseSpec;
1176 if (FindBaseInitializer(*this, ClassDecl,
1177 Context.getTypeDeclType(Type),
1178 DirectBaseSpec, VirtualBaseSpec)) {
1179 // We have found a direct or virtual base class with a
1180 // similar name to what was typed; complain and initialize
1181 // that base class.
1182 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1183 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001184 << FixItHint::CreateReplacement(R.getNameLoc(),
1185 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001186
1187 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1188 : VirtualBaseSpec;
1189 Diag(BaseSpec->getSourceRange().getBegin(),
1190 diag::note_base_class_specified_here)
1191 << BaseSpec->getType()
1192 << BaseSpec->getSourceRange();
1193
Douglas Gregor15e77a22009-12-31 09:10:24 +00001194 TyD = Type;
1195 }
1196 }
1197 }
1198
Douglas Gregora3b624a2010-01-19 06:46:48 +00001199 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001200 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1201 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1202 return true;
1203 }
John McCallb5a0d312009-12-21 10:41:20 +00001204 }
1205
Douglas Gregora3b624a2010-01-19 06:46:48 +00001206 if (BaseType.isNull()) {
1207 BaseType = Context.getTypeDeclType(TyD);
1208 if (SS.isSet()) {
1209 NestedNameSpecifier *Qualifier =
1210 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001211
Douglas Gregora3b624a2010-01-19 06:46:48 +00001212 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001213 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001214 }
John McCallb5a0d312009-12-21 10:41:20 +00001215 }
1216 }
Mike Stump11289f42009-09-09 15:08:12 +00001217
John McCallbcd03502009-12-07 02:54:59 +00001218 if (!TInfo)
1219 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001220
John McCallbcd03502009-12-07 02:54:59 +00001221 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001222 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001223}
1224
John McCalle22a04a2009-11-04 23:02:40 +00001225/// Checks an initializer expression for use of uninitialized fields, such as
1226/// containing the field that is being initialized. Returns true if there is an
1227/// uninitialized field was used an updates the SourceLocation parameter; false
1228/// otherwise.
1229static bool InitExprContainsUninitializedFields(const Stmt* S,
1230 const FieldDecl* LhsField,
1231 SourceLocation* L) {
1232 const MemberExpr* ME = dyn_cast<MemberExpr>(S);
1233 if (ME) {
1234 const NamedDecl* RhsField = ME->getMemberDecl();
1235 if (RhsField == LhsField) {
1236 // Initializing a field with itself. Throw a warning.
1237 // But wait; there are exceptions!
1238 // Exception #1: The field may not belong to this record.
1239 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
1240 const Expr* base = ME->getBase();
1241 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1242 // Even though the field matches, it does not belong to this record.
1243 return false;
1244 }
1245 // None of the exceptions triggered; return true to indicate an
1246 // uninitialized field was used.
1247 *L = ME->getMemberLoc();
1248 return true;
1249 }
1250 }
1251 bool found = false;
1252 for (Stmt::const_child_iterator it = S->child_begin();
1253 it != S->child_end() && found == false;
1254 ++it) {
1255 if (isa<CallExpr>(S)) {
1256 // Do not descend into function calls or constructors, as the use
1257 // of an uninitialized field may be valid. One would have to inspect
1258 // the contents of the function/ctor to determine if it is safe or not.
1259 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1260 // may be safe, depending on what the function/ctor does.
1261 continue;
1262 }
1263 found = InitExprContainsUninitializedFields(*it, LhsField, L);
1264 }
1265 return found;
1266}
1267
Eli Friedman8e1433b2009-07-29 19:44:27 +00001268Sema::MemInitResult
1269Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1270 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001271 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001272 SourceLocation RParenLoc) {
John McCalle22a04a2009-11-04 23:02:40 +00001273 // Diagnose value-uses of fields to initialize themselves, e.g.
1274 // foo(foo)
1275 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001276 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001277 for (unsigned i = 0; i < NumArgs; ++i) {
1278 SourceLocation L;
1279 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1280 // FIXME: Return true in the case when other fields are used before being
1281 // uninitialized. For example, let this field be the i'th field. When
1282 // initializing the i'th field, throw a warning if any of the >= i'th
1283 // fields are used, as they are not yet initialized.
1284 // Right now we are only handling the case where the i'th field uses
1285 // itself in its initializer.
1286 Diag(L, diag::warn_field_is_uninit);
1287 }
1288 }
1289
Eli Friedman8e1433b2009-07-29 19:44:27 +00001290 bool HasDependentArg = false;
1291 for (unsigned i = 0; i < NumArgs; i++)
1292 HasDependentArg |= Args[i]->isTypeDependent();
1293
Eli Friedman8e1433b2009-07-29 19:44:27 +00001294 QualType FieldType = Member->getType();
1295 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1296 FieldType = Array->getElementType();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001297 if (FieldType->isDependentType() || HasDependentArg) {
1298 // Can't check initialization for a member of dependent type or when
1299 // any of the arguments are type-dependent expressions.
1300 OwningExprResult Init
1301 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1302 RParenLoc));
1303
1304 // Erase any temporaries within this evaluation context; we're not
1305 // going to track them in the AST, since we'll be rebuilding the
1306 // ASTs during template instantiation.
1307 ExprTemporaries.erase(
1308 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1309 ExprTemporaries.end());
1310
1311 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1312 LParenLoc,
1313 Init.takeAs<Expr>(),
1314 RParenLoc);
1315
Douglas Gregore8381c02008-11-05 04:29:56 +00001316 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001317
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001318 if (Member->isInvalidDecl())
1319 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001320
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001321 // Initialize the member.
1322 InitializedEntity MemberEntity =
1323 InitializedEntity::InitializeMember(Member, 0);
1324 InitializationKind Kind =
1325 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1326
1327 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1328
1329 OwningExprResult MemberInit =
1330 InitSeq.Perform(*this, MemberEntity, Kind,
1331 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1332 if (MemberInit.isInvalid())
1333 return true;
1334
1335 // C++0x [class.base.init]p7:
1336 // The initialization of each base and member constitutes a
1337 // full-expression.
1338 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1339 if (MemberInit.isInvalid())
1340 return true;
1341
1342 // If we are in a dependent context, template instantiation will
1343 // perform this type-checking again. Just save the arguments that we
1344 // received in a ParenListExpr.
1345 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1346 // of the information that we have about the member
1347 // initializer. However, deconstructing the ASTs is a dicey process,
1348 // and this approach is far more likely to get the corner cases right.
1349 if (CurContext->isDependentContext()) {
1350 // Bump the reference count of all of the arguments.
1351 for (unsigned I = 0; I != NumArgs; ++I)
1352 Args[I]->Retain();
1353
1354 OwningExprResult Init
1355 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1356 RParenLoc));
1357 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1358 LParenLoc,
1359 Init.takeAs<Expr>(),
1360 RParenLoc);
1361 }
1362
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001363 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001364 LParenLoc,
1365 MemberInit.takeAs<Expr>(),
1366 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001367}
1368
1369Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001370Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001371 Expr **Args, unsigned NumArgs,
1372 SourceLocation LParenLoc, SourceLocation RParenLoc,
1373 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001374 bool HasDependentArg = false;
1375 for (unsigned i = 0; i < NumArgs; i++)
1376 HasDependentArg |= Args[i]->isTypeDependent();
1377
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001378 SourceLocation BaseLoc = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001379 if (BaseType->isDependentType() || HasDependentArg) {
1380 // Can't check initialization for a base of dependent type or when
1381 // any of the arguments are type-dependent expressions.
1382 OwningExprResult BaseInit
1383 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1384 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001385
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001386 // Erase any temporaries within this evaluation context; we're not
1387 // going to track them in the AST, since we'll be rebuilding the
1388 // ASTs during template instantiation.
1389 ExprTemporaries.erase(
1390 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1391 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001392
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001393 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001394 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001395 LParenLoc,
1396 BaseInit.takeAs<Expr>(),
1397 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001398 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001399
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001400 if (!BaseType->isRecordType())
1401 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001402 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001403
1404 // C++ [class.base.init]p2:
1405 // [...] Unless the mem-initializer-id names a nonstatic data
1406 // member of the constructor’s class or a direct or virtual base
1407 // of that class, the mem-initializer is ill-formed. A
1408 // mem-initializer-list can initialize a base class using any
1409 // name that denotes that base class type.
1410
1411 // Check for direct and virtual base classes.
1412 const CXXBaseSpecifier *DirectBaseSpec = 0;
1413 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1414 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1415 VirtualBaseSpec);
1416
1417 // C++ [base.class.init]p2:
1418 // If a mem-initializer-id is ambiguous because it designates both
1419 // a direct non-virtual base class and an inherited virtual base
1420 // class, the mem-initializer is ill-formed.
1421 if (DirectBaseSpec && VirtualBaseSpec)
1422 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001423 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001424 // C++ [base.class.init]p2:
1425 // Unless the mem-initializer-id names a nonstatic data membeer of the
1426 // constructor's class ot a direst or virtual base of that class, the
1427 // mem-initializer is ill-formed.
1428 if (!DirectBaseSpec && !VirtualBaseSpec)
1429 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
John McCall1e67dd62010-04-27 01:43:38 +00001430 << BaseType << Context.getTypeDeclType(ClassDecl)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001431 << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001432
1433 CXXBaseSpecifier *BaseSpec
1434 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1435 if (!BaseSpec)
1436 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1437
1438 // Initialize the base.
1439 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001440 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001441 InitializationKind Kind =
1442 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1443
1444 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1445
1446 OwningExprResult BaseInit =
1447 InitSeq.Perform(*this, BaseEntity, Kind,
1448 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1449 if (BaseInit.isInvalid())
1450 return true;
1451
1452 // C++0x [class.base.init]p7:
1453 // The initialization of each base and member constitutes a
1454 // full-expression.
1455 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1456 if (BaseInit.isInvalid())
1457 return true;
1458
1459 // If we are in a dependent context, template instantiation will
1460 // perform this type-checking again. Just save the arguments that we
1461 // received in a ParenListExpr.
1462 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1463 // of the information that we have about the base
1464 // initializer. However, deconstructing the ASTs is a dicey process,
1465 // and this approach is far more likely to get the corner cases right.
1466 if (CurContext->isDependentContext()) {
1467 // Bump the reference count of all of the arguments.
1468 for (unsigned I = 0; I != NumArgs; ++I)
1469 Args[I]->Retain();
1470
1471 OwningExprResult Init
1472 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1473 RParenLoc));
1474 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001475 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001476 LParenLoc,
1477 Init.takeAs<Expr>(),
1478 RParenLoc);
1479 }
1480
1481 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001482 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001483 LParenLoc,
1484 BaseInit.takeAs<Expr>(),
1485 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001486}
1487
Anders Carlsson1b00e242010-04-23 03:10:23 +00001488/// ImplicitInitializerKind - How an implicit base or member initializer should
1489/// initialize its base or member.
1490enum ImplicitInitializerKind {
1491 IIK_Default,
1492 IIK_Copy,
1493 IIK_Move
1494};
1495
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001496static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001497BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001498 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001499 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001500 bool IsInheritedVirtualBase,
1501 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001502 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001503 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1504 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001505
Anders Carlsson1b00e242010-04-23 03:10:23 +00001506 Sema::OwningExprResult BaseInit(SemaRef);
1507
1508 switch (ImplicitInitKind) {
1509 case IIK_Default: {
1510 InitializationKind InitKind
1511 = InitializationKind::CreateDefault(Constructor->getLocation());
1512 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1513 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1514 Sema::MultiExprArg(SemaRef, 0, 0));
1515 break;
1516 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001517
Anders Carlsson1b00e242010-04-23 03:10:23 +00001518 case IIK_Copy: {
1519 ParmVarDecl *Param = Constructor->getParamDecl(0);
1520 QualType ParamType = Param->getType().getNonReferenceType();
1521
1522 Expr *CopyCtorArg =
1523 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001524 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001525
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001526 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001527 QualType ArgTy =
1528 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1529 ParamType.getQualifiers());
1530 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001531 CastExpr::CK_UncheckedDerivedToBase,
Anders Carlsson36db0d92010-04-24 22:54:32 +00001532 /*isLvalue=*/true,
1533 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001534
Anders Carlsson1b00e242010-04-23 03:10:23 +00001535 InitializationKind InitKind
1536 = InitializationKind::CreateDirect(Constructor->getLocation(),
1537 SourceLocation(), SourceLocation());
1538 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1539 &CopyCtorArg, 1);
1540 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1541 Sema::MultiExprArg(SemaRef,
1542 (void**)&CopyCtorArg, 1));
1543 break;
1544 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001545
Anders Carlsson1b00e242010-04-23 03:10:23 +00001546 case IIK_Move:
1547 assert(false && "Unhandled initializer kind!");
1548 }
1549
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001550 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1551 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001552 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001553
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001554 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001555 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1556 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1557 SourceLocation()),
1558 BaseSpec->isVirtual(),
1559 SourceLocation(),
1560 BaseInit.takeAs<Expr>(),
1561 SourceLocation());
1562
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001563 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001564}
1565
Anders Carlsson3c1db572010-04-23 02:15:47 +00001566static bool
1567BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001568 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001569 FieldDecl *Field,
1570 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001571 if (Field->isInvalidDecl())
1572 return true;
1573
Anders Carlsson423f5d82010-04-23 16:04:08 +00001574 if (ImplicitInitKind == IIK_Copy) {
Douglas Gregor94f9a482010-05-05 05:51:00 +00001575 SourceLocation Loc = Constructor->getLocation();
Anders Carlsson423f5d82010-04-23 16:04:08 +00001576 ParmVarDecl *Param = Constructor->getParamDecl(0);
1577 QualType ParamType = Param->getType().getNonReferenceType();
1578
1579 Expr *MemberExprBase =
1580 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001581 Loc, ParamType, 0);
1582
1583 // Build a reference to this field within the parameter.
1584 CXXScopeSpec SS;
1585 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1586 Sema::LookupMemberName);
1587 MemberLookup.addDecl(Field, AS_public);
1588 MemberLookup.resolveKind();
1589 Sema::OwningExprResult CopyCtorArg
1590 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1591 ParamType, Loc,
1592 /*IsArrow=*/false,
1593 SS,
1594 /*FirstQualifierInScope=*/0,
1595 MemberLookup,
1596 /*TemplateArgs=*/0);
1597 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001598 return true;
1599
Douglas Gregor94f9a482010-05-05 05:51:00 +00001600 // When the field we are copying is an array, create index variables for
1601 // each dimension of the array. We use these index variables to subscript
1602 // the source array, and other clients (e.g., CodeGen) will perform the
1603 // necessary iteration with these index variables.
1604 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1605 QualType BaseType = Field->getType();
1606 QualType SizeType = SemaRef.Context.getSizeType();
1607 while (const ConstantArrayType *Array
1608 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1609 // Create the iteration variable for this array index.
1610 IdentifierInfo *IterationVarName = 0;
1611 {
1612 llvm::SmallString<8> Str;
1613 llvm::raw_svector_ostream OS(Str);
1614 OS << "__i" << IndexVariables.size();
1615 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1616 }
1617 VarDecl *IterationVar
1618 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1619 IterationVarName, SizeType,
1620 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1621 VarDecl::None, VarDecl::None);
1622 IndexVariables.push_back(IterationVar);
1623
1624 // Create a reference to the iteration variable.
1625 Sema::OwningExprResult IterationVarRef
1626 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1627 assert(!IterationVarRef.isInvalid() &&
1628 "Reference to invented variable cannot fail!");
1629
1630 // Subscript the array with this iteration variable.
1631 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1632 Loc,
1633 move(IterationVarRef),
1634 Loc);
1635 if (CopyCtorArg.isInvalid())
1636 return true;
1637
1638 BaseType = Array->getElementType();
1639 }
1640
1641 // Construct the entity that we will be initializing. For an array, this
1642 // will be first element in the array, which may require several levels
1643 // of array-subscript entities.
1644 llvm::SmallVector<InitializedEntity, 4> Entities;
1645 Entities.reserve(1 + IndexVariables.size());
1646 Entities.push_back(InitializedEntity::InitializeMember(Field));
1647 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1648 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1649 0,
1650 Entities.back()));
1651
1652 // Direct-initialize to use the copy constructor.
1653 InitializationKind InitKind =
1654 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1655
1656 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1657 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1658 &CopyCtorArgE, 1);
1659
1660 Sema::OwningExprResult MemberInit
1661 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1662 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1663 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1664 if (MemberInit.isInvalid())
1665 return true;
1666
1667 CXXMemberInit
1668 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1669 MemberInit.takeAs<Expr>(), Loc,
1670 IndexVariables.data(),
1671 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001672 return false;
1673 }
1674
Anders Carlsson423f5d82010-04-23 16:04:08 +00001675 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1676
Anders Carlsson3c1db572010-04-23 02:15:47 +00001677 QualType FieldBaseElementType =
1678 SemaRef.Context.getBaseElementType(Field->getType());
1679
Anders Carlsson3c1db572010-04-23 02:15:47 +00001680 if (FieldBaseElementType->isRecordType()) {
1681 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001682 InitializationKind InitKind =
1683 InitializationKind::CreateDefault(Constructor->getLocation());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001684
1685 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1686 Sema::OwningExprResult MemberInit =
1687 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1688 Sema::MultiExprArg(SemaRef, 0, 0));
1689 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1690 if (MemberInit.isInvalid())
1691 return true;
1692
1693 CXXMemberInit =
1694 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1695 Field, SourceLocation(),
1696 SourceLocation(),
1697 MemberInit.takeAs<Expr>(),
1698 SourceLocation());
1699 return false;
1700 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001701
1702 if (FieldBaseElementType->isReferenceType()) {
1703 SemaRef.Diag(Constructor->getLocation(),
1704 diag::err_uninitialized_member_in_ctor)
1705 << (int)Constructor->isImplicit()
1706 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1707 << 0 << Field->getDeclName();
1708 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1709 return true;
1710 }
1711
1712 if (FieldBaseElementType.isConstQualified()) {
1713 SemaRef.Diag(Constructor->getLocation(),
1714 diag::err_uninitialized_member_in_ctor)
1715 << (int)Constructor->isImplicit()
1716 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1717 << 1 << Field->getDeclName();
1718 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1719 return true;
1720 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001721
1722 // Nothing to initialize.
1723 CXXMemberInit = 0;
1724 return false;
1725}
John McCallbc83b3f2010-05-20 23:23:51 +00001726
1727namespace {
1728struct BaseAndFieldInfo {
1729 Sema &S;
1730 CXXConstructorDecl *Ctor;
1731 bool AnyErrorsInInits;
1732 ImplicitInitializerKind IIK;
1733 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1734 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1735
1736 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1737 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1738 // FIXME: Handle implicit move constructors.
1739 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1740 IIK = IIK_Copy;
1741 else
1742 IIK = IIK_Default;
1743 }
1744};
1745}
1746
1747static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1748 FieldDecl *Top, FieldDecl *Field) {
1749
1750 // Overwhelmingly common case: we have a direct initializer for this field.
1751 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
1752 Info.AllToInit.push_back(Init);
1753
1754 if (Field != Top) {
1755 Init->setMember(Top);
1756 Init->setAnonUnionMember(Field);
1757 }
1758 return false;
1759 }
1760
1761 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1762 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1763 assert(FieldClassType && "anonymous struct/union without record type");
1764
1765 // Walk through the members, tying in any initializers for fields
1766 // we find. The earlier semantic checks should prevent redundant
1767 // initialization of union members, given the requirement that
1768 // union members never have non-trivial default constructors.
1769
1770 // TODO: in C++0x, it might be legal to have union members with
1771 // non-trivial default constructors in unions. Revise this
1772 // implementation then with the appropriate semantics.
1773 CXXRecordDecl *FieldClassDecl
1774 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1775 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1776 EA = FieldClassDecl->field_end(); FA != EA; FA++)
1777 if (CollectFieldInitializer(Info, Top, *FA))
1778 return true;
1779 }
1780
1781 // Don't try to build an implicit initializer if there were semantic
1782 // errors in any of the initializers (and therefore we might be
1783 // missing some that the user actually wrote).
1784 if (Info.AnyErrorsInInits)
1785 return false;
1786
1787 CXXBaseOrMemberInitializer *Init = 0;
1788 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1789 return true;
1790
1791 // If the member doesn't need to be initialized, Init will still be null.
1792 if (!Init) return false;
1793
1794 Info.AllToInit.push_back(Init);
1795 if (Top != Field) {
1796 Init->setMember(Top);
1797 Init->setAnonUnionMember(Field);
1798 }
1799 return false;
1800}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001801
Eli Friedman9cf6b592009-11-09 19:20:36 +00001802bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001803Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001804 CXXBaseOrMemberInitializer **Initializers,
1805 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001806 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001807 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001808 // Just store the initializers as written, they will be checked during
1809 // instantiation.
1810 if (NumInitializers > 0) {
1811 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1812 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1813 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1814 memcpy(baseOrMemberInitializers, Initializers,
1815 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1816 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1817 }
1818
1819 return false;
1820 }
1821
John McCallbc83b3f2010-05-20 23:23:51 +00001822 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001823
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001824 // We need to build the initializer AST according to order of construction
1825 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001826 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001827 if (!ClassDecl)
1828 return true;
1829
Eli Friedman9cf6b592009-11-09 19:20:36 +00001830 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001831
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001832 for (unsigned i = 0; i < NumInitializers; i++) {
1833 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001834
1835 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001836 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001837 else
John McCallbc83b3f2010-05-20 23:23:51 +00001838 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001839 }
1840
Anders Carlsson43c64af2010-04-21 19:52:01 +00001841 // Keep track of the direct virtual bases.
1842 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1843 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1844 E = ClassDecl->bases_end(); I != E; ++I) {
1845 if (I->isVirtual())
1846 DirectVBases.insert(I);
1847 }
1848
Anders Carlssondb0a9652010-04-02 06:26:44 +00001849 // Push virtual bases before others.
1850 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1851 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1852
1853 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001854 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1855 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001856 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001857 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001858 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001859 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001860 VBase, IsInheritedVirtualBase,
1861 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001862 HadError = true;
1863 continue;
1864 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001865
John McCallbc83b3f2010-05-20 23:23:51 +00001866 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001867 }
1868 }
Mike Stump11289f42009-09-09 15:08:12 +00001869
John McCallbc83b3f2010-05-20 23:23:51 +00001870 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001871 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1872 E = ClassDecl->bases_end(); Base != E; ++Base) {
1873 // Virtuals are in the virtual base list and already constructed.
1874 if (Base->isVirtual())
1875 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001876
Anders Carlssondb0a9652010-04-02 06:26:44 +00001877 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001878 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1879 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001880 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001881 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001882 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001883 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001884 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001885 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001886 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001887 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001888
John McCallbc83b3f2010-05-20 23:23:51 +00001889 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001890 }
1891 }
Mike Stump11289f42009-09-09 15:08:12 +00001892
John McCallbc83b3f2010-05-20 23:23:51 +00001893 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001894 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
John McCallbc83b3f2010-05-20 23:23:51 +00001895 E = ClassDecl->field_end(); Field != E; ++Field)
1896 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001897 HadError = true;
Mike Stump11289f42009-09-09 15:08:12 +00001898
John McCallbc83b3f2010-05-20 23:23:51 +00001899 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001900 if (NumInitializers > 0) {
1901 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1902 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1903 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001904 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001905 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001906 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001907
John McCalla6309952010-03-16 21:39:52 +00001908 // Constructors implicitly reference the base and member
1909 // destructors.
1910 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1911 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001912 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001913
1914 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001915}
1916
Eli Friedman952c15d2009-07-21 19:28:10 +00001917static void *GetKeyForTopLevelField(FieldDecl *Field) {
1918 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001919 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001920 if (RT->getDecl()->isAnonymousStructOrUnion())
1921 return static_cast<void *>(RT->getDecl());
1922 }
1923 return static_cast<void *>(Field);
1924}
1925
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001926static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1927 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001928}
1929
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001930static void *GetKeyForMember(ASTContext &Context,
1931 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001932 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001933 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001934 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001935
Eli Friedman952c15d2009-07-21 19:28:10 +00001936 // For fields injected into the class via declaration of an anonymous union,
1937 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001938 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001939
Anders Carlssona942dcd2010-03-30 15:39:27 +00001940 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1941 // data member of the class. Data member used in the initializer list is
1942 // in AnonUnionMember field.
1943 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1944 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001945
John McCall23eebd92010-04-10 09:28:51 +00001946 // If the field is a member of an anonymous struct or union, our key
1947 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001948 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001949 if (RD->isAnonymousStructOrUnion()) {
1950 while (true) {
1951 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1952 if (Parent->isAnonymousStructOrUnion())
1953 RD = Parent;
1954 else
1955 break;
1956 }
1957
Anders Carlsson83ac3122010-03-30 16:19:37 +00001958 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00001959 }
Mike Stump11289f42009-09-09 15:08:12 +00001960
Anders Carlssona942dcd2010-03-30 15:39:27 +00001961 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00001962}
1963
Anders Carlssone857b292010-04-02 03:37:03 +00001964static void
1965DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001966 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00001967 CXXBaseOrMemberInitializer **Inits,
1968 unsigned NumInits) {
1969 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001970 return;
Mike Stump11289f42009-09-09 15:08:12 +00001971
John McCallbb7b6582010-04-10 07:37:23 +00001972 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
1973 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00001974 return;
Anders Carlssone857b292010-04-02 03:37:03 +00001975
John McCallbb7b6582010-04-10 07:37:23 +00001976 // Build the list of bases and members in the order that they'll
1977 // actually be initialized. The explicit initializers should be in
1978 // this same order but may be missing things.
1979 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00001980
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001981 const CXXRecordDecl *ClassDecl = Constructor->getParent();
1982
John McCallbb7b6582010-04-10 07:37:23 +00001983 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001984 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00001985 ClassDecl->vbases_begin(),
1986 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00001987 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001988
John McCallbb7b6582010-04-10 07:37:23 +00001989 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001990 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00001991 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00001992 if (Base->isVirtual())
1993 continue;
John McCallbb7b6582010-04-10 07:37:23 +00001994 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00001995 }
Mike Stump11289f42009-09-09 15:08:12 +00001996
John McCallbb7b6582010-04-10 07:37:23 +00001997 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00001998 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1999 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002000 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002001
John McCallbb7b6582010-04-10 07:37:23 +00002002 unsigned NumIdealInits = IdealInitKeys.size();
2003 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002004
John McCallbb7b6582010-04-10 07:37:23 +00002005 CXXBaseOrMemberInitializer *PrevInit = 0;
2006 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2007 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2008 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2009
2010 // Scan forward to try to find this initializer in the idealized
2011 // initializers list.
2012 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2013 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002014 break;
John McCallbb7b6582010-04-10 07:37:23 +00002015
2016 // If we didn't find this initializer, it must be because we
2017 // scanned past it on a previous iteration. That can only
2018 // happen if we're out of order; emit a warning.
2019 if (IdealIndex == NumIdealInits) {
2020 assert(PrevInit && "initializer not found in initializer list");
2021
2022 Sema::SemaDiagnosticBuilder D =
2023 SemaRef.Diag(PrevInit->getSourceLocation(),
2024 diag::warn_initializer_out_of_order);
2025
2026 if (PrevInit->isMemberInitializer())
2027 D << 0 << PrevInit->getMember()->getDeclName();
2028 else
2029 D << 1 << PrevInit->getBaseClassInfo()->getType();
2030
2031 if (Init->isMemberInitializer())
2032 D << 0 << Init->getMember()->getDeclName();
2033 else
2034 D << 1 << Init->getBaseClassInfo()->getType();
2035
2036 // Move back to the initializer's location in the ideal list.
2037 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2038 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002039 break;
John McCallbb7b6582010-04-10 07:37:23 +00002040
2041 assert(IdealIndex != NumIdealInits &&
2042 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002043 }
John McCallbb7b6582010-04-10 07:37:23 +00002044
2045 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002046 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002047}
2048
John McCall23eebd92010-04-10 09:28:51 +00002049namespace {
2050bool CheckRedundantInit(Sema &S,
2051 CXXBaseOrMemberInitializer *Init,
2052 CXXBaseOrMemberInitializer *&PrevInit) {
2053 if (!PrevInit) {
2054 PrevInit = Init;
2055 return false;
2056 }
2057
2058 if (FieldDecl *Field = Init->getMember())
2059 S.Diag(Init->getSourceLocation(),
2060 diag::err_multiple_mem_initialization)
2061 << Field->getDeclName()
2062 << Init->getSourceRange();
2063 else {
2064 Type *BaseClass = Init->getBaseClass();
2065 assert(BaseClass && "neither field nor base");
2066 S.Diag(Init->getSourceLocation(),
2067 diag::err_multiple_base_initialization)
2068 << QualType(BaseClass, 0)
2069 << Init->getSourceRange();
2070 }
2071 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2072 << 0 << PrevInit->getSourceRange();
2073
2074 return true;
2075}
2076
2077typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2078typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2079
2080bool CheckRedundantUnionInit(Sema &S,
2081 CXXBaseOrMemberInitializer *Init,
2082 RedundantUnionMap &Unions) {
2083 FieldDecl *Field = Init->getMember();
2084 RecordDecl *Parent = Field->getParent();
2085 if (!Parent->isAnonymousStructOrUnion())
2086 return false;
2087
2088 NamedDecl *Child = Field;
2089 do {
2090 if (Parent->isUnion()) {
2091 UnionEntry &En = Unions[Parent];
2092 if (En.first && En.first != Child) {
2093 S.Diag(Init->getSourceLocation(),
2094 diag::err_multiple_mem_union_initialization)
2095 << Field->getDeclName()
2096 << Init->getSourceRange();
2097 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2098 << 0 << En.second->getSourceRange();
2099 return true;
2100 } else if (!En.first) {
2101 En.first = Child;
2102 En.second = Init;
2103 }
2104 }
2105
2106 Child = Parent;
2107 Parent = cast<RecordDecl>(Parent->getDeclContext());
2108 } while (Parent->isAnonymousStructOrUnion());
2109
2110 return false;
2111}
2112}
2113
Anders Carlssone857b292010-04-02 03:37:03 +00002114/// ActOnMemInitializers - Handle the member initializers for a constructor.
2115void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2116 SourceLocation ColonLoc,
2117 MemInitTy **meminits, unsigned NumMemInits,
2118 bool AnyErrors) {
2119 if (!ConstructorDecl)
2120 return;
2121
2122 AdjustDeclIfTemplate(ConstructorDecl);
2123
2124 CXXConstructorDecl *Constructor
2125 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2126
2127 if (!Constructor) {
2128 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2129 return;
2130 }
2131
2132 CXXBaseOrMemberInitializer **MemInits =
2133 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002134
2135 // Mapping for the duplicate initializers check.
2136 // For member initializers, this is keyed with a FieldDecl*.
2137 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002138 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002139
2140 // Mapping for the inconsistent anonymous-union initializers check.
2141 RedundantUnionMap MemberUnions;
2142
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002143 bool HadError = false;
2144 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002145 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002146
John McCall23eebd92010-04-10 09:28:51 +00002147 if (Init->isMemberInitializer()) {
2148 FieldDecl *Field = Init->getMember();
2149 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2150 CheckRedundantUnionInit(*this, Init, MemberUnions))
2151 HadError = true;
2152 } else {
2153 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2154 if (CheckRedundantInit(*this, Init, Members[Key]))
2155 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002156 }
Anders Carlssone857b292010-04-02 03:37:03 +00002157 }
2158
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002159 if (HadError)
2160 return;
2161
Anders Carlssone857b292010-04-02 03:37:03 +00002162 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002163
2164 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002165}
2166
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002167void
John McCalla6309952010-03-16 21:39:52 +00002168Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2169 CXXRecordDecl *ClassDecl) {
2170 // Ignore dependent contexts.
2171 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002172 return;
John McCall1064d7e2010-03-16 05:22:47 +00002173
2174 // FIXME: all the access-control diagnostics are positioned on the
2175 // field/base declaration. That's probably good; that said, the
2176 // user might reasonably want to know why the destructor is being
2177 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002178
Anders Carlssondee9a302009-11-17 04:44:12 +00002179 // Non-static data members.
2180 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2181 E = ClassDecl->field_end(); I != E; ++I) {
2182 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002183 if (Field->isInvalidDecl())
2184 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002185 QualType FieldType = Context.getBaseElementType(Field->getType());
2186
2187 const RecordType* RT = FieldType->getAs<RecordType>();
2188 if (!RT)
2189 continue;
2190
2191 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2192 if (FieldClassDecl->hasTrivialDestructor())
2193 continue;
2194
John McCall1064d7e2010-03-16 05:22:47 +00002195 CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(Context);
2196 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002197 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002198 << Field->getDeclName()
2199 << FieldType);
2200
John McCalla6309952010-03-16 21:39:52 +00002201 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002202 }
2203
John McCall1064d7e2010-03-16 05:22:47 +00002204 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2205
Anders Carlssondee9a302009-11-17 04:44:12 +00002206 // Bases.
2207 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2208 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002209 // Bases are always records in a well-formed non-dependent class.
2210 const RecordType *RT = Base->getType()->getAs<RecordType>();
2211
2212 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002213 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002214 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002215
2216 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002217 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002218 if (BaseClassDecl->hasTrivialDestructor())
2219 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002220
2221 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2222
2223 // FIXME: caret should be on the start of the class name
2224 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002225 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002226 << Base->getType()
2227 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002228
John McCalla6309952010-03-16 21:39:52 +00002229 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002230 }
2231
2232 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002233 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2234 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002235
2236 // Bases are always records in a well-formed non-dependent class.
2237 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2238
2239 // Ignore direct virtual bases.
2240 if (DirectVirtualBases.count(RT))
2241 continue;
2242
Anders Carlssondee9a302009-11-17 04:44:12 +00002243 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002244 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002245 if (BaseClassDecl->hasTrivialDestructor())
2246 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002247
2248 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2249 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002250 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002251 << VBase->getType());
2252
John McCalla6309952010-03-16 21:39:52 +00002253 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002254 }
2255}
2256
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +00002257void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002258 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002259 return;
Mike Stump11289f42009-09-09 15:08:12 +00002260
Mike Stump11289f42009-09-09 15:08:12 +00002261 if (CXXConstructorDecl *Constructor
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002262 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002263 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002264}
2265
Mike Stump11289f42009-09-09 15:08:12 +00002266bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002267 unsigned DiagID, AbstractDiagSelID SelID,
2268 const CXXRecordDecl *CurrentRD) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002269 if (SelID == -1)
2270 return RequireNonAbstractType(Loc, T,
2271 PDiag(DiagID), CurrentRD);
2272 else
2273 return RequireNonAbstractType(Loc, T,
2274 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002275}
2276
Anders Carlssoneabf7702009-08-27 00:13:57 +00002277bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2278 const PartialDiagnostic &PD,
2279 const CXXRecordDecl *CurrentRD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002280 if (!getLangOptions().CPlusPlus)
2281 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002282
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002283 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002284 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002285 CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002286
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002287 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002288 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002289 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002290 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002291
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002292 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002293 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002294 }
Mike Stump11289f42009-09-09 15:08:12 +00002295
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002296 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002297 if (!RT)
2298 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002299
John McCall67da35c2010-02-04 22:26:26 +00002300 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002301
Anders Carlssonb57738b2009-03-24 17:23:42 +00002302 if (CurrentRD && CurrentRD != RD)
2303 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002304
John McCall67da35c2010-02-04 22:26:26 +00002305 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002306 if (!RD->getDefinition())
John McCall67da35c2010-02-04 22:26:26 +00002307 return false;
2308
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002309 if (!RD->isAbstract())
2310 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002311
Anders Carlssoneabf7702009-08-27 00:13:57 +00002312 Diag(Loc, PD) << RD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002313
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002314 // Check if we've already emitted the list of pure virtual functions for this
2315 // class.
2316 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2317 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002318
Douglas Gregor4165bd62010-03-23 23:47:56 +00002319 CXXFinalOverriderMap FinalOverriders;
2320 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002321
Douglas Gregor4165bd62010-03-23 23:47:56 +00002322 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2323 MEnd = FinalOverriders.end();
2324 M != MEnd;
2325 ++M) {
2326 for (OverridingMethods::iterator SO = M->second.begin(),
2327 SOEnd = M->second.end();
2328 SO != SOEnd; ++SO) {
2329 // C++ [class.abstract]p4:
2330 // A class is abstract if it contains or inherits at least one
2331 // pure virtual function for which the final overrider is pure
2332 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002333
Douglas Gregor4165bd62010-03-23 23:47:56 +00002334 //
2335 if (SO->second.size() != 1)
2336 continue;
2337
2338 if (!SO->second.front().Method->isPure())
2339 continue;
2340
2341 Diag(SO->second.front().Method->getLocation(),
2342 diag::note_pure_virtual_function)
2343 << SO->second.front().Method->getDeclName();
2344 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002345 }
2346
2347 if (!PureVirtualClassDiagSet)
2348 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2349 PureVirtualClassDiagSet->insert(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002350
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002351 return true;
2352}
2353
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002354namespace {
Benjamin Kramer337e3a52009-11-28 19:45:26 +00002355 class AbstractClassUsageDiagnoser
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002356 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2357 Sema &SemaRef;
2358 CXXRecordDecl *AbstractClass;
Mike Stump11289f42009-09-09 15:08:12 +00002359
Anders Carlssonb57738b2009-03-24 17:23:42 +00002360 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002361 bool Invalid = false;
2362
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002363 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2364 E = DC->decls_end(); I != E; ++I)
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002365 Invalid |= Visit(*I);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002366
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002367 return Invalid;
2368 }
Mike Stump11289f42009-09-09 15:08:12 +00002369
Anders Carlssonb57738b2009-03-24 17:23:42 +00002370 public:
2371 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2372 : SemaRef(SemaRef), AbstractClass(ac) {
2373 Visit(SemaRef.Context.getTranslationUnitDecl());
2374 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002375
Anders Carlssonb57738b2009-03-24 17:23:42 +00002376 bool VisitFunctionDecl(const FunctionDecl *FD) {
2377 if (FD->isThisDeclarationADefinition()) {
2378 // No need to do the check if we're in a definition, because it requires
2379 // that the return/param types are complete.
Mike Stump11289f42009-09-09 15:08:12 +00002380 // because that requires
Anders Carlssonb57738b2009-03-24 17:23:42 +00002381 return VisitDeclContext(FD);
2382 }
Mike Stump11289f42009-09-09 15:08:12 +00002383
Anders Carlssonb57738b2009-03-24 17:23:42 +00002384 // Check the return type.
John McCall9dd450b2009-09-21 23:43:11 +00002385 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00002386 bool Invalid =
Anders Carlssonb57738b2009-03-24 17:23:42 +00002387 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2388 diag::err_abstract_type_in_decl,
2389 Sema::AbstractReturnType,
2390 AbstractClass);
2391
Mike Stump11289f42009-09-09 15:08:12 +00002392 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssonb57738b2009-03-24 17:23:42 +00002393 E = FD->param_end(); I != E; ++I) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002394 const ParmVarDecl *VD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002395 Invalid |=
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002396 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002397 VD->getOriginalType(),
2398 diag::err_abstract_type_in_decl,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002399 Sema::AbstractParamType,
2400 AbstractClass);
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002401 }
2402
2403 return Invalid;
2404 }
Mike Stump11289f42009-09-09 15:08:12 +00002405
Anders Carlssonb57738b2009-03-24 17:23:42 +00002406 bool VisitDecl(const Decl* D) {
2407 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2408 return VisitDeclContext(DC);
Mike Stump11289f42009-09-09 15:08:12 +00002409
Anders Carlssonb57738b2009-03-24 17:23:42 +00002410 return false;
2411 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002412 };
2413}
2414
Douglas Gregorc99f1552009-12-03 18:33:45 +00002415/// \brief Perform semantic checks on a class definition that has been
2416/// completing, introducing implicitly-declared members, checking for
2417/// abstract types, etc.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002418void Sema::CheckCompletedCXXClass(Scope *S, CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002419 if (!Record || Record->isInvalidDecl())
2420 return;
2421
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002422 if (!Record->isDependentType())
Douglas Gregorb93b6062010-04-12 17:09:20 +00002423 AddImplicitlyDeclaredMembersToClass(S, Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002424
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002425 if (Record->isInvalidDecl())
2426 return;
2427
John McCall2cb94162010-01-28 07:38:46 +00002428 // Set access bits correctly on the directly-declared conversions.
2429 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2430 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2431 Convs->setAccess(I, (*I)->getAccess());
2432
Douglas Gregor4165bd62010-03-23 23:47:56 +00002433 // Determine whether we need to check for final overriders. We do
2434 // this either when there are virtual base classes (in which case we
2435 // may end up finding multiple final overriders for a given virtual
2436 // function) or any of the base classes is abstract (in which case
2437 // we might detect that this class is abstract).
2438 bool CheckFinalOverriders = false;
2439 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2440 !Record->isDependentType()) {
2441 if (Record->getNumVBases())
2442 CheckFinalOverriders = true;
2443 else if (!Record->isAbstract()) {
2444 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2445 BEnd = Record->bases_end();
2446 B != BEnd; ++B) {
2447 CXXRecordDecl *BaseDecl
2448 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2449 if (BaseDecl->isAbstract()) {
2450 CheckFinalOverriders = true;
2451 break;
2452 }
2453 }
2454 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002455 }
2456
Douglas Gregor4165bd62010-03-23 23:47:56 +00002457 if (CheckFinalOverriders) {
2458 CXXFinalOverriderMap FinalOverriders;
2459 Record->getFinalOverriders(FinalOverriders);
2460
2461 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2462 MEnd = FinalOverriders.end();
2463 M != MEnd; ++M) {
2464 for (OverridingMethods::iterator SO = M->second.begin(),
2465 SOEnd = M->second.end();
2466 SO != SOEnd; ++SO) {
2467 assert(SO->second.size() > 0 &&
2468 "All virtual functions have overridding virtual functions");
2469 if (SO->second.size() == 1) {
2470 // C++ [class.abstract]p4:
2471 // A class is abstract if it contains or inherits at least one
2472 // pure virtual function for which the final overrider is pure
2473 // virtual.
2474 if (SO->second.front().Method->isPure())
2475 Record->setAbstract(true);
2476 continue;
2477 }
2478
2479 // C++ [class.virtual]p2:
2480 // In a derived class, if a virtual member function of a base
2481 // class subobject has more than one final overrider the
2482 // program is ill-formed.
2483 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2484 << (NamedDecl *)M->first << Record;
2485 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2486 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2487 OMEnd = SO->second.end();
2488 OM != OMEnd; ++OM)
2489 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2490 << (NamedDecl *)M->first << OM->Method->getParent();
2491
2492 Record->setInvalidDecl();
2493 }
2494 }
2495 }
2496
2497 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregorc99f1552009-12-03 18:33:45 +00002498 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor454a5b62010-04-15 00:00:53 +00002499
2500 // If this is not an aggregate type and has no user-declared constructor,
2501 // complain about any non-static data members of reference or const scalar
2502 // type, since they will never get initializers.
2503 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2504 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2505 bool Complained = false;
2506 for (RecordDecl::field_iterator F = Record->field_begin(),
2507 FEnd = Record->field_end();
2508 F != FEnd; ++F) {
2509 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002510 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002511 if (!Complained) {
2512 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2513 << Record->getTagKind() << Record;
2514 Complained = true;
2515 }
2516
2517 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2518 << F->getType()->isReferenceType()
2519 << F->getDeclName();
2520 }
2521 }
2522 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002523
2524 if (Record->isDynamicClass())
2525 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002526}
2527
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002528void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00002529 DeclPtrTy TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002530 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002531 SourceLocation RBrac,
2532 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002533 if (!TagDecl)
2534 return;
Mike Stump11289f42009-09-09 15:08:12 +00002535
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002536 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002537
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002538 ActOnFields(S, RLoc, TagDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00002539 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002540 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002541
Douglas Gregorb93b6062010-04-12 17:09:20 +00002542 CheckCompletedCXXClass(S,
Douglas Gregorc99f1552009-12-03 18:33:45 +00002543 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002544}
2545
Douglas Gregor05379422008-11-03 17:51:48 +00002546/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2547/// special functions, such as the default constructor, copy
2548/// constructor, or destructor, to the given C++ class (C++
2549/// [special]p1). This routine can only be executed just before the
2550/// definition of the class is complete.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002551///
2552/// The scope, if provided, is the class scope.
2553void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
2554 CXXRecordDecl *ClassDecl) {
Mike Stump11289f42009-09-09 15:08:12 +00002555 CanQualType ClassType
Douglas Gregor2211d342009-08-05 05:36:45 +00002556 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor77324f32008-11-17 14:58:09 +00002557
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002558 // FIXME: Implicit declarations have exception specifications, which are
2559 // the union of the specifications of the implicitly called functions.
2560
Douglas Gregor05379422008-11-03 17:51:48 +00002561 if (!ClassDecl->hasUserDeclaredConstructor()) {
2562 // C++ [class.ctor]p5:
2563 // A default constructor for a class X is a constructor of class X
2564 // that can be called without an argument. If there is no
2565 // user-declared constructor for class X, a default constructor is
2566 // implicitly declared. An implicitly-declared default constructor
2567 // is an inline public member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002568 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002569 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00002570 CXXConstructorDecl *DefaultCon =
Douglas Gregor05379422008-11-03 17:51:48 +00002571 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002572 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00002573 Context.getFunctionType(Context.VoidTy,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002574 0, 0, false, 0,
2575 /*FIXME*/false, false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002576 0, 0,
2577 FunctionType::ExtInfo()),
John McCallbcd03502009-12-07 02:54:59 +00002578 /*TInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00002579 /*isExplicit=*/false,
2580 /*isInline=*/true,
2581 /*isImplicitlyDeclared=*/true);
2582 DefaultCon->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002583 DefaultCon->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002584 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregorb93b6062010-04-12 17:09:20 +00002585 if (S)
2586 PushOnScopeChains(DefaultCon, S, true);
2587 else
2588 ClassDecl->addDecl(DefaultCon);
Douglas Gregor05379422008-11-03 17:51:48 +00002589 }
2590
2591 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
2592 // C++ [class.copy]p4:
2593 // If the class definition does not explicitly declare a copy
2594 // constructor, one is declared implicitly.
2595
2596 // C++ [class.copy]p5:
2597 // The implicitly-declared copy constructor for a class X will
2598 // have the form
2599 //
2600 // X::X(const X&)
2601 //
2602 // if
2603 bool HasConstCopyConstructor = true;
2604
2605 // -- each direct or virtual base class B of X has a copy
2606 // constructor whose first parameter is of type const B& or
2607 // const volatile B&, and
2608 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2609 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
2610 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002611 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002612 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002613 = BaseClassDecl->hasConstCopyConstructor(Context);
2614 }
2615
2616 // -- for all the nonstatic data members of X that are of a
2617 // class type M (or array thereof), each such class type
2618 // has a copy constructor whose first parameter is of type
2619 // const M& or const volatile M&.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002620 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2621 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002622 ++Field) {
Douglas Gregor05379422008-11-03 17:51:48 +00002623 QualType FieldType = (*Field)->getType();
2624 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2625 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002626 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump11289f42009-09-09 15:08:12 +00002627 const CXXRecordDecl *FieldClassDecl
Douglas Gregor05379422008-11-03 17:51:48 +00002628 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002629 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002630 = FieldClassDecl->hasConstCopyConstructor(Context);
2631 }
2632 }
2633
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002634 // Otherwise, the implicitly declared copy constructor will have
2635 // the form
Douglas Gregor05379422008-11-03 17:51:48 +00002636 //
2637 // X::X(X&)
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002638 QualType ArgType = ClassType;
Douglas Gregor05379422008-11-03 17:51:48 +00002639 if (HasConstCopyConstructor)
2640 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002641 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor05379422008-11-03 17:51:48 +00002642
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002643 // An implicitly-declared copy constructor is an inline public
2644 // member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002645 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002646 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor05379422008-11-03 17:51:48 +00002647 CXXConstructorDecl *CopyConstructor
2648 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002649 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00002650 Context.getFunctionType(Context.VoidTy,
2651 &ArgType, 1,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002652 false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002653 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002654 false, 0, 0,
2655 FunctionType::ExtInfo()),
John McCallbcd03502009-12-07 02:54:59 +00002656 /*TInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00002657 /*isExplicit=*/false,
2658 /*isInline=*/true,
2659 /*isImplicitlyDeclared=*/true);
2660 CopyConstructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002661 CopyConstructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002662 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor05379422008-11-03 17:51:48 +00002663
2664 // Add the parameter to the constructor.
2665 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
2666 ClassDecl->getLocation(),
2667 /*IdentifierInfo=*/0,
John McCallbcd03502009-12-07 02:54:59 +00002668 ArgType, /*TInfo=*/0,
Douglas Gregorc4df4072010-04-19 22:54:31 +00002669 VarDecl::None,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002670 VarDecl::None, 0);
Douglas Gregord5058122010-02-11 01:19:42 +00002671 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregorb93b6062010-04-12 17:09:20 +00002672 if (S)
2673 PushOnScopeChains(CopyConstructor, S, true);
2674 else
2675 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor05379422008-11-03 17:51:48 +00002676 }
2677
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002678 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2679 // Note: The following rules are largely analoguous to the copy
2680 // constructor rules. Note that virtual bases are not taken into account
2681 // for determining the argument type of the operator. Note also that
2682 // operators taking an object instead of a reference are allowed.
2683 //
2684 // C++ [class.copy]p10:
2685 // If the class definition does not explicitly declare a copy
2686 // assignment operator, one is declared implicitly.
2687 // The implicitly-defined copy assignment operator for a class X
2688 // will have the form
2689 //
2690 // X& X::operator=(const X&)
2691 //
2692 // if
2693 bool HasConstCopyAssignment = true;
2694
2695 // -- each direct base class B of X has a copy assignment operator
2696 // whose parameter is of type const B&, const volatile B& or B,
2697 // and
2698 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2699 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
Sebastian Redl1054fae2009-10-25 17:03:50 +00002700 assert(!Base->getType()->isDependentType() &&
2701 "Cannot generate implicit members for class with dependent bases.");
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002702 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002703 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002704 const CXXMethodDecl *MD = 0;
Mike Stump11289f42009-09-09 15:08:12 +00002705 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002706 MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002707 }
2708
2709 // -- for all the nonstatic data members of X that are of a class
2710 // type M (or array thereof), each such class type has a copy
2711 // assignment operator whose parameter is of type const M&,
2712 // const volatile M& or M.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002713 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2714 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002715 ++Field) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002716 QualType FieldType = (*Field)->getType();
2717 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2718 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002719 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002720 const CXXRecordDecl *FieldClassDecl
2721 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002722 const CXXMethodDecl *MD = 0;
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002723 HasConstCopyAssignment
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002724 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002725 }
2726 }
2727
2728 // Otherwise, the implicitly declared copy assignment operator will
2729 // have the form
2730 //
2731 // X& X::operator=(X&)
2732 QualType ArgType = ClassType;
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002733 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002734 if (HasConstCopyAssignment)
2735 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002736 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002737
2738 // An implicitly-declared copy assignment operator is an inline public
2739 // member of its class.
2740 DeclarationName Name =
2741 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2742 CXXMethodDecl *CopyAssignment =
2743 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2744 Context.getFunctionType(RetType, &ArgType, 1,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002745 false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002746 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002747 false, 0, 0,
2748 FunctionType::ExtInfo()),
Douglas Gregorc4df4072010-04-19 22:54:31 +00002749 /*TInfo=*/0, /*isStatic=*/false,
2750 /*StorageClassAsWritten=*/FunctionDecl::None,
2751 /*isInline=*/true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002752 CopyAssignment->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002753 CopyAssignment->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002754 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00002755 CopyAssignment->setCopyAssignment(true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002756
2757 // Add the parameter to the operator.
2758 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2759 ClassDecl->getLocation(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00002760 /*Id=*/0,
John McCallbcd03502009-12-07 02:54:59 +00002761 ArgType, /*TInfo=*/0,
Douglas Gregorc4df4072010-04-19 22:54:31 +00002762 VarDecl::None,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002763 VarDecl::None, 0);
Douglas Gregord5058122010-02-11 01:19:42 +00002764 CopyAssignment->setParams(&FromParam, 1);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002765
2766 // Don't call addedAssignmentOperator. There is no way to distinguish an
2767 // implicit from an explicit assignment operator.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002768 if (S)
2769 PushOnScopeChains(CopyAssignment, S, true);
2770 else
2771 ClassDecl->addDecl(CopyAssignment);
Eli Friedman81bce6b2009-12-02 06:59:20 +00002772 AddOverriddenMethods(ClassDecl, CopyAssignment);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002773 }
2774
Douglas Gregor1349b452008-12-15 21:24:18 +00002775 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002776 // C++ [class.dtor]p2:
2777 // If a class has no user-declared destructor, a destructor is
2778 // declared implicitly. An implicitly-declared destructor is an
2779 // inline public member of its class.
John McCall58f10c32010-03-11 09:03:00 +00002780 QualType Ty = Context.getFunctionType(Context.VoidTy,
2781 0, 0, false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002782 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002783 false, 0, 0, FunctionType::ExtInfo());
John McCall58f10c32010-03-11 09:03:00 +00002784
Mike Stump11289f42009-09-09 15:08:12 +00002785 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002786 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00002787 CXXDestructorDecl *Destructor
Douglas Gregor831c93f2008-11-05 20:51:48 +00002788 = CXXDestructorDecl::Create(Context, ClassDecl,
John McCall58f10c32010-03-11 09:03:00 +00002789 ClassDecl->getLocation(), Name, Ty,
Douglas Gregor831c93f2008-11-05 20:51:48 +00002790 /*isInline=*/true,
2791 /*isImplicitlyDeclared=*/true);
2792 Destructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002793 Destructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002794 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregorb93b6062010-04-12 17:09:20 +00002795 if (S)
2796 PushOnScopeChains(Destructor, S, true);
2797 else
2798 ClassDecl->addDecl(Destructor);
John McCall58f10c32010-03-11 09:03:00 +00002799
2800 // This could be uniqued if it ever proves significant.
2801 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Anders Carlsson859d7bf2009-11-26 21:25:09 +00002802
2803 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor831c93f2008-11-05 20:51:48 +00002804 }
Douglas Gregor05379422008-11-03 17:51:48 +00002805}
2806
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002807void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002808 Decl *D = TemplateD.getAs<Decl>();
2809 if (!D)
2810 return;
2811
2812 TemplateParameterList *Params = 0;
2813 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2814 Params = Template->getTemplateParameters();
2815 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2816 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2817 Params = PartialSpec->getTemplateParameters();
2818 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002819 return;
2820
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002821 for (TemplateParameterList::iterator Param = Params->begin(),
2822 ParamEnd = Params->end();
2823 Param != ParamEnd; ++Param) {
2824 NamedDecl *Named = cast<NamedDecl>(*Param);
2825 if (Named->getDeclName()) {
2826 S->AddDecl(DeclPtrTy::make(Named));
2827 IdResolver.AddDecl(Named);
2828 }
2829 }
2830}
2831
John McCall6df5fef2009-12-19 10:49:29 +00002832void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2833 if (!RecordD) return;
2834 AdjustDeclIfTemplate(RecordD);
2835 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2836 PushDeclContext(S, Record);
2837}
2838
2839void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2840 if (!RecordD) return;
2841 PopDeclContext();
2842}
2843
Douglas Gregor4d87df52008-12-16 21:30:33 +00002844/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2845/// parsing a top-level (non-nested) C++ class, and we are now
2846/// parsing those parts of the given Method declaration that could
2847/// not be parsed earlier (C++ [class.mem]p2), such as default
2848/// arguments. This action should enter the scope of the given
2849/// Method declaration as if we had just parsed the qualified method
2850/// name. However, it should not bring the parameters into scope;
2851/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002852void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002853}
2854
2855/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2856/// C++ method declaration. We're (re-)introducing the given
2857/// function parameter into scope for use in parsing later parts of
2858/// the method declaration. For example, we could see an
2859/// ActOnParamDefaultArgument event for this parameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002860void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002861 if (!ParamD)
2862 return;
Mike Stump11289f42009-09-09 15:08:12 +00002863
Chris Lattner83f095c2009-03-28 19:18:32 +00002864 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +00002865
2866 // If this parameter has an unparsed default argument, clear it out
2867 // to make way for the parsed default argument.
2868 if (Param->hasUnparsedDefaultArg())
2869 Param->setDefaultArg(0);
2870
Chris Lattner83f095c2009-03-28 19:18:32 +00002871 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002872 if (Param->getDeclName())
2873 IdResolver.AddDecl(Param);
2874}
2875
2876/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2877/// processing the delayed method declaration for Method. The method
2878/// declaration is now considered finished. There may be a separate
2879/// ActOnStartOfFunctionDef action later (not necessarily
2880/// immediately!) for this method, if it was also defined inside the
2881/// class body.
Chris Lattner83f095c2009-03-28 19:18:32 +00002882void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002883 if (!MethodD)
2884 return;
Mike Stump11289f42009-09-09 15:08:12 +00002885
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002886 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002887
Chris Lattner83f095c2009-03-28 19:18:32 +00002888 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor4d87df52008-12-16 21:30:33 +00002889
2890 // Now that we have our default arguments, check the constructor
2891 // again. It could produce additional diagnostics or affect whether
2892 // the class has implicitly-declared destructors, among other
2893 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002894 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2895 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002896
2897 // Check the default arguments, which we may have added.
2898 if (!Method->isInvalidDecl())
2899 CheckCXXDefaultArguments(Method);
2900}
2901
Douglas Gregor831c93f2008-11-05 20:51:48 +00002902/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002903/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002904/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002905/// emit diagnostics and set the invalid bit to true. In any case, the type
2906/// will be updated to reflect a well-formed type for the constructor and
2907/// returned.
2908QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2909 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002910 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002911
2912 // C++ [class.ctor]p3:
2913 // A constructor shall not be virtual (10.3) or static (9.4). A
2914 // constructor can be invoked for a const, volatile or const
2915 // volatile object. A constructor shall not be declared const,
2916 // volatile, or const volatile (9.3.2).
2917 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002918 if (!D.isInvalidType())
2919 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2920 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2921 << SourceRange(D.getIdentifierLoc());
2922 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002923 }
2924 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002925 if (!D.isInvalidType())
2926 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2927 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2928 << SourceRange(D.getIdentifierLoc());
2929 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002930 SC = FunctionDecl::None;
2931 }
Mike Stump11289f42009-09-09 15:08:12 +00002932
Chris Lattner38378bf2009-04-25 08:28:21 +00002933 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2934 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002935 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002936 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2937 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002938 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002939 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2940 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002941 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002942 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2943 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002944 }
Mike Stump11289f42009-09-09 15:08:12 +00002945
Douglas Gregor831c93f2008-11-05 20:51:48 +00002946 // Rebuild the function type "R" without any type qualifiers (in
2947 // case any of the errors above fired) and with "void" as the
2948 // return type, since constructors don't have return types. We
2949 // *always* have to do this, because GetTypeForDeclarator will
2950 // put in a result type of "int" when none was specified.
John McCall9dd450b2009-09-21 23:43:11 +00002951 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002952 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2953 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002954 Proto->isVariadic(), 0,
2955 Proto->hasExceptionSpec(),
2956 Proto->hasAnyExceptionSpec(),
2957 Proto->getNumExceptions(),
2958 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002959 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002960}
2961
Douglas Gregor4d87df52008-12-16 21:30:33 +00002962/// CheckConstructor - Checks a fully-formed constructor for
2963/// well-formedness, issuing any diagnostics required. Returns true if
2964/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002965void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002966 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002967 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2968 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002969 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002970
2971 // C++ [class.copy]p3:
2972 // A declaration of a constructor for a class X is ill-formed if
2973 // its first parameter is of type (optionally cv-qualified) X and
2974 // either there are no other parameters or else all other
2975 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002976 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002977 ((Constructor->getNumParams() == 1) ||
2978 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002979 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2980 Constructor->getTemplateSpecializationKind()
2981 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002982 QualType ParamType = Constructor->getParamDecl(0)->getType();
2983 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2984 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002985 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
2986 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregora771f462010-03-31 17:46:05 +00002987 << FixItHint::CreateInsertion(ParamLoc, " const &");
Douglas Gregorffe14e32009-11-14 01:20:54 +00002988
2989 // FIXME: Rather that making the constructor invalid, we should endeavor
2990 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002991 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002992 }
2993 }
Mike Stump11289f42009-09-09 15:08:12 +00002994
John McCall43314ab2010-04-13 07:45:41 +00002995 // Notify the class that we've added a constructor. In principle we
2996 // don't need to do this for out-of-line declarations; in practice
2997 // we only instantiate the most recent declaration of a method, so
2998 // we have to call this for everything but friends.
2999 if (!Constructor->getFriendObjectKind())
3000 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00003001}
3002
Anders Carlsson26a807d2009-11-30 21:24:50 +00003003/// CheckDestructor - Checks a fully-formed destructor for well-formedness,
3004/// issuing any diagnostics required. Returns true on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00003005bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00003006 CXXRecordDecl *RD = Destructor->getParent();
3007
3008 if (Destructor->isVirtual()) {
3009 SourceLocation Loc;
3010
3011 if (!Destructor->isImplicit())
3012 Loc = Destructor->getLocation();
3013 else
3014 Loc = RD->getLocation();
3015
3016 // If we have a virtual destructor, look up the deallocation function
3017 FunctionDecl *OperatorDelete = 0;
3018 DeclarationName Name =
3019 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00003020 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00003021 return true;
3022
3023 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00003024 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00003025
3026 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00003027}
3028
Mike Stump11289f42009-09-09 15:08:12 +00003029static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00003030FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3031 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3032 FTI.ArgInfo[0].Param &&
3033 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
3034}
3035
Douglas Gregor831c93f2008-11-05 20:51:48 +00003036/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3037/// the well-formednes of the destructor declarator @p D with type @p
3038/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00003039/// emit diagnostics and set the declarator to invalid. Even if this happens,
3040/// will be updated to reflect a well-formed type for the destructor and
3041/// returned.
3042QualType Sema::CheckDestructorDeclarator(Declarator &D,
3043 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003044 // C++ [class.dtor]p1:
3045 // [...] A typedef-name that names a class is a class-name
3046 // (7.1.3); however, a typedef-name that names a class shall not
3047 // be used as the identifier in the declarator for a destructor
3048 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00003049 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Chris Lattner38378bf2009-04-25 08:28:21 +00003050 if (isa<TypedefType>(DeclaratorType)) {
3051 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00003052 << DeclaratorType;
Chris Lattner38378bf2009-04-25 08:28:21 +00003053 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003054 }
3055
3056 // C++ [class.dtor]p2:
3057 // A destructor is used to destroy objects of its class type. A
3058 // destructor takes no parameters, and no return type can be
3059 // specified for it (not even void). The address of a destructor
3060 // shall not be taken. A destructor shall not be static. A
3061 // destructor can be invoked for a const, volatile or const
3062 // volatile object. A destructor shall not be declared const,
3063 // volatile or const volatile (9.3.2).
3064 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00003065 if (!D.isInvalidType())
3066 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3067 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3068 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003069 SC = FunctionDecl::None;
Chris Lattner38378bf2009-04-25 08:28:21 +00003070 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003071 }
Chris Lattner38378bf2009-04-25 08:28:21 +00003072 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003073 // Destructors don't have return types, but the parser will
3074 // happily parse something like:
3075 //
3076 // class X {
3077 // float ~X();
3078 // };
3079 //
3080 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00003081 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3082 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3083 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003084 }
Mike Stump11289f42009-09-09 15:08:12 +00003085
Chris Lattner38378bf2009-04-25 08:28:21 +00003086 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3087 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003088 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003089 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3090 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003091 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003092 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3093 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003094 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003095 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3096 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003097 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003098 }
3099
3100 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003101 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003102 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3103
3104 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003105 FTI.freeArgs();
3106 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003107 }
3108
Mike Stump11289f42009-09-09 15:08:12 +00003109 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003110 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003111 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003112 D.setInvalidType();
3113 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003114
3115 // Rebuild the function type "R" without any type qualifiers or
3116 // parameters (in case any of the errors above fired) and with
3117 // "void" as the return type, since destructors don't have return
3118 // types. We *always* have to do this, because GetTypeForDeclarator
3119 // will put in a result type of "int" when none was specified.
Douglas Gregor36c569f2010-02-21 22:15:06 +00003120 // FIXME: Exceptions!
3121 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00003122 false, false, 0, 0, FunctionType::ExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003123}
3124
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003125/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3126/// well-formednes of the conversion function declarator @p D with
3127/// type @p R. If there are any errors in the declarator, this routine
3128/// will emit diagnostics and return true. Otherwise, it will return
3129/// false. Either way, the type @p R will be updated to reflect a
3130/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003131void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003132 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003133 // C++ [class.conv.fct]p1:
3134 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003135 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003136 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003137 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003138 if (!D.isInvalidType())
3139 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3140 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3141 << SourceRange(D.getIdentifierLoc());
3142 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003143 SC = FunctionDecl::None;
3144 }
John McCall212fa2e2010-04-13 00:04:31 +00003145
3146 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3147
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003148 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003149 // Conversion functions don't have return types, but the parser will
3150 // happily parse something like:
3151 //
3152 // class X {
3153 // float operator bool();
3154 // };
3155 //
3156 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003157 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3158 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3159 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003160 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003161 }
3162
John McCall212fa2e2010-04-13 00:04:31 +00003163 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3164
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003165 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003166 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003167 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3168
3169 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003170 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003171 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003172 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003173 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003174 D.setInvalidType();
3175 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003176
John McCall212fa2e2010-04-13 00:04:31 +00003177 // Diagnose "&operator bool()" and other such nonsense. This
3178 // is actually a gcc extension which we don't support.
3179 if (Proto->getResultType() != ConvType) {
3180 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3181 << Proto->getResultType();
3182 D.setInvalidType();
3183 ConvType = Proto->getResultType();
3184 }
3185
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003186 // C++ [class.conv.fct]p4:
3187 // The conversion-type-id shall not represent a function type nor
3188 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003189 if (ConvType->isArrayType()) {
3190 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3191 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003192 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003193 } else if (ConvType->isFunctionType()) {
3194 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3195 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003196 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003197 }
3198
3199 // Rebuild the function type "R" without any parameters (in case any
3200 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003201 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003202 if (D.isInvalidType()) {
3203 R = Context.getFunctionType(ConvType, 0, 0, false,
3204 Proto->getTypeQuals(),
3205 Proto->hasExceptionSpec(),
3206 Proto->hasAnyExceptionSpec(),
3207 Proto->getNumExceptions(),
3208 Proto->exception_begin(),
3209 Proto->getExtInfo());
3210 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003211
Douglas Gregor5fb53972009-01-14 15:45:31 +00003212 // C++0x explicit conversion operators.
3213 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003214 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003215 diag::warn_explicit_conversion_functions)
3216 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003217}
3218
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003219/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3220/// the declaration of the given C++ conversion function. This routine
3221/// is responsible for recording the conversion function in the C++
3222/// class, if possible.
Chris Lattner83f095c2009-03-28 19:18:32 +00003223Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003224 assert(Conversion && "Expected to receive a conversion function declaration");
3225
Douglas Gregor4287b372008-12-12 08:25:50 +00003226 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003227
3228 // Make sure we aren't redeclaring the conversion function.
3229 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003230
3231 // C++ [class.conv.fct]p1:
3232 // [...] A conversion function is never used to convert a
3233 // (possibly cv-qualified) object to the (possibly cv-qualified)
3234 // same object type (or a reference to it), to a (possibly
3235 // cv-qualified) base class of that type (or a reference to it),
3236 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003237 // FIXME: Suppress this warning if the conversion function ends up being a
3238 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003239 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003240 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003241 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003242 ConvType = ConvTypeRef->getPointeeType();
3243 if (ConvType->isRecordType()) {
3244 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3245 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003246 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003247 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003248 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003249 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003250 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003251 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003252 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003253 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003254 }
3255
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003256 if (Conversion->getPrimaryTemplate()) {
3257 // ignore specializations
3258 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003259 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003260 = Conversion->getDescribedFunctionTemplate()) {
3261 if (ClassDecl->replaceConversion(
3262 ConversionTemplate->getPreviousDeclaration(),
3263 ConversionTemplate))
3264 return DeclPtrTy::make(ConversionTemplate);
3265 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3266 Conversion))
John McCalld14a8642009-11-21 08:51:07 +00003267 return DeclPtrTy::make(Conversion);
Douglas Gregor1dc98262008-12-26 15:00:45 +00003268 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003269 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003270 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003271 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003272 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003273 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003274
Chris Lattner83f095c2009-03-28 19:18:32 +00003275 return DeclPtrTy::make(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003276}
3277
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003278//===----------------------------------------------------------------------===//
3279// Namespace Handling
3280//===----------------------------------------------------------------------===//
3281
3282/// ActOnStartNamespaceDef - This is called at the start of a namespace
3283/// definition.
Chris Lattner83f095c2009-03-28 19:18:32 +00003284Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3285 SourceLocation IdentLoc,
3286 IdentifierInfo *II,
Anders Carlssona7bcade2010-02-07 01:09:23 +00003287 SourceLocation LBrace,
3288 AttributeList *AttrList) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003289 NamespaceDecl *Namespc =
3290 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3291 Namespc->setLBracLoc(LBrace);
3292
3293 Scope *DeclRegionScope = NamespcScope->getParent();
3294
Anders Carlssona7bcade2010-02-07 01:09:23 +00003295 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3296
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003297 if (II) {
3298 // C++ [namespace.def]p2:
3299 // The identifier in an original-namespace-definition shall not have been
3300 // previously defined in the declarative region in which the
3301 // original-namespace-definition appears. The identifier in an
3302 // original-namespace-definition is the name of the namespace. Subsequently
3303 // in that declarative region, it is treated as an original-namespace-name.
3304
John McCall9f3059a2009-10-09 21:13:30 +00003305 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003306 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003307 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003308
Douglas Gregor91f84212008-12-11 16:49:14 +00003309 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3310 // This is an extended namespace definition.
3311 // Attach this namespace decl to the chain of extended namespace
3312 // definitions.
3313 OrigNS->setNextNamespace(Namespc);
3314 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003315
Mike Stump11289f42009-09-09 15:08:12 +00003316 // Remove the previous declaration from the scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003317 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003318 IdResolver.RemoveDecl(OrigNS);
Chris Lattner83f095c2009-03-28 19:18:32 +00003319 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003320 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003321 } else if (PrevDecl) {
3322 // This is an invalid name redefinition.
3323 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3324 << Namespc->getDeclName();
3325 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3326 Namespc->setInvalidDecl();
3327 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003328 } else if (II->isStr("std") &&
3329 CurContext->getLookupContext()->isTranslationUnit()) {
3330 // This is the first "real" definition of the namespace "std", so update
3331 // our cache of the "std" namespace to point at this definition.
3332 if (StdNamespace) {
3333 // We had already defined a dummy namespace "std". Link this new
3334 // namespace definition to the dummy namespace "std".
3335 StdNamespace->setNextNamespace(Namespc);
3336 StdNamespace->setLocation(IdentLoc);
3337 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
3338 }
3339
3340 // Make our StdNamespace cache point at the first real definition of the
3341 // "std" namespace.
3342 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003343 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003344
3345 PushOnScopeChains(Namespc, DeclRegionScope);
3346 } else {
John McCall4fa53422009-10-01 00:25:31 +00003347 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003348 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003349
3350 // Link the anonymous namespace into its parent.
3351 NamespaceDecl *PrevDecl;
3352 DeclContext *Parent = CurContext->getLookupContext();
3353 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3354 PrevDecl = TU->getAnonymousNamespace();
3355 TU->setAnonymousNamespace(Namespc);
3356 } else {
3357 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3358 PrevDecl = ND->getAnonymousNamespace();
3359 ND->setAnonymousNamespace(Namespc);
3360 }
3361
3362 // Link the anonymous namespace with its previous declaration.
3363 if (PrevDecl) {
3364 assert(PrevDecl->isAnonymousNamespace());
3365 assert(!PrevDecl->getNextNamespace());
3366 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3367 PrevDecl->setNextNamespace(Namespc);
3368 }
John McCall4fa53422009-10-01 00:25:31 +00003369
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003370 CurContext->addDecl(Namespc);
3371
John McCall4fa53422009-10-01 00:25:31 +00003372 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3373 // behaves as if it were replaced by
3374 // namespace unique { /* empty body */ }
3375 // using namespace unique;
3376 // namespace unique { namespace-body }
3377 // where all occurrences of 'unique' in a translation unit are
3378 // replaced by the same identifier and this identifier differs
3379 // from all other identifiers in the entire program.
3380
3381 // We just create the namespace with an empty name and then add an
3382 // implicit using declaration, just like the standard suggests.
3383 //
3384 // CodeGen enforces the "universally unique" aspect by giving all
3385 // declarations semantically contained within an anonymous
3386 // namespace internal linkage.
3387
John McCall0db42252009-12-16 02:06:49 +00003388 if (!PrevDecl) {
3389 UsingDirectiveDecl* UD
3390 = UsingDirectiveDecl::Create(Context, CurContext,
3391 /* 'using' */ LBrace,
3392 /* 'namespace' */ SourceLocation(),
3393 /* qualifier */ SourceRange(),
3394 /* NNS */ NULL,
3395 /* identifier */ SourceLocation(),
3396 Namespc,
3397 /* Ancestor */ CurContext);
3398 UD->setImplicit();
3399 CurContext->addDecl(UD);
3400 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003401 }
3402
3403 // Although we could have an invalid decl (i.e. the namespace name is a
3404 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003405 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3406 // for the namespace has the declarations that showed up in that particular
3407 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003408 PushDeclContext(NamespcScope, Namespc);
Chris Lattner83f095c2009-03-28 19:18:32 +00003409 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003410}
3411
Sebastian Redla6602e92009-11-23 15:34:23 +00003412/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3413/// is a namespace alias, returns the namespace it points to.
3414static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3415 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3416 return AD->getNamespace();
3417 return dyn_cast_or_null<NamespaceDecl>(D);
3418}
3419
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003420/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3421/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattner83f095c2009-03-28 19:18:32 +00003422void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3423 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003424 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3425 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3426 Namespc->setRBracLoc(RBrace);
3427 PopDeclContext();
3428}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003429
Chris Lattner83f095c2009-03-28 19:18:32 +00003430Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3431 SourceLocation UsingLoc,
3432 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003433 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003434 SourceLocation IdentLoc,
3435 IdentifierInfo *NamespcName,
3436 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003437 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3438 assert(NamespcName && "Invalid NamespcName.");
3439 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003440 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003441
Douglas Gregor889ceb72009-02-03 19:21:40 +00003442 UsingDirectiveDecl *UDir = 0;
Douglas Gregord7c4d982008-12-30 03:27:21 +00003443
Douglas Gregor34074322009-01-14 22:20:51 +00003444 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003445 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3446 LookupParsedName(R, S, &SS);
3447 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00003448 return DeclPtrTy();
John McCall27b18f82009-11-17 02:14:36 +00003449
John McCall9f3059a2009-10-09 21:13:30 +00003450 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003451 NamedDecl *Named = R.getFoundDecl();
3452 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3453 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003454 // C++ [namespace.udir]p1:
3455 // A using-directive specifies that the names in the nominated
3456 // namespace can be used in the scope in which the
3457 // using-directive appears after the using-directive. During
3458 // unqualified name lookup (3.4.1), the names appear as if they
3459 // were declared in the nearest enclosing namespace which
3460 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003461 // namespace. [Note: in this context, "contains" means "contains
3462 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003463
3464 // Find enclosing context containing both using-directive and
3465 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003466 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003467 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3468 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3469 CommonAncestor = CommonAncestor->getParent();
3470
Sebastian Redla6602e92009-11-23 15:34:23 +00003471 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003472 SS.getRange(),
3473 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003474 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003475 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003476 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003477 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003478 }
3479
Douglas Gregor889ceb72009-02-03 19:21:40 +00003480 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003481 delete AttrList;
Chris Lattner83f095c2009-03-28 19:18:32 +00003482 return DeclPtrTy::make(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003483}
3484
3485void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3486 // If scope has associated entity, then using directive is at namespace
3487 // or translation unit scope. We add UsingDirectiveDecls, into
3488 // it's lookup structure.
3489 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003490 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003491 else
3492 // Otherwise it is block-sope. using-directives will affect lookup
3493 // only to the end of scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003494 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregord7c4d982008-12-30 03:27:21 +00003495}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003496
Douglas Gregorfec52632009-06-20 00:51:54 +00003497
3498Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003499 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003500 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003501 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003502 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003503 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003504 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003505 bool IsTypeName,
3506 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003507 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003508
Douglas Gregor220f4272009-11-04 16:30:06 +00003509 switch (Name.getKind()) {
3510 case UnqualifiedId::IK_Identifier:
3511 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003512 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003513 case UnqualifiedId::IK_ConversionFunctionId:
3514 break;
3515
3516 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003517 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003518 // C++0x inherited constructors.
3519 if (getLangOptions().CPlusPlus0x) break;
3520
Douglas Gregor220f4272009-11-04 16:30:06 +00003521 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3522 << SS.getRange();
3523 return DeclPtrTy();
3524
3525 case UnqualifiedId::IK_DestructorName:
3526 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3527 << SS.getRange();
3528 return DeclPtrTy();
3529
3530 case UnqualifiedId::IK_TemplateId:
3531 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3532 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3533 return DeclPtrTy();
3534 }
3535
3536 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall3969e302009-12-08 07:46:18 +00003537 if (!TargetName)
3538 return DeclPtrTy();
3539
John McCalla0097262009-12-11 02:10:03 +00003540 // Warn about using declarations.
3541 // TODO: store that the declaration was written without 'using' and
3542 // talk about access decls instead of using decls in the
3543 // diagnostics.
3544 if (!HasUsingKeyword) {
3545 UsingLoc = Name.getSourceRange().getBegin();
3546
3547 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003548 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003549 }
3550
John McCall3f746822009-11-17 05:59:44 +00003551 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003552 Name.getSourceRange().getBegin(),
John McCalle61f2ba2009-11-18 02:36:19 +00003553 TargetName, AttrList,
3554 /* IsInstantiation */ false,
3555 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003556 if (UD)
3557 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003558
Anders Carlsson696a3f12009-08-28 05:40:36 +00003559 return DeclPtrTy::make(UD);
3560}
3561
John McCall84d87672009-12-10 09:41:52 +00003562/// Determines whether to create a using shadow decl for a particular
3563/// decl, given the set of decls existing prior to this using lookup.
3564bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3565 const LookupResult &Previous) {
3566 // Diagnose finding a decl which is not from a base class of the
3567 // current class. We do this now because there are cases where this
3568 // function will silently decide not to build a shadow decl, which
3569 // will pre-empt further diagnostics.
3570 //
3571 // We don't need to do this in C++0x because we do the check once on
3572 // the qualifier.
3573 //
3574 // FIXME: diagnose the following if we care enough:
3575 // struct A { int foo; };
3576 // struct B : A { using A::foo; };
3577 // template <class T> struct C : A {};
3578 // template <class T> struct D : C<T> { using B::foo; } // <---
3579 // This is invalid (during instantiation) in C++03 because B::foo
3580 // resolves to the using decl in B, which is not a base class of D<T>.
3581 // We can't diagnose it immediately because C<T> is an unknown
3582 // specialization. The UsingShadowDecl in D<T> then points directly
3583 // to A::foo, which will look well-formed when we instantiate.
3584 // The right solution is to not collapse the shadow-decl chain.
3585 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3586 DeclContext *OrigDC = Orig->getDeclContext();
3587
3588 // Handle enums and anonymous structs.
3589 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3590 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3591 while (OrigRec->isAnonymousStructOrUnion())
3592 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3593
3594 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3595 if (OrigDC == CurContext) {
3596 Diag(Using->getLocation(),
3597 diag::err_using_decl_nested_name_specifier_is_current_class)
3598 << Using->getNestedNameRange();
3599 Diag(Orig->getLocation(), diag::note_using_decl_target);
3600 return true;
3601 }
3602
3603 Diag(Using->getNestedNameRange().getBegin(),
3604 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3605 << Using->getTargetNestedNameDecl()
3606 << cast<CXXRecordDecl>(CurContext)
3607 << Using->getNestedNameRange();
3608 Diag(Orig->getLocation(), diag::note_using_decl_target);
3609 return true;
3610 }
3611 }
3612
3613 if (Previous.empty()) return false;
3614
3615 NamedDecl *Target = Orig;
3616 if (isa<UsingShadowDecl>(Target))
3617 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3618
John McCalla17e83e2009-12-11 02:33:26 +00003619 // If the target happens to be one of the previous declarations, we
3620 // don't have a conflict.
3621 //
3622 // FIXME: but we might be increasing its access, in which case we
3623 // should redeclare it.
3624 NamedDecl *NonTag = 0, *Tag = 0;
3625 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3626 I != E; ++I) {
3627 NamedDecl *D = (*I)->getUnderlyingDecl();
3628 if (D->getCanonicalDecl() == Target->getCanonicalDecl())
3629 return false;
3630
3631 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3632 }
3633
John McCall84d87672009-12-10 09:41:52 +00003634 if (Target->isFunctionOrFunctionTemplate()) {
3635 FunctionDecl *FD;
3636 if (isa<FunctionTemplateDecl>(Target))
3637 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3638 else
3639 FD = cast<FunctionDecl>(Target);
3640
3641 NamedDecl *OldDecl = 0;
3642 switch (CheckOverload(FD, Previous, OldDecl)) {
3643 case Ovl_Overload:
3644 return false;
3645
3646 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003647 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003648 break;
3649
3650 // We found a decl with the exact signature.
3651 case Ovl_Match:
3652 if (isa<UsingShadowDecl>(OldDecl)) {
3653 // Silently ignore the possible conflict.
3654 return false;
3655 }
3656
3657 // If we're in a record, we want to hide the target, so we
3658 // return true (without a diagnostic) to tell the caller not to
3659 // build a shadow decl.
3660 if (CurContext->isRecord())
3661 return true;
3662
3663 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003664 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003665 break;
3666 }
3667
3668 Diag(Target->getLocation(), diag::note_using_decl_target);
3669 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3670 return true;
3671 }
3672
3673 // Target is not a function.
3674
John McCall84d87672009-12-10 09:41:52 +00003675 if (isa<TagDecl>(Target)) {
3676 // No conflict between a tag and a non-tag.
3677 if (!Tag) return false;
3678
John McCalle29c5cd2009-12-10 19:51:03 +00003679 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003680 Diag(Target->getLocation(), diag::note_using_decl_target);
3681 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3682 return true;
3683 }
3684
3685 // No conflict between a tag and a non-tag.
3686 if (!NonTag) return false;
3687
John McCalle29c5cd2009-12-10 19:51:03 +00003688 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003689 Diag(Target->getLocation(), diag::note_using_decl_target);
3690 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3691 return true;
3692}
3693
John McCall3f746822009-11-17 05:59:44 +00003694/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003695UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003696 UsingDecl *UD,
3697 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003698
3699 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003700 NamedDecl *Target = Orig;
3701 if (isa<UsingShadowDecl>(Target)) {
3702 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3703 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003704 }
3705
3706 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003707 = UsingShadowDecl::Create(Context, CurContext,
3708 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003709 UD->addShadowDecl(Shadow);
3710
3711 if (S)
John McCall3969e302009-12-08 07:46:18 +00003712 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003713 else
John McCall3969e302009-12-08 07:46:18 +00003714 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003715 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003716
John McCallda4458e2010-03-31 01:36:47 +00003717 // Register it as a conversion if appropriate.
3718 if (Shadow->getDeclName().getNameKind()
3719 == DeclarationName::CXXConversionFunctionName)
3720 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3721
John McCall3969e302009-12-08 07:46:18 +00003722 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3723 Shadow->setInvalidDecl();
3724
John McCall84d87672009-12-10 09:41:52 +00003725 return Shadow;
3726}
John McCall3969e302009-12-08 07:46:18 +00003727
John McCall84d87672009-12-10 09:41:52 +00003728/// Hides a using shadow declaration. This is required by the current
3729/// using-decl implementation when a resolvable using declaration in a
3730/// class is followed by a declaration which would hide or override
3731/// one or more of the using decl's targets; for example:
3732///
3733/// struct Base { void foo(int); };
3734/// struct Derived : Base {
3735/// using Base::foo;
3736/// void foo(int);
3737/// };
3738///
3739/// The governing language is C++03 [namespace.udecl]p12:
3740///
3741/// When a using-declaration brings names from a base class into a
3742/// derived class scope, member functions in the derived class
3743/// override and/or hide member functions with the same name and
3744/// parameter types in a base class (rather than conflicting).
3745///
3746/// There are two ways to implement this:
3747/// (1) optimistically create shadow decls when they're not hidden
3748/// by existing declarations, or
3749/// (2) don't create any shadow decls (or at least don't make them
3750/// visible) until we've fully parsed/instantiated the class.
3751/// The problem with (1) is that we might have to retroactively remove
3752/// a shadow decl, which requires several O(n) operations because the
3753/// decl structures are (very reasonably) not designed for removal.
3754/// (2) avoids this but is very fiddly and phase-dependent.
3755void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003756 if (Shadow->getDeclName().getNameKind() ==
3757 DeclarationName::CXXConversionFunctionName)
3758 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3759
John McCall84d87672009-12-10 09:41:52 +00003760 // Remove it from the DeclContext...
3761 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003762
John McCall84d87672009-12-10 09:41:52 +00003763 // ...and the scope, if applicable...
3764 if (S) {
3765 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3766 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003767 }
3768
John McCall84d87672009-12-10 09:41:52 +00003769 // ...and the using decl.
3770 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3771
3772 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003773 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003774}
3775
John McCalle61f2ba2009-11-18 02:36:19 +00003776/// Builds a using declaration.
3777///
3778/// \param IsInstantiation - Whether this call arises from an
3779/// instantiation of an unresolved using declaration. We treat
3780/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003781NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3782 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003783 CXXScopeSpec &SS,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003784 SourceLocation IdentLoc,
3785 DeclarationName Name,
3786 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003787 bool IsInstantiation,
3788 bool IsTypeName,
3789 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003790 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3791 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003792
Anders Carlssonf038fc22009-08-28 05:49:21 +00003793 // FIXME: We ignore attributes for now.
3794 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003795
Anders Carlsson59140b32009-08-28 03:16:11 +00003796 if (SS.isEmpty()) {
3797 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003798 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003799 }
Mike Stump11289f42009-09-09 15:08:12 +00003800
John McCall84d87672009-12-10 09:41:52 +00003801 // Do the redeclaration lookup in the current scope.
3802 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3803 ForRedeclaration);
3804 Previous.setHideTags(false);
3805 if (S) {
3806 LookupName(Previous, S);
3807
3808 // It is really dumb that we have to do this.
3809 LookupResult::Filter F = Previous.makeFilter();
3810 while (F.hasNext()) {
3811 NamedDecl *D = F.next();
3812 if (!isDeclInScope(D, CurContext, S))
3813 F.erase();
3814 }
3815 F.done();
3816 } else {
3817 assert(IsInstantiation && "no scope in non-instantiation");
3818 assert(CurContext->isRecord() && "scope not record in instantiation");
3819 LookupQualifiedName(Previous, CurContext);
3820 }
3821
Mike Stump11289f42009-09-09 15:08:12 +00003822 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003823 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3824
John McCall84d87672009-12-10 09:41:52 +00003825 // Check for invalid redeclarations.
3826 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3827 return 0;
3828
3829 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003830 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3831 return 0;
3832
John McCall84c16cf2009-11-12 03:15:40 +00003833 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003834 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003835 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003836 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003837 // FIXME: not all declaration name kinds are legal here
3838 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3839 UsingLoc, TypenameLoc,
3840 SS.getRange(), NNS,
John McCalle61f2ba2009-11-18 02:36:19 +00003841 IdentLoc, Name);
John McCallb96ec562009-12-04 22:46:56 +00003842 } else {
3843 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3844 UsingLoc, SS.getRange(), NNS,
3845 IdentLoc, Name);
John McCalle61f2ba2009-11-18 02:36:19 +00003846 }
John McCallb96ec562009-12-04 22:46:56 +00003847 } else {
3848 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3849 SS.getRange(), UsingLoc, NNS, Name,
3850 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003851 }
John McCallb96ec562009-12-04 22:46:56 +00003852 D->setAccess(AS);
3853 CurContext->addDecl(D);
3854
3855 if (!LookupContext) return D;
3856 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003857
John McCall0b66eb32010-05-01 00:40:08 +00003858 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003859 UD->setInvalidDecl();
3860 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003861 }
3862
John McCall3969e302009-12-08 07:46:18 +00003863 // Look up the target name.
3864
John McCall27b18f82009-11-17 02:14:36 +00003865 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003866
John McCall3969e302009-12-08 07:46:18 +00003867 // Unlike most lookups, we don't always want to hide tag
3868 // declarations: tag names are visible through the using declaration
3869 // even if hidden by ordinary names, *except* in a dependent context
3870 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003871 if (!IsInstantiation)
3872 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003873
John McCall27b18f82009-11-17 02:14:36 +00003874 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003875
John McCall9f3059a2009-10-09 21:13:30 +00003876 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003877 Diag(IdentLoc, diag::err_no_member)
3878 << Name << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003879 UD->setInvalidDecl();
3880 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003881 }
3882
John McCallb96ec562009-12-04 22:46:56 +00003883 if (R.isAmbiguous()) {
3884 UD->setInvalidDecl();
3885 return UD;
3886 }
Mike Stump11289f42009-09-09 15:08:12 +00003887
John McCalle61f2ba2009-11-18 02:36:19 +00003888 if (IsTypeName) {
3889 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003890 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003891 Diag(IdentLoc, diag::err_using_typename_non_type);
3892 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3893 Diag((*I)->getUnderlyingDecl()->getLocation(),
3894 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003895 UD->setInvalidDecl();
3896 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003897 }
3898 } else {
3899 // If we asked for a non-typename and we got a type, error out,
3900 // but only if this is an instantiation of an unresolved using
3901 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003902 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003903 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3904 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003905 UD->setInvalidDecl();
3906 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003907 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003908 }
3909
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003910 // C++0x N2914 [namespace.udecl]p6:
3911 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003912 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003913 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3914 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003915 UD->setInvalidDecl();
3916 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003917 }
Mike Stump11289f42009-09-09 15:08:12 +00003918
John McCall84d87672009-12-10 09:41:52 +00003919 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3920 if (!CheckUsingShadowDecl(UD, *I, Previous))
3921 BuildUsingShadowDecl(S, UD, *I);
3922 }
John McCall3f746822009-11-17 05:59:44 +00003923
3924 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003925}
3926
John McCall84d87672009-12-10 09:41:52 +00003927/// Checks that the given using declaration is not an invalid
3928/// redeclaration. Note that this is checking only for the using decl
3929/// itself, not for any ill-formedness among the UsingShadowDecls.
3930bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3931 bool isTypeName,
3932 const CXXScopeSpec &SS,
3933 SourceLocation NameLoc,
3934 const LookupResult &Prev) {
3935 // C++03 [namespace.udecl]p8:
3936 // C++0x [namespace.udecl]p10:
3937 // A using-declaration is a declaration and can therefore be used
3938 // repeatedly where (and only where) multiple declarations are
3939 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003940 //
3941 // That's in non-member contexts.
3942 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003943 return false;
3944
3945 NestedNameSpecifier *Qual
3946 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3947
3948 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3949 NamedDecl *D = *I;
3950
3951 bool DTypename;
3952 NestedNameSpecifier *DQual;
3953 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3954 DTypename = UD->isTypeName();
3955 DQual = UD->getTargetNestedNameDecl();
3956 } else if (UnresolvedUsingValueDecl *UD
3957 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3958 DTypename = false;
3959 DQual = UD->getTargetNestedNameSpecifier();
3960 } else if (UnresolvedUsingTypenameDecl *UD
3961 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3962 DTypename = true;
3963 DQual = UD->getTargetNestedNameSpecifier();
3964 } else continue;
3965
3966 // using decls differ if one says 'typename' and the other doesn't.
3967 // FIXME: non-dependent using decls?
3968 if (isTypeName != DTypename) continue;
3969
3970 // using decls differ if they name different scopes (but note that
3971 // template instantiation can cause this check to trigger when it
3972 // didn't before instantiation).
3973 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3974 Context.getCanonicalNestedNameSpecifier(DQual))
3975 continue;
3976
3977 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003978 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003979 return true;
3980 }
3981
3982 return false;
3983}
3984
John McCall3969e302009-12-08 07:46:18 +00003985
John McCallb96ec562009-12-04 22:46:56 +00003986/// Checks that the given nested-name qualifier used in a using decl
3987/// in the current context is appropriately related to the current
3988/// scope. If an error is found, diagnoses it and returns true.
3989bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3990 const CXXScopeSpec &SS,
3991 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00003992 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003993
John McCall3969e302009-12-08 07:46:18 +00003994 if (!CurContext->isRecord()) {
3995 // C++03 [namespace.udecl]p3:
3996 // C++0x [namespace.udecl]p8:
3997 // A using-declaration for a class member shall be a member-declaration.
3998
3999 // If we weren't able to compute a valid scope, it must be a
4000 // dependent class scope.
4001 if (!NamedContext || NamedContext->isRecord()) {
4002 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4003 << SS.getRange();
4004 return true;
4005 }
4006
4007 // Otherwise, everything is known to be fine.
4008 return false;
4009 }
4010
4011 // The current scope is a record.
4012
4013 // If the named context is dependent, we can't decide much.
4014 if (!NamedContext) {
4015 // FIXME: in C++0x, we can diagnose if we can prove that the
4016 // nested-name-specifier does not refer to a base class, which is
4017 // still possible in some cases.
4018
4019 // Otherwise we have to conservatively report that things might be
4020 // okay.
4021 return false;
4022 }
4023
4024 if (!NamedContext->isRecord()) {
4025 // Ideally this would point at the last name in the specifier,
4026 // but we don't have that level of source info.
4027 Diag(SS.getRange().getBegin(),
4028 diag::err_using_decl_nested_name_specifier_is_not_class)
4029 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4030 return true;
4031 }
4032
4033 if (getLangOptions().CPlusPlus0x) {
4034 // C++0x [namespace.udecl]p3:
4035 // In a using-declaration used as a member-declaration, the
4036 // nested-name-specifier shall name a base class of the class
4037 // being defined.
4038
4039 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4040 cast<CXXRecordDecl>(NamedContext))) {
4041 if (CurContext == NamedContext) {
4042 Diag(NameLoc,
4043 diag::err_using_decl_nested_name_specifier_is_current_class)
4044 << SS.getRange();
4045 return true;
4046 }
4047
4048 Diag(SS.getRange().getBegin(),
4049 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4050 << (NestedNameSpecifier*) SS.getScopeRep()
4051 << cast<CXXRecordDecl>(CurContext)
4052 << SS.getRange();
4053 return true;
4054 }
4055
4056 return false;
4057 }
4058
4059 // C++03 [namespace.udecl]p4:
4060 // A using-declaration used as a member-declaration shall refer
4061 // to a member of a base class of the class being defined [etc.].
4062
4063 // Salient point: SS doesn't have to name a base class as long as
4064 // lookup only finds members from base classes. Therefore we can
4065 // diagnose here only if we can prove that that can't happen,
4066 // i.e. if the class hierarchies provably don't intersect.
4067
4068 // TODO: it would be nice if "definitely valid" results were cached
4069 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4070 // need to be repeated.
4071
4072 struct UserData {
4073 llvm::DenseSet<const CXXRecordDecl*> Bases;
4074
4075 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4076 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4077 Data->Bases.insert(Base);
4078 return true;
4079 }
4080
4081 bool hasDependentBases(const CXXRecordDecl *Class) {
4082 return !Class->forallBases(collect, this);
4083 }
4084
4085 /// Returns true if the base is dependent or is one of the
4086 /// accumulated base classes.
4087 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4088 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4089 return !Data->Bases.count(Base);
4090 }
4091
4092 bool mightShareBases(const CXXRecordDecl *Class) {
4093 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4094 }
4095 };
4096
4097 UserData Data;
4098
4099 // Returns false if we find a dependent base.
4100 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4101 return false;
4102
4103 // Returns false if the class has a dependent base or if it or one
4104 // of its bases is present in the base set of the current context.
4105 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4106 return false;
4107
4108 Diag(SS.getRange().getBegin(),
4109 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4110 << (NestedNameSpecifier*) SS.getScopeRep()
4111 << cast<CXXRecordDecl>(CurContext)
4112 << SS.getRange();
4113
4114 return true;
John McCallb96ec562009-12-04 22:46:56 +00004115}
4116
Mike Stump11289f42009-09-09 15:08:12 +00004117Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004118 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004119 SourceLocation AliasLoc,
4120 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004121 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004122 SourceLocation IdentLoc,
4123 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004124
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004125 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004126 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4127 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004128
Anders Carlssondca83c42009-03-28 06:23:46 +00004129 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004130 NamedDecl *PrevDecl
4131 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4132 ForRedeclaration);
4133 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4134 PrevDecl = 0;
4135
4136 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004137 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004138 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004139 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004140 // FIXME: At some point, we'll want to create the (redundant)
4141 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004142 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004143 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004144 return DeclPtrTy();
4145 }
Mike Stump11289f42009-09-09 15:08:12 +00004146
Anders Carlssondca83c42009-03-28 06:23:46 +00004147 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4148 diag::err_redefinition_different_kind;
4149 Diag(AliasLoc, DiagID) << Alias;
4150 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner83f095c2009-03-28 19:18:32 +00004151 return DeclPtrTy();
Anders Carlssondca83c42009-03-28 06:23:46 +00004152 }
4153
John McCall27b18f82009-11-17 02:14:36 +00004154 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00004155 return DeclPtrTy();
Mike Stump11289f42009-09-09 15:08:12 +00004156
John McCall9f3059a2009-10-09 21:13:30 +00004157 if (R.empty()) {
Anders Carlssonac2c9652009-03-28 06:42:02 +00004158 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00004159 return DeclPtrTy();
Anders Carlssonac2c9652009-03-28 06:42:02 +00004160 }
Mike Stump11289f42009-09-09 15:08:12 +00004161
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004162 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004163 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4164 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004165 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004166 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004167
John McCalld8d0d432010-02-16 06:53:13 +00004168 PushOnScopeChains(AliasDecl, S);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00004169 return DeclPtrTy::make(AliasDecl);
Anders Carlsson9205d552009-03-28 05:27:17 +00004170}
4171
Douglas Gregora57478e2010-05-01 15:04:51 +00004172namespace {
4173 /// \brief Scoped object used to handle the state changes required in Sema
4174 /// to implicitly define the body of a C++ member function;
4175 class ImplicitlyDefinedFunctionScope {
4176 Sema &S;
4177 DeclContext *PreviousContext;
4178
4179 public:
4180 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4181 : S(S), PreviousContext(S.CurContext)
4182 {
4183 S.CurContext = Method;
4184 S.PushFunctionScope();
4185 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4186 }
4187
4188 ~ImplicitlyDefinedFunctionScope() {
4189 S.PopExpressionEvaluationContext();
4190 S.PopFunctionOrBlockScope();
4191 S.CurContext = PreviousContext;
4192 }
4193 };
4194}
4195
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004196void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4197 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004198 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
4199 !Constructor->isUsed()) &&
4200 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004201
Anders Carlsson423f5d82010-04-23 16:04:08 +00004202 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004203 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004204
Douglas Gregora57478e2010-05-01 15:04:51 +00004205 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004206 ErrorTrap Trap(*this);
4207 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4208 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004209 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004210 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004211 Constructor->setInvalidDecl();
4212 } else {
4213 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004214 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004215 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004216}
4217
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004218void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004219 CXXDestructorDecl *Destructor) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004220 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
4221 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004222 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004223 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004224
Douglas Gregor54818f02010-05-12 16:39:35 +00004225 if (Destructor->isInvalidDecl())
4226 return;
4227
Douglas Gregora57478e2010-05-01 15:04:51 +00004228 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004229
Douglas Gregor54818f02010-05-12 16:39:35 +00004230 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004231 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4232 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004233
Douglas Gregor54818f02010-05-12 16:39:35 +00004234 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004235 Diag(CurrentLocation, diag::note_member_synthesized_at)
4236 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4237
4238 Destructor->setInvalidDecl();
4239 return;
4240 }
4241
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004242 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004243 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004244}
4245
Douglas Gregorb139cd52010-05-01 20:49:11 +00004246/// \brief Builds a statement that copies the given entity from \p From to
4247/// \c To.
4248///
4249/// This routine is used to copy the members of a class with an
4250/// implicitly-declared copy assignment operator. When the entities being
4251/// copied are arrays, this routine builds for loops to copy them.
4252///
4253/// \param S The Sema object used for type-checking.
4254///
4255/// \param Loc The location where the implicit copy is being generated.
4256///
4257/// \param T The type of the expressions being copied. Both expressions must
4258/// have this type.
4259///
4260/// \param To The expression we are copying to.
4261///
4262/// \param From The expression we are copying from.
4263///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004264/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4265/// Otherwise, it's a non-static member subobject.
4266///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004267/// \param Depth Internal parameter recording the depth of the recursion.
4268///
4269/// \returns A statement or a loop that copies the expressions.
4270static Sema::OwningStmtResult
4271BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4272 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004273 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004274 typedef Sema::OwningStmtResult OwningStmtResult;
4275 typedef Sema::OwningExprResult OwningExprResult;
4276
4277 // C++0x [class.copy]p30:
4278 // Each subobject is assigned in the manner appropriate to its type:
4279 //
4280 // - if the subobject is of class type, the copy assignment operator
4281 // for the class is used (as if by explicit qualification; that is,
4282 // ignoring any possible virtual overriding functions in more derived
4283 // classes);
4284 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4285 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4286
4287 // Look for operator=.
4288 DeclarationName Name
4289 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4290 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4291 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4292
4293 // Filter out any result that isn't a copy-assignment operator.
4294 LookupResult::Filter F = OpLookup.makeFilter();
4295 while (F.hasNext()) {
4296 NamedDecl *D = F.next();
4297 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4298 if (Method->isCopyAssignmentOperator())
4299 continue;
4300
4301 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004302 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004303 F.done();
4304
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004305 // Suppress the protected check (C++ [class.protected]) for each of the
4306 // assignment operators we found. This strange dance is required when
4307 // we're assigning via a base classes's copy-assignment operator. To
4308 // ensure that we're getting the right base class subobject (without
4309 // ambiguities), we need to cast "this" to that subobject type; to
4310 // ensure that we don't go through the virtual call mechanism, we need
4311 // to qualify the operator= name with the base class (see below). However,
4312 // this means that if the base class has a protected copy assignment
4313 // operator, the protected member access check will fail. So, we
4314 // rewrite "protected" access to "public" access in this case, since we
4315 // know by construction that we're calling from a derived class.
4316 if (CopyingBaseSubobject) {
4317 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4318 L != LEnd; ++L) {
4319 if (L.getAccess() == AS_protected)
4320 L.setAccess(AS_public);
4321 }
4322 }
4323
Douglas Gregorb139cd52010-05-01 20:49:11 +00004324 // Create the nested-name-specifier that will be used to qualify the
4325 // reference to operator=; this is required to suppress the virtual
4326 // call mechanism.
4327 CXXScopeSpec SS;
4328 SS.setRange(Loc);
4329 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4330 T.getTypePtr()));
4331
4332 // Create the reference to operator=.
4333 OwningExprResult OpEqualRef
4334 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4335 /*FirstQualifierInScope=*/0, OpLookup,
4336 /*TemplateArgs=*/0,
4337 /*SuppressQualifierCheck=*/true);
4338 if (OpEqualRef.isInvalid())
4339 return S.StmtError();
4340
4341 // Build the call to the assignment operator.
4342 Expr *FromE = From.takeAs<Expr>();
4343 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4344 OpEqualRef.takeAs<Expr>(),
4345 Loc, &FromE, 1, 0, Loc);
4346 if (Call.isInvalid())
4347 return S.StmtError();
4348
4349 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004350 }
John McCallab8c2732010-03-16 06:11:48 +00004351
Douglas Gregorb139cd52010-05-01 20:49:11 +00004352 // - if the subobject is of scalar type, the built-in assignment
4353 // operator is used.
4354 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4355 if (!ArrayTy) {
4356 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4357 BinaryOperator::Assign,
4358 To.takeAs<Expr>(),
4359 From.takeAs<Expr>());
4360 if (Assignment.isInvalid())
4361 return S.StmtError();
4362
4363 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004364 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004365
4366 // - if the subobject is an array, each element is assigned, in the
4367 // manner appropriate to the element type;
4368
4369 // Construct a loop over the array bounds, e.g.,
4370 //
4371 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4372 //
4373 // that will copy each of the array elements.
4374 QualType SizeType = S.Context.getSizeType();
4375
4376 // Create the iteration variable.
4377 IdentifierInfo *IterationVarName = 0;
4378 {
4379 llvm::SmallString<8> Str;
4380 llvm::raw_svector_ostream OS(Str);
4381 OS << "__i" << Depth;
4382 IterationVarName = &S.Context.Idents.get(OS.str());
4383 }
4384 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4385 IterationVarName, SizeType,
4386 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4387 VarDecl::None, VarDecl::None);
4388
4389 // Initialize the iteration variable to zero.
4390 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4391 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4392
4393 // Create a reference to the iteration variable; we'll use this several
4394 // times throughout.
4395 Expr *IterationVarRef
4396 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4397 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4398
4399 // Create the DeclStmt that holds the iteration variable.
4400 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4401
4402 // Create the comparison against the array bound.
4403 llvm::APInt Upper = ArrayTy->getSize();
4404 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4405 OwningExprResult Comparison
4406 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4407 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4408 BinaryOperator::NE, S.Context.BoolTy, Loc));
4409
4410 // Create the pre-increment of the iteration variable.
4411 OwningExprResult Increment
4412 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4413 UnaryOperator::PreInc,
4414 SizeType, Loc));
4415
4416 // Subscript the "from" and "to" expressions with the iteration variable.
4417 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4418 S.Owned(IterationVarRef->Retain()),
4419 Loc);
4420 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4421 S.Owned(IterationVarRef->Retain()),
4422 Loc);
4423 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4424 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4425
4426 // Build the copy for an individual element of the array.
4427 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4428 ArrayTy->getElementType(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004429 move(To), move(From),
4430 CopyingBaseSubobject, Depth+1);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004431 if (Copy.isInvalid()) {
4432 InitStmt->Destroy(S.Context);
4433 return S.StmtError();
4434 }
4435
4436 // Construct the loop that copies all elements of this array.
4437 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4438 S.MakeFullExpr(Comparison),
4439 Sema::DeclPtrTy(),
4440 S.MakeFullExpr(Increment),
4441 Loc, move(Copy));
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004442}
4443
Douglas Gregorb139cd52010-05-01 20:49:11 +00004444void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4445 CXXMethodDecl *CopyAssignOperator) {
4446 assert((CopyAssignOperator->isImplicit() &&
4447 CopyAssignOperator->isOverloadedOperator() &&
4448 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
4449 !CopyAssignOperator->isUsed()) &&
4450 "DefineImplicitCopyAssignment called for wrong function");
4451
4452 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4453
4454 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4455 CopyAssignOperator->setInvalidDecl();
4456 return;
4457 }
4458
4459 CopyAssignOperator->setUsed();
4460
4461 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004462 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004463
4464 // C++0x [class.copy]p30:
4465 // The implicitly-defined or explicitly-defaulted copy assignment operator
4466 // for a non-union class X performs memberwise copy assignment of its
4467 // subobjects. The direct base classes of X are assigned first, in the
4468 // order of their declaration in the base-specifier-list, and then the
4469 // immediate non-static data members of X are assigned, in the order in
4470 // which they were declared in the class definition.
4471
4472 // The statements that form the synthesized function body.
4473 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4474
4475 // The parameter for the "other" object, which we are copying from.
4476 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4477 Qualifiers OtherQuals = Other->getType().getQualifiers();
4478 QualType OtherRefType = Other->getType();
4479 if (const LValueReferenceType *OtherRef
4480 = OtherRefType->getAs<LValueReferenceType>()) {
4481 OtherRefType = OtherRef->getPointeeType();
4482 OtherQuals = OtherRefType.getQualifiers();
4483 }
4484
4485 // Our location for everything implicitly-generated.
4486 SourceLocation Loc = CopyAssignOperator->getLocation();
4487
4488 // Construct a reference to the "other" object. We'll be using this
4489 // throughout the generated ASTs.
4490 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4491 assert(OtherRef && "Reference to parameter cannot fail!");
4492
4493 // Construct the "this" pointer. We'll be using this throughout the generated
4494 // ASTs.
4495 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4496 assert(This && "Reference to this cannot fail!");
4497
4498 // Assign base classes.
4499 bool Invalid = false;
4500 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4501 E = ClassDecl->bases_end(); Base != E; ++Base) {
4502 // Form the assignment:
4503 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4504 QualType BaseType = Base->getType().getUnqualifiedType();
4505 CXXRecordDecl *BaseClassDecl = 0;
4506 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4507 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4508 else {
4509 Invalid = true;
4510 continue;
4511 }
4512
4513 // Construct the "from" expression, which is an implicit cast to the
4514 // appropriately-qualified base type.
4515 Expr *From = OtherRef->Retain();
4516 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
4517 CastExpr::CK_UncheckedDerivedToBase, /*isLvalue=*/true,
4518 CXXBaseSpecifierArray(Base));
4519
4520 // Dereference "this".
4521 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4522 Owned(This->Retain()));
4523
4524 // Implicitly cast "this" to the appropriately-qualified base type.
4525 Expr *ToE = To.takeAs<Expr>();
4526 ImpCastExprToType(ToE,
4527 Context.getCVRQualifiedType(BaseType,
4528 CopyAssignOperator->getTypeQualifiers()),
4529 CastExpr::CK_UncheckedDerivedToBase,
4530 /*isLvalue=*/true, CXXBaseSpecifierArray(Base));
4531 To = Owned(ToE);
4532
4533 // Build the copy.
4534 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004535 move(To), Owned(From),
4536 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004537 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004538 Diag(CurrentLocation, diag::note_member_synthesized_at)
4539 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4540 CopyAssignOperator->setInvalidDecl();
4541 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004542 }
4543
4544 // Success! Record the copy.
4545 Statements.push_back(Copy.takeAs<Expr>());
4546 }
4547
4548 // \brief Reference to the __builtin_memcpy function.
4549 Expr *BuiltinMemCpyRef = 0;
4550
4551 // Assign non-static members.
4552 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4553 FieldEnd = ClassDecl->field_end();
4554 Field != FieldEnd; ++Field) {
4555 // Check for members of reference type; we can't copy those.
4556 if (Field->getType()->isReferenceType()) {
4557 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4558 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4559 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004560 Diag(CurrentLocation, diag::note_member_synthesized_at)
4561 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004562 Invalid = true;
4563 continue;
4564 }
4565
4566 // Check for members of const-qualified, non-class type.
4567 QualType BaseType = Context.getBaseElementType(Field->getType());
4568 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4569 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4570 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4571 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004572 Diag(CurrentLocation, diag::note_member_synthesized_at)
4573 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004574 Invalid = true;
4575 continue;
4576 }
4577
4578 QualType FieldType = Field->getType().getNonReferenceType();
4579
4580 // Build references to the field in the object we're copying from and to.
4581 CXXScopeSpec SS; // Intentionally empty
4582 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4583 LookupMemberName);
4584 MemberLookup.addDecl(*Field);
4585 MemberLookup.resolveKind();
4586 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4587 OtherRefType,
4588 Loc, /*IsArrow=*/false,
4589 SS, 0, MemberLookup, 0);
4590 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4591 This->getType(),
4592 Loc, /*IsArrow=*/true,
4593 SS, 0, MemberLookup, 0);
4594 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4595 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4596
4597 // If the field should be copied with __builtin_memcpy rather than via
4598 // explicit assignments, do so. This optimization only applies for arrays
4599 // of scalars and arrays of class type with trivial copy-assignment
4600 // operators.
4601 if (FieldType->isArrayType() &&
4602 (!BaseType->isRecordType() ||
4603 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4604 ->hasTrivialCopyAssignment())) {
4605 // Compute the size of the memory buffer to be copied.
4606 QualType SizeType = Context.getSizeType();
4607 llvm::APInt Size(Context.getTypeSize(SizeType),
4608 Context.getTypeSizeInChars(BaseType).getQuantity());
4609 for (const ConstantArrayType *Array
4610 = Context.getAsConstantArrayType(FieldType);
4611 Array;
4612 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4613 llvm::APInt ArraySize = Array->getSize();
4614 ArraySize.zextOrTrunc(Size.getBitWidth());
4615 Size *= ArraySize;
4616 }
4617
4618 // Take the address of the field references for "from" and "to".
4619 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4620 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
4621
4622 // Create a reference to the __builtin_memcpy builtin function.
4623 if (!BuiltinMemCpyRef) {
4624 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
4625 LookupOrdinaryName);
4626 LookupName(R, TUScope, true);
4627
4628 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
4629 if (!BuiltinMemCpy) {
4630 // Something went horribly wrong earlier, and we will have complained
4631 // about it.
4632 Invalid = true;
4633 continue;
4634 }
4635
4636 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
4637 BuiltinMemCpy->getType(),
4638 Loc, 0).takeAs<Expr>();
4639 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
4640 }
4641
4642 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
4643 CallArgs.push_back(To.takeAs<Expr>());
4644 CallArgs.push_back(From.takeAs<Expr>());
4645 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
4646 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
4647 Commas.push_back(Loc);
4648 Commas.push_back(Loc);
4649 OwningExprResult Call = ActOnCallExpr(/*Scope=*/0,
4650 Owned(BuiltinMemCpyRef->Retain()),
4651 Loc, move_arg(CallArgs),
4652 Commas.data(), Loc);
4653 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
4654 Statements.push_back(Call.takeAs<Expr>());
4655 continue;
4656 }
4657
4658 // Build the copy of this field.
4659 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004660 move(To), move(From),
4661 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004662 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004663 Diag(CurrentLocation, diag::note_member_synthesized_at)
4664 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4665 CopyAssignOperator->setInvalidDecl();
4666 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004667 }
4668
4669 // Success! Record the copy.
4670 Statements.push_back(Copy.takeAs<Stmt>());
4671 }
4672
4673 if (!Invalid) {
4674 // Add a "return *this;"
4675 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4676 Owned(This->Retain()));
4677
4678 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
4679 if (Return.isInvalid())
4680 Invalid = true;
4681 else {
4682 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00004683
4684 if (Trap.hasErrorOccurred()) {
4685 Diag(CurrentLocation, diag::note_member_synthesized_at)
4686 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4687 Invalid = true;
4688 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004689 }
4690 }
4691
4692 if (Invalid) {
4693 CopyAssignOperator->setInvalidDecl();
4694 return;
4695 }
4696
4697 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
4698 /*isStmtExpr=*/false);
4699 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
4700 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004701}
4702
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004703void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
4704 CXXConstructorDecl *CopyConstructor,
4705 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00004706 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00004707 CopyConstructor->isCopyConstructor(TypeQuals) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004708 !CopyConstructor->isUsed()) &&
4709 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004710
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00004711 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004712 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004713
Douglas Gregora57478e2010-05-01 15:04:51 +00004714 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004715 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004716
Douglas Gregor54818f02010-05-12 16:39:35 +00004717 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
4718 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00004719 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00004720 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00004721 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00004722 } else {
4723 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
4724 CopyConstructor->getLocation(),
4725 MultiStmtArg(*this, 0, 0),
4726 /*isStmtExpr=*/false)
4727 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00004728 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00004729
4730 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004731}
4732
Anders Carlsson6eb55572009-08-25 05:12:04 +00004733Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00004734Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00004735 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004736 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004737 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004738 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00004739 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00004740
Douglas Gregor45cf7e32010-04-02 18:24:57 +00004741 // C++0x [class.copy]p34:
4742 // When certain criteria are met, an implementation is allowed to
4743 // omit the copy/move construction of a class object, even if the
4744 // copy/move constructor and/or destructor for the object have
4745 // side effects. [...]
4746 // - when a temporary class object that has not been bound to a
4747 // reference (12.2) would be copied/moved to a class object
4748 // with the same cv-unqualified type, the copy/move operation
4749 // can be omitted by constructing the temporary object
4750 // directly into the target of the omitted copy/move
4751 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
4752 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
4753 Elidable = SubExpr->isTemporaryObject() &&
4754 Context.hasSameUnqualifiedType(SubExpr->getType(),
4755 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00004756 }
Mike Stump11289f42009-09-09 15:08:12 +00004757
4758 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004759 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004760 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00004761}
4762
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004763/// BuildCXXConstructExpr - Creates a complete call to a constructor,
4764/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00004765Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00004766Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
4767 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004768 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004769 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004770 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004771 unsigned NumExprs = ExprArgs.size();
4772 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00004773
Douglas Gregor27381f32009-11-23 12:27:39 +00004774 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00004775 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004776 Constructor, Elidable, Exprs, NumExprs,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004777 RequiresZeroInit, ConstructKind));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004778}
4779
Mike Stump11289f42009-09-09 15:08:12 +00004780bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004781 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004782 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00004783 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00004784 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004785 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00004786 if (TempResult.isInvalid())
4787 return true;
Mike Stump11289f42009-09-09 15:08:12 +00004788
Anders Carlsson6eb55572009-08-25 05:12:04 +00004789 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00004790 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00004791 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00004792 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00004793
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00004794 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00004795}
4796
John McCall03c48482010-02-02 09:10:11 +00004797void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
4798 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00004799 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
4800 !ClassDecl->hasTrivialDestructor()) {
John McCall6781b052010-02-02 08:45:54 +00004801 CXXDestructorDecl *Destructor = ClassDecl->getDestructor(Context);
4802 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00004803 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00004804 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00004805 << VD->getDeclName()
4806 << VD->getType());
John McCall6781b052010-02-02 08:45:54 +00004807 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004808}
4809
Mike Stump11289f42009-09-09 15:08:12 +00004810/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004811/// ActOnDeclarator, when a C++ direct initializer is present.
4812/// e.g: "int x(1);"
Chris Lattner83f095c2009-03-28 19:18:32 +00004813void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
4814 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00004815 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004816 SourceLocation *CommaLocs,
4817 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00004818 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattner83f095c2009-03-28 19:18:32 +00004819 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004820
4821 // If there is no declaration, there was an error parsing it. Just ignore
4822 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00004823 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004824 return;
Mike Stump11289f42009-09-09 15:08:12 +00004825
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004826 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
4827 if (!VDecl) {
4828 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
4829 RealDecl->setInvalidDecl();
4830 return;
4831 }
4832
Douglas Gregor402250f2009-08-26 21:14:46 +00004833 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00004834 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004835 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
4836 //
4837 // Clients that want to distinguish between the two forms, can check for
4838 // direct initializer using VarDecl::hasCXXDirectInitializer().
4839 // A major benefit is that clients that don't particularly care about which
4840 // exactly form was it (like the CodeGen) can handle both cases without
4841 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004842
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004843 // C++ 8.5p11:
4844 // The form of initialization (using parentheses or '=') is generally
4845 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004846 // class type.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00004847 QualType DeclInitType = VDecl->getType();
4848 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahaniand264ee02009-10-28 19:04:36 +00004849 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004850
Douglas Gregor50dc2192010-02-11 22:55:30 +00004851 if (!VDecl->getType()->isDependentType() &&
4852 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00004853 diag::err_typecheck_decl_incomplete_type)) {
4854 VDecl->setInvalidDecl();
4855 return;
4856 }
4857
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004858 // The variable can not have an abstract class type.
4859 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
4860 diag::err_abstract_type_in_decl,
4861 AbstractVariableType))
4862 VDecl->setInvalidDecl();
4863
Sebastian Redl5ca79842010-02-01 20:16:42 +00004864 const VarDecl *Def;
4865 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004866 Diag(VDecl->getLocation(), diag::err_redefinition)
4867 << VDecl->getDeclName();
4868 Diag(Def->getLocation(), diag::note_previous_definition);
4869 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004870 return;
4871 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00004872
4873 // If either the declaration has a dependent type or if any of the
4874 // expressions is type-dependent, we represent the initialization
4875 // via a ParenListExpr for later use during template instantiation.
4876 if (VDecl->getType()->isDependentType() ||
4877 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
4878 // Let clients know that initialization was done with a direct initializer.
4879 VDecl->setCXXDirectInitializer(true);
4880
4881 // Store the initialization expressions as a ParenListExpr.
4882 unsigned NumExprs = Exprs.size();
4883 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
4884 (Expr **)Exprs.release(),
4885 NumExprs, RParenLoc));
4886 return;
4887 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004888
4889 // Capture the variable that is being initialized and the style of
4890 // initialization.
4891 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
4892
4893 // FIXME: Poor source location information.
4894 InitializationKind Kind
4895 = InitializationKind::CreateDirect(VDecl->getLocation(),
4896 LParenLoc, RParenLoc);
4897
4898 InitializationSequence InitSeq(*this, Entity, Kind,
4899 (Expr**)Exprs.get(), Exprs.size());
4900 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
4901 if (Result.isInvalid()) {
4902 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004903 return;
4904 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004905
4906 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregord5058122010-02-11 01:19:42 +00004907 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004908 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00004909
John McCall03c48482010-02-02 09:10:11 +00004910 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
4911 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004912}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00004913
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004914/// \brief Given a constructor and the set of arguments provided for the
4915/// constructor, convert the arguments and add any required default arguments
4916/// to form a proper call to this constructor.
4917///
4918/// \returns true if an error occurred, false otherwise.
4919bool
4920Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
4921 MultiExprArg ArgsPtr,
4922 SourceLocation Loc,
4923 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
4924 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
4925 unsigned NumArgs = ArgsPtr.size();
4926 Expr **Args = (Expr **)ArgsPtr.get();
4927
4928 const FunctionProtoType *Proto
4929 = Constructor->getType()->getAs<FunctionProtoType>();
4930 assert(Proto && "Constructor without a prototype?");
4931 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004932
4933 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004934 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004935 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004936 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004937 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004938
4939 VariadicCallType CallType =
4940 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
4941 llvm::SmallVector<Expr *, 8> AllArgs;
4942 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
4943 Proto, 0, Args, NumArgs, AllArgs,
4944 CallType);
4945 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
4946 ConvertedArgs.push_back(AllArgs[i]);
4947 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00004948}
4949
Anders Carlssone363c8e2009-12-12 00:32:00 +00004950static inline bool
4951CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
4952 const FunctionDecl *FnDecl) {
4953 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
4954 if (isa<NamespaceDecl>(DC)) {
4955 return SemaRef.Diag(FnDecl->getLocation(),
4956 diag::err_operator_new_delete_declared_in_namespace)
4957 << FnDecl->getDeclName();
4958 }
4959
4960 if (isa<TranslationUnitDecl>(DC) &&
4961 FnDecl->getStorageClass() == FunctionDecl::Static) {
4962 return SemaRef.Diag(FnDecl->getLocation(),
4963 diag::err_operator_new_delete_declared_static)
4964 << FnDecl->getDeclName();
4965 }
4966
Anders Carlsson60659a82009-12-12 02:43:16 +00004967 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00004968}
4969
Anders Carlsson7e0b2072009-12-13 17:53:43 +00004970static inline bool
4971CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
4972 CanQualType ExpectedResultType,
4973 CanQualType ExpectedFirstParamType,
4974 unsigned DependentParamTypeDiag,
4975 unsigned InvalidParamTypeDiag) {
4976 QualType ResultType =
4977 FnDecl->getType()->getAs<FunctionType>()->getResultType();
4978
4979 // Check that the result type is not dependent.
4980 if (ResultType->isDependentType())
4981 return SemaRef.Diag(FnDecl->getLocation(),
4982 diag::err_operator_new_delete_dependent_result_type)
4983 << FnDecl->getDeclName() << ExpectedResultType;
4984
4985 // Check that the result type is what we expect.
4986 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
4987 return SemaRef.Diag(FnDecl->getLocation(),
4988 diag::err_operator_new_delete_invalid_result_type)
4989 << FnDecl->getDeclName() << ExpectedResultType;
4990
4991 // A function template must have at least 2 parameters.
4992 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
4993 return SemaRef.Diag(FnDecl->getLocation(),
4994 diag::err_operator_new_delete_template_too_few_parameters)
4995 << FnDecl->getDeclName();
4996
4997 // The function decl must have at least 1 parameter.
4998 if (FnDecl->getNumParams() == 0)
4999 return SemaRef.Diag(FnDecl->getLocation(),
5000 diag::err_operator_new_delete_too_few_parameters)
5001 << FnDecl->getDeclName();
5002
5003 // Check the the first parameter type is not dependent.
5004 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5005 if (FirstParamType->isDependentType())
5006 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5007 << FnDecl->getDeclName() << ExpectedFirstParamType;
5008
5009 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005010 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005011 ExpectedFirstParamType)
5012 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5013 << FnDecl->getDeclName() << ExpectedFirstParamType;
5014
5015 return false;
5016}
5017
Anders Carlsson12308f42009-12-11 23:23:22 +00005018static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005019CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005020 // C++ [basic.stc.dynamic.allocation]p1:
5021 // A program is ill-formed if an allocation function is declared in a
5022 // namespace scope other than global scope or declared static in global
5023 // scope.
5024 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5025 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005026
5027 CanQualType SizeTy =
5028 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5029
5030 // C++ [basic.stc.dynamic.allocation]p1:
5031 // The return type shall be void*. The first parameter shall have type
5032 // std::size_t.
5033 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5034 SizeTy,
5035 diag::err_operator_new_dependent_param_type,
5036 diag::err_operator_new_param_type))
5037 return true;
5038
5039 // C++ [basic.stc.dynamic.allocation]p1:
5040 // The first parameter shall not have an associated default argument.
5041 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005042 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005043 diag::err_operator_new_default_arg)
5044 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5045
5046 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005047}
5048
5049static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005050CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5051 // C++ [basic.stc.dynamic.deallocation]p1:
5052 // A program is ill-formed if deallocation functions are declared in a
5053 // namespace scope other than global scope or declared static in global
5054 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005055 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5056 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005057
5058 // C++ [basic.stc.dynamic.deallocation]p2:
5059 // Each deallocation function shall return void and its first parameter
5060 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005061 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5062 SemaRef.Context.VoidPtrTy,
5063 diag::err_operator_delete_dependent_param_type,
5064 diag::err_operator_delete_param_type))
5065 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005066
Anders Carlssonc0b2ce12009-12-12 00:16:02 +00005067 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5068 if (FirstParamType->isDependentType())
5069 return SemaRef.Diag(FnDecl->getLocation(),
5070 diag::err_operator_delete_dependent_param_type)
5071 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
5072
5073 if (SemaRef.Context.getCanonicalType(FirstParamType) !=
5074 SemaRef.Context.VoidPtrTy)
Anders Carlsson12308f42009-12-11 23:23:22 +00005075 return SemaRef.Diag(FnDecl->getLocation(),
5076 diag::err_operator_delete_param_type)
5077 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
Anders Carlsson12308f42009-12-11 23:23:22 +00005078
5079 return false;
5080}
5081
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005082/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5083/// of this overloaded operator is well-formed. If so, returns false;
5084/// otherwise, emits appropriate diagnostics and returns true.
5085bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005086 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005087 "Expected an overloaded operator declaration");
5088
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005089 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5090
Mike Stump11289f42009-09-09 15:08:12 +00005091 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005092 // The allocation and deallocation functions, operator new,
5093 // operator new[], operator delete and operator delete[], are
5094 // described completely in 3.7.3. The attributes and restrictions
5095 // found in the rest of this subclause do not apply to them unless
5096 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005097 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005098 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005099
Anders Carlsson22f443f2009-12-12 00:26:23 +00005100 if (Op == OO_New || Op == OO_Array_New)
5101 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005102
5103 // C++ [over.oper]p6:
5104 // An operator function shall either be a non-static member
5105 // function or be a non-member function and have at least one
5106 // parameter whose type is a class, a reference to a class, an
5107 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005108 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5109 if (MethodDecl->isStatic())
5110 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005111 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005112 } else {
5113 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005114 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5115 ParamEnd = FnDecl->param_end();
5116 Param != ParamEnd; ++Param) {
5117 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005118 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5119 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005120 ClassOrEnumParam = true;
5121 break;
5122 }
5123 }
5124
Douglas Gregord69246b2008-11-17 16:14:12 +00005125 if (!ClassOrEnumParam)
5126 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005127 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005128 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005129 }
5130
5131 // C++ [over.oper]p8:
5132 // An operator function cannot have default arguments (8.3.6),
5133 // except where explicitly stated below.
5134 //
Mike Stump11289f42009-09-09 15:08:12 +00005135 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005136 // (C++ [over.call]p1).
5137 if (Op != OO_Call) {
5138 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5139 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005140 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005141 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005142 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005143 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005144 }
5145 }
5146
Douglas Gregor6cf08062008-11-10 13:38:07 +00005147 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5148 { false, false, false }
5149#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5150 , { Unary, Binary, MemberOnly }
5151#include "clang/Basic/OperatorKinds.def"
5152 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005153
Douglas Gregor6cf08062008-11-10 13:38:07 +00005154 bool CanBeUnaryOperator = OperatorUses[Op][0];
5155 bool CanBeBinaryOperator = OperatorUses[Op][1];
5156 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005157
5158 // C++ [over.oper]p8:
5159 // [...] Operator functions cannot have more or fewer parameters
5160 // than the number required for the corresponding operator, as
5161 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005162 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005163 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005164 if (Op != OO_Call &&
5165 ((NumParams == 1 && !CanBeUnaryOperator) ||
5166 (NumParams == 2 && !CanBeBinaryOperator) ||
5167 (NumParams < 1) || (NumParams > 2))) {
5168 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005169 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005170 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005171 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005172 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005173 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005174 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005175 assert(CanBeBinaryOperator &&
5176 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005177 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005178 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005179
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005180 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005181 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005182 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005183
Douglas Gregord69246b2008-11-17 16:14:12 +00005184 // Overloaded operators other than operator() cannot be variadic.
5185 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005186 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005187 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005188 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005189 }
5190
5191 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005192 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5193 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005194 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005195 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005196 }
5197
5198 // C++ [over.inc]p1:
5199 // The user-defined function called operator++ implements the
5200 // prefix and postfix ++ operator. If this function is a member
5201 // function with no parameters, or a non-member function with one
5202 // parameter of class or enumeration type, it defines the prefix
5203 // increment operator ++ for objects of that type. If the function
5204 // is a member function with one parameter (which shall be of type
5205 // int) or a non-member function with two parameters (the second
5206 // of which shall be of type int), it defines the postfix
5207 // increment operator ++ for objects of that type.
5208 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5209 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5210 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005211 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005212 ParamIsInt = BT->getKind() == BuiltinType::Int;
5213
Chris Lattner2b786902008-11-21 07:50:02 +00005214 if (!ParamIsInt)
5215 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005216 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005217 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005218 }
5219
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005220 // Notify the class if it got an assignment operator.
5221 if (Op == OO_Equal) {
5222 // Would have returned earlier otherwise.
5223 assert(isa<CXXMethodDecl>(FnDecl) &&
5224 "Overloaded = not member, but not filtered.");
5225 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5226 Method->getParent()->addedAssignmentOperator(Context, Method);
5227 }
5228
Douglas Gregord69246b2008-11-17 16:14:12 +00005229 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005230}
Chris Lattner3b024a32008-12-17 07:09:26 +00005231
Alexis Huntc88db062010-01-13 09:01:02 +00005232/// CheckLiteralOperatorDeclaration - Check whether the declaration
5233/// of this literal operator function is well-formed. If so, returns
5234/// false; otherwise, emits appropriate diagnostics and returns true.
5235bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5236 DeclContext *DC = FnDecl->getDeclContext();
5237 Decl::Kind Kind = DC->getDeclKind();
5238 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5239 Kind != Decl::LinkageSpec) {
5240 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5241 << FnDecl->getDeclName();
5242 return true;
5243 }
5244
5245 bool Valid = false;
5246
Alexis Hunt7dd26172010-04-07 23:11:06 +00005247 // template <char...> type operator "" name() is the only valid template
5248 // signature, and the only valid signature with no parameters.
5249 if (FnDecl->param_size() == 0) {
5250 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5251 // Must have only one template parameter
5252 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5253 if (Params->size() == 1) {
5254 NonTypeTemplateParmDecl *PmDecl =
5255 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005256
Alexis Hunt7dd26172010-04-07 23:11:06 +00005257 // The template parameter must be a char parameter pack.
5258 // FIXME: This test will always fail because non-type parameter packs
5259 // have not been implemented.
5260 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5261 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5262 Valid = true;
5263 }
5264 }
5265 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005266 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005267 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5268
Alexis Huntc88db062010-01-13 09:01:02 +00005269 QualType T = (*Param)->getType();
5270
Alexis Hunt079a6f72010-04-07 22:57:35 +00005271 // unsigned long long int, long double, and any character type are allowed
5272 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005273 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5274 Context.hasSameType(T, Context.LongDoubleTy) ||
5275 Context.hasSameType(T, Context.CharTy) ||
5276 Context.hasSameType(T, Context.WCharTy) ||
5277 Context.hasSameType(T, Context.Char16Ty) ||
5278 Context.hasSameType(T, Context.Char32Ty)) {
5279 if (++Param == FnDecl->param_end())
5280 Valid = true;
5281 goto FinishedParams;
5282 }
5283
Alexis Hunt079a6f72010-04-07 22:57:35 +00005284 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005285 const PointerType *PT = T->getAs<PointerType>();
5286 if (!PT)
5287 goto FinishedParams;
5288 T = PT->getPointeeType();
5289 if (!T.isConstQualified())
5290 goto FinishedParams;
5291 T = T.getUnqualifiedType();
5292
5293 // Move on to the second parameter;
5294 ++Param;
5295
5296 // If there is no second parameter, the first must be a const char *
5297 if (Param == FnDecl->param_end()) {
5298 if (Context.hasSameType(T, Context.CharTy))
5299 Valid = true;
5300 goto FinishedParams;
5301 }
5302
5303 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5304 // are allowed as the first parameter to a two-parameter function
5305 if (!(Context.hasSameType(T, Context.CharTy) ||
5306 Context.hasSameType(T, Context.WCharTy) ||
5307 Context.hasSameType(T, Context.Char16Ty) ||
5308 Context.hasSameType(T, Context.Char32Ty)))
5309 goto FinishedParams;
5310
5311 // The second and final parameter must be an std::size_t
5312 T = (*Param)->getType().getUnqualifiedType();
5313 if (Context.hasSameType(T, Context.getSizeType()) &&
5314 ++Param == FnDecl->param_end())
5315 Valid = true;
5316 }
5317
5318 // FIXME: This diagnostic is absolutely terrible.
5319FinishedParams:
5320 if (!Valid) {
5321 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5322 << FnDecl->getDeclName();
5323 return true;
5324 }
5325
5326 return false;
5327}
5328
Douglas Gregor07665a62009-01-05 19:45:36 +00005329/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5330/// linkage specification, including the language and (if present)
5331/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5332/// the location of the language string literal, which is provided
5333/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5334/// the '{' brace. Otherwise, this linkage specification does not
5335/// have any braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005336Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5337 SourceLocation ExternLoc,
5338 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00005339 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00005340 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00005341 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005342 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005343 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005344 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005345 Language = LinkageSpecDecl::lang_cxx;
5346 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00005347 Diag(LangLoc, diag::err_bad_language);
Chris Lattner83f095c2009-03-28 19:18:32 +00005348 return DeclPtrTy();
Chris Lattner438e5012008-12-17 07:13:27 +00005349 }
Mike Stump11289f42009-09-09 15:08:12 +00005350
Chris Lattner438e5012008-12-17 07:13:27 +00005351 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00005352
Douglas Gregor07665a62009-01-05 19:45:36 +00005353 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00005354 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00005355 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005356 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00005357 PushDeclContext(S, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005358 return DeclPtrTy::make(D);
Chris Lattner438e5012008-12-17 07:13:27 +00005359}
5360
Douglas Gregor07665a62009-01-05 19:45:36 +00005361/// ActOnFinishLinkageSpecification - Completely the definition of
5362/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5363/// valid, it's the position of the closing '}' brace in a linkage
5364/// specification that uses braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005365Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5366 DeclPtrTy LinkageSpec,
5367 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00005368 if (LinkageSpec)
5369 PopDeclContext();
5370 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00005371}
5372
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005373/// \brief Perform semantic analysis for the variable declaration that
5374/// occurs within a C++ catch clause, returning the newly-created
5375/// variable.
5376VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00005377 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005378 IdentifierInfo *Name,
5379 SourceLocation Loc,
5380 SourceRange Range) {
5381 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005382
5383 // Arrays and functions decay.
5384 if (ExDeclType->isArrayType())
5385 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5386 else if (ExDeclType->isFunctionType())
5387 ExDeclType = Context.getPointerType(ExDeclType);
5388
5389 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5390 // The exception-declaration shall not denote a pointer or reference to an
5391 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00005392 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00005393 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005394 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00005395 Invalid = true;
5396 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005397
Douglas Gregor104ee002010-03-08 01:47:36 +00005398 // GCC allows catching pointers and references to incomplete types
5399 // as an extension; so do we, but we warn by default.
5400
Sebastian Redl54c04d42008-12-22 19:15:10 +00005401 QualType BaseType = ExDeclType;
5402 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00005403 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00005404 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005405 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005406 BaseType = Ptr->getPointeeType();
5407 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00005408 DK = diag::ext_catch_incomplete_ptr;
5409 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00005410 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00005411 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005412 BaseType = Ref->getPointeeType();
5413 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00005414 DK = diag::ext_catch_incomplete_ref;
5415 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005416 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00005417 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00005418 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5419 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00005420 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005421
Mike Stump11289f42009-09-09 15:08:12 +00005422 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005423 RequireNonAbstractType(Loc, ExDeclType,
5424 diag::err_abstract_type_in_decl,
5425 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00005426 Invalid = true;
5427
Mike Stump11289f42009-09-09 15:08:12 +00005428 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregorc4df4072010-04-19 22:54:31 +00005429 Name, ExDeclType, TInfo, VarDecl::None,
5430 VarDecl::None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00005431 ExDecl->setExceptionVariable(true);
5432
Douglas Gregor6de584c2010-03-05 23:38:39 +00005433 if (!Invalid) {
5434 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
5435 // C++ [except.handle]p16:
5436 // The object declared in an exception-declaration or, if the
5437 // exception-declaration does not specify a name, a temporary (12.2) is
5438 // copy-initialized (8.5) from the exception object. [...]
5439 // The object is destroyed when the handler exits, after the destruction
5440 // of any automatic objects initialized within the handler.
5441 //
5442 // We just pretend to initialize the object with itself, then make sure
5443 // it can be destroyed later.
5444 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
5445 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
5446 Loc, ExDeclType, 0);
5447 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
5448 SourceLocation());
5449 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
5450 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
5451 MultiExprArg(*this, (void**)&ExDeclRef, 1));
5452 if (Result.isInvalid())
5453 Invalid = true;
5454 else
5455 FinalizeVarWithDestructor(ExDecl, RecordTy);
5456 }
5457 }
5458
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005459 if (Invalid)
5460 ExDecl->setInvalidDecl();
5461
5462 return ExDecl;
5463}
5464
5465/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
5466/// handler.
5467Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbcd03502009-12-07 02:54:59 +00005468 TypeSourceInfo *TInfo = 0;
5469 QualType ExDeclType = GetTypeForDeclarator(D, S, &TInfo);
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005470
5471 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00005472 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005473 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00005474 LookupOrdinaryName,
5475 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005476 // The scope should be freshly made just for us. There is just no way
5477 // it contains any previous declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +00005478 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl54c04d42008-12-22 19:15:10 +00005479 if (PrevDecl->isTemplateParameter()) {
5480 // Maybe we will complain about the shadowed template parameter.
5481 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005482 }
5483 }
5484
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005485 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005486 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
5487 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005488 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005489 }
5490
John McCallbcd03502009-12-07 02:54:59 +00005491 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005492 D.getIdentifier(),
5493 D.getIdentifierLoc(),
5494 D.getDeclSpec().getSourceRange());
5495
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005496 if (Invalid)
5497 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00005498
Sebastian Redl54c04d42008-12-22 19:15:10 +00005499 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005500 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005501 PushOnScopeChains(ExDecl, S);
5502 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005503 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005504
Douglas Gregor758a8692009-06-17 21:51:59 +00005505 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005506 return DeclPtrTy::make(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005507}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005508
Mike Stump11289f42009-09-09 15:08:12 +00005509Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00005510 ExprArg assertexpr,
5511 ExprArg assertmessageexpr) {
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005512 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump11289f42009-09-09 15:08:12 +00005513 StringLiteral *AssertMessage =
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005514 cast<StringLiteral>((Expr *)assertmessageexpr.get());
5515
Anders Carlsson54b26982009-03-14 00:33:21 +00005516 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
5517 llvm::APSInt Value(32);
5518 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
5519 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
5520 AssertExpr->getSourceRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00005521 return DeclPtrTy();
Anders Carlsson54b26982009-03-14 00:33:21 +00005522 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005523
Anders Carlsson54b26982009-03-14 00:33:21 +00005524 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00005525 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00005526 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00005527 }
5528 }
Mike Stump11289f42009-09-09 15:08:12 +00005529
Anders Carlsson78e2bc02009-03-15 17:35:16 +00005530 assertexpr.release();
5531 assertmessageexpr.release();
Mike Stump11289f42009-09-09 15:08:12 +00005532 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005533 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00005534
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005535 CurContext->addDecl(Decl);
Chris Lattner83f095c2009-03-28 19:18:32 +00005536 return DeclPtrTy::make(Decl);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005537}
Sebastian Redlf769df52009-03-24 22:27:57 +00005538
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005539/// \brief Perform semantic analysis of the given friend type declaration.
5540///
5541/// \returns A friend declaration that.
5542FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
5543 TypeSourceInfo *TSInfo) {
5544 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
5545
5546 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00005547 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005548
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005549 if (!getLangOptions().CPlusPlus0x) {
5550 // C++03 [class.friend]p2:
5551 // An elaborated-type-specifier shall be used in a friend declaration
5552 // for a class.*
5553 //
5554 // * The class-key of the elaborated-type-specifier is required.
5555 if (!ActiveTemplateInstantiations.empty()) {
5556 // Do not complain about the form of friend template types during
5557 // template instantiation; we will already have complained when the
5558 // template was declared.
5559 } else if (!T->isElaboratedTypeSpecifier()) {
5560 // If we evaluated the type to a record type, suggest putting
5561 // a tag in front.
5562 if (const RecordType *RT = T->getAs<RecordType>()) {
5563 RecordDecl *RD = RT->getDecl();
5564
5565 std::string InsertionText = std::string(" ") + RD->getKindName();
5566
5567 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
5568 << (unsigned) RD->getTagKind()
5569 << T
5570 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
5571 InsertionText);
5572 } else {
5573 Diag(FriendLoc, diag::ext_nonclass_type_friend)
5574 << T
5575 << SourceRange(FriendLoc, TypeRange.getEnd());
5576 }
5577 } else if (T->getAs<EnumType>()) {
5578 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005579 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005580 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005581 }
5582 }
5583
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005584 // C++0x [class.friend]p3:
5585 // If the type specifier in a friend declaration designates a (possibly
5586 // cv-qualified) class type, that class is declared as a friend; otherwise,
5587 // the friend declaration is ignored.
5588
5589 // FIXME: C++0x has some syntactic restrictions on friend type declarations
5590 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005591
5592 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
5593}
5594
John McCall11083da2009-09-16 22:47:08 +00005595/// Handle a friend type declaration. This works in tandem with
5596/// ActOnTag.
5597///
5598/// Notes on friend class templates:
5599///
5600/// We generally treat friend class declarations as if they were
5601/// declaring a class. So, for example, the elaborated type specifier
5602/// in a friend declaration is required to obey the restrictions of a
5603/// class-head (i.e. no typedefs in the scope chain), template
5604/// parameters are required to match up with simple template-ids, &c.
5605/// However, unlike when declaring a template specialization, it's
5606/// okay to refer to a template specialization without an empty
5607/// template parameter declaration, e.g.
5608/// friend class A<T>::B<unsigned>;
5609/// We permit this as a special case; if there are any template
5610/// parameters present at all, require proper matching, i.e.
5611/// template <> template <class T> friend class A<int>::B;
Chris Lattner1fb66f42009-10-25 17:47:27 +00005612Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00005613 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00005614 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00005615
5616 assert(DS.isFriendSpecified());
5617 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5618
John McCall11083da2009-09-16 22:47:08 +00005619 // Try to convert the decl specifier to a type. This works for
5620 // friend templates because ActOnTag never produces a ClassTemplateDecl
5621 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00005622 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall15ad0962010-03-25 18:04:51 +00005623 TypeSourceInfo *TSI;
5624 QualType T = GetTypeForDeclarator(TheDeclarator, S, &TSI);
Chris Lattner1fb66f42009-10-25 17:47:27 +00005625 if (TheDeclarator.isInvalidType())
5626 return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00005627
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005628 if (!TSI)
5629 TSI = Context.getTrivialTypeSourceInfo(T, DS.getSourceRange().getBegin());
5630
John McCall11083da2009-09-16 22:47:08 +00005631 // This is definitely an error in C++98. It's probably meant to
5632 // be forbidden in C++0x, too, but the specification is just
5633 // poorly written.
5634 //
5635 // The problem is with declarations like the following:
5636 // template <T> friend A<T>::foo;
5637 // where deciding whether a class C is a friend or not now hinges
5638 // on whether there exists an instantiation of A that causes
5639 // 'foo' to equal C. There are restrictions on class-heads
5640 // (which we declare (by fiat) elaborated friend declarations to
5641 // be) that makes this tractable.
5642 //
5643 // FIXME: handle "template <> friend class A<T>;", which
5644 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00005645 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00005646 Diag(Loc, diag::err_tagless_friend_type_template)
5647 << DS.getSourceRange();
5648 return DeclPtrTy();
5649 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005650
John McCallaa74a0c2009-08-28 07:59:38 +00005651 // C++98 [class.friend]p1: A friend of a class is a function
5652 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00005653 // This is fixed in DR77, which just barely didn't make the C++03
5654 // deadline. It's also a very silly restriction that seriously
5655 // affects inner classes and which nobody else seems to implement;
5656 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00005657 //
5658 // But note that we could warn about it: it's always useless to
5659 // friend one of your own members (it's not, however, worthless to
5660 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00005661
John McCall11083da2009-09-16 22:47:08 +00005662 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005663 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00005664 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005665 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00005666 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00005667 TSI,
John McCall11083da2009-09-16 22:47:08 +00005668 DS.getFriendSpecLoc());
5669 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005670 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
5671
5672 if (!D)
5673 return DeclPtrTy();
5674
John McCall11083da2009-09-16 22:47:08 +00005675 D->setAccess(AS_public);
5676 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00005677
John McCall11083da2009-09-16 22:47:08 +00005678 return DeclPtrTy::make(D);
John McCallaa74a0c2009-08-28 07:59:38 +00005679}
5680
John McCall2f212b32009-09-11 21:02:39 +00005681Sema::DeclPtrTy
5682Sema::ActOnFriendFunctionDecl(Scope *S,
5683 Declarator &D,
5684 bool IsDefinition,
5685 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00005686 const DeclSpec &DS = D.getDeclSpec();
5687
5688 assert(DS.isFriendSpecified());
5689 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5690
5691 SourceLocation Loc = D.getIdentifierLoc();
John McCallbcd03502009-12-07 02:54:59 +00005692 TypeSourceInfo *TInfo = 0;
5693 QualType T = GetTypeForDeclarator(D, S, &TInfo);
John McCall07e91c02009-08-06 02:15:43 +00005694
5695 // C++ [class.friend]p1
5696 // A friend of a class is a function or class....
5697 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00005698 // It *doesn't* see through dependent types, which is correct
5699 // according to [temp.arg.type]p3:
5700 // If a declaration acquires a function type through a
5701 // type dependent on a template-parameter and this causes
5702 // a declaration that does not use the syntactic form of a
5703 // function declarator to have a function type, the program
5704 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00005705 if (!T->isFunctionType()) {
5706 Diag(Loc, diag::err_unexpected_friend);
5707
5708 // It might be worthwhile to try to recover by creating an
5709 // appropriate declaration.
5710 return DeclPtrTy();
5711 }
5712
5713 // C++ [namespace.memdef]p3
5714 // - If a friend declaration in a non-local class first declares a
5715 // class or function, the friend class or function is a member
5716 // of the innermost enclosing namespace.
5717 // - The name of the friend is not found by simple name lookup
5718 // until a matching declaration is provided in that namespace
5719 // scope (either before or after the class declaration granting
5720 // friendship).
5721 // - If a friend function is called, its name may be found by the
5722 // name lookup that considers functions from namespaces and
5723 // classes associated with the types of the function arguments.
5724 // - When looking for a prior declaration of a class or a function
5725 // declared as a friend, scopes outside the innermost enclosing
5726 // namespace scope are not considered.
5727
John McCallaa74a0c2009-08-28 07:59:38 +00005728 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
5729 DeclarationName Name = GetNameForDeclarator(D);
John McCall07e91c02009-08-06 02:15:43 +00005730 assert(Name);
5731
John McCall07e91c02009-08-06 02:15:43 +00005732 // The context we found the declaration in, or in which we should
5733 // create the declaration.
5734 DeclContext *DC;
5735
5736 // FIXME: handle local classes
5737
5738 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall1f82f242009-11-18 22:49:29 +00005739 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
5740 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00005741 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
5742 DC = computeDeclContext(ScopeQual);
5743
5744 // FIXME: handle dependent contexts
5745 if (!DC) return DeclPtrTy();
John McCall0b66eb32010-05-01 00:40:08 +00005746 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00005747
John McCall1f82f242009-11-18 22:49:29 +00005748 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00005749
5750 // If searching in that context implicitly found a declaration in
5751 // a different context, treat it like it wasn't found at all.
5752 // TODO: better diagnostics for this case. Suggesting the right
5753 // qualified scope would be nice...
John McCall1f82f242009-11-18 22:49:29 +00005754 // FIXME: getRepresentativeDecl() is not right here at all
5755 if (Previous.empty() ||
5756 !Previous.getRepresentativeDecl()->getDeclContext()->Equals(DC)) {
John McCallaa74a0c2009-08-28 07:59:38 +00005757 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00005758 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
5759 return DeclPtrTy();
5760 }
5761
5762 // C++ [class.friend]p1: A friend of a class is a function or
5763 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005764 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00005765 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5766
John McCall07e91c02009-08-06 02:15:43 +00005767 // Otherwise walk out to the nearest namespace scope looking for matches.
5768 } else {
5769 // TODO: handle local class contexts.
5770
5771 DC = CurContext;
5772 while (true) {
5773 // Skip class contexts. If someone can cite chapter and verse
5774 // for this behavior, that would be nice --- it's what GCC and
5775 // EDG do, and it seems like a reasonable intent, but the spec
5776 // really only says that checks for unqualified existing
5777 // declarations should stop at the nearest enclosing namespace,
5778 // not that they should only consider the nearest enclosing
5779 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005780 while (DC->isRecord())
5781 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00005782
John McCall1f82f242009-11-18 22:49:29 +00005783 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00005784
5785 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00005786 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00005787 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005788
John McCall07e91c02009-08-06 02:15:43 +00005789 if (DC->isFileContext()) break;
5790 DC = DC->getParent();
5791 }
5792
5793 // C++ [class.friend]p1: A friend of a class is a function or
5794 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00005795 // C++0x changes this for both friend types and functions.
5796 // Most C++ 98 compilers do seem to give an error here, so
5797 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00005798 if (!Previous.empty() && DC->Equals(CurContext)
5799 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00005800 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5801 }
5802
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005803 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00005804 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00005805 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
5806 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
5807 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00005808 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00005809 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
5810 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall07e91c02009-08-06 02:15:43 +00005811 return DeclPtrTy();
5812 }
John McCall07e91c02009-08-06 02:15:43 +00005813 }
5814
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005815 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00005816 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00005817 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00005818 IsDefinition,
5819 Redeclaration);
John McCallaa74a0c2009-08-28 07:59:38 +00005820 if (!ND) return DeclPtrTy();
John McCall759e32b2009-08-31 22:39:49 +00005821
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005822 assert(ND->getDeclContext() == DC);
5823 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00005824
John McCall759e32b2009-08-31 22:39:49 +00005825 // Add the function declaration to the appropriate lookup tables,
5826 // adjusting the redeclarations list as necessary. We don't
5827 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00005828 //
John McCall759e32b2009-08-31 22:39:49 +00005829 // Also update the scope-based lookup if the target context's
5830 // lookup context is in lexical scope.
5831 if (!CurContext->isDependentContext()) {
5832 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005833 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00005834 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005835 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00005836 }
John McCallaa74a0c2009-08-28 07:59:38 +00005837
5838 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005839 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00005840 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00005841 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00005842 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00005843
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005844 return DeclPtrTy::make(ND);
Anders Carlsson38811702009-05-11 22:55:49 +00005845}
5846
Chris Lattner83f095c2009-03-28 19:18:32 +00005847void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00005848 AdjustDeclIfTemplate(dcl);
Mike Stump11289f42009-09-09 15:08:12 +00005849
Chris Lattner83f095c2009-03-28 19:18:32 +00005850 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redlf769df52009-03-24 22:27:57 +00005851 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
5852 if (!Fn) {
5853 Diag(DelLoc, diag::err_deleted_non_function);
5854 return;
5855 }
5856 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
5857 Diag(DelLoc, diag::err_deleted_decl_not_first);
5858 Diag(Prev->getLocation(), diag::note_previous_declaration);
5859 // If the declaration wasn't the first, we delete the function anyway for
5860 // recovery.
5861 }
5862 Fn->setDeleted();
5863}
Sebastian Redl4c018662009-04-27 21:33:24 +00005864
5865static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
5866 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
5867 ++CI) {
5868 Stmt *SubStmt = *CI;
5869 if (!SubStmt)
5870 continue;
5871 if (isa<ReturnStmt>(SubStmt))
5872 Self.Diag(SubStmt->getSourceRange().getBegin(),
5873 diag::err_return_in_constructor_handler);
5874 if (!isa<Expr>(SubStmt))
5875 SearchForReturnInStmt(Self, SubStmt);
5876 }
5877}
5878
5879void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
5880 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
5881 CXXCatchStmt *Handler = TryBlock->getHandler(I);
5882 SearchForReturnInStmt(*this, Handler);
5883 }
5884}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005885
Mike Stump11289f42009-09-09 15:08:12 +00005886bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005887 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00005888 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
5889 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005890
Chandler Carruth284bb2e2010-02-15 11:53:20 +00005891 if (Context.hasSameType(NewTy, OldTy) ||
5892 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005893 return false;
Mike Stump11289f42009-09-09 15:08:12 +00005894
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005895 // Check if the return types are covariant
5896 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00005897
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005898 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005899 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
5900 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005901 NewClassTy = NewPT->getPointeeType();
5902 OldClassTy = OldPT->getPointeeType();
5903 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005904 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
5905 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
5906 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
5907 NewClassTy = NewRT->getPointeeType();
5908 OldClassTy = OldRT->getPointeeType();
5909 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005910 }
5911 }
Mike Stump11289f42009-09-09 15:08:12 +00005912
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005913 // The return types aren't either both pointers or references to a class type.
5914 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00005915 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005916 diag::err_different_return_type_for_overriding_virtual_function)
5917 << New->getDeclName() << NewTy << OldTy;
5918 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00005919
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005920 return true;
5921 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005922
Anders Carlssone60365b2009-12-31 18:34:24 +00005923 // C++ [class.virtual]p6:
5924 // If the return type of D::f differs from the return type of B::f, the
5925 // class type in the return type of D::f shall be complete at the point of
5926 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00005927 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
5928 if (!RT->isBeingDefined() &&
5929 RequireCompleteType(New->getLocation(), NewClassTy,
5930 PDiag(diag::err_covariant_return_incomplete)
5931 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00005932 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00005933 }
Anders Carlssone60365b2009-12-31 18:34:24 +00005934
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00005935 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005936 // Check if the new class derives from the old class.
5937 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
5938 Diag(New->getLocation(),
5939 diag::err_covariant_return_not_derived)
5940 << New->getDeclName() << NewTy << OldTy;
5941 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5942 return true;
5943 }
Mike Stump11289f42009-09-09 15:08:12 +00005944
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005945 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00005946 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00005947 diag::err_covariant_return_inaccessible_base,
5948 diag::err_covariant_return_ambiguous_derived_to_base_conv,
5949 // FIXME: Should this point to the return type?
5950 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005951 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5952 return true;
5953 }
5954 }
Mike Stump11289f42009-09-09 15:08:12 +00005955
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005956 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005957 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005958 Diag(New->getLocation(),
5959 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005960 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005961 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5962 return true;
5963 };
Mike Stump11289f42009-09-09 15:08:12 +00005964
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005965
5966 // The new class type must have the same or less qualifiers as the old type.
5967 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
5968 Diag(New->getLocation(),
5969 diag::err_covariant_return_type_class_type_more_qualified)
5970 << New->getDeclName() << NewTy << OldTy;
5971 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5972 return true;
5973 };
Mike Stump11289f42009-09-09 15:08:12 +00005974
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005975 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005976}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005977
Alexis Hunt96d5c762009-11-21 08:43:09 +00005978bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
5979 const CXXMethodDecl *Old)
5980{
5981 if (Old->hasAttr<FinalAttr>()) {
5982 Diag(New->getLocation(), diag::err_final_function_overridden)
5983 << New->getDeclName();
5984 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5985 return true;
5986 }
5987
5988 return false;
5989}
5990
Douglas Gregor21920e372009-12-01 17:24:26 +00005991/// \brief Mark the given method pure.
5992///
5993/// \param Method the method to be marked pure.
5994///
5995/// \param InitRange the source range that covers the "0" initializer.
5996bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
5997 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
5998 Method->setPure();
5999
6000 // A class is abstract if at least one function is pure virtual.
6001 Method->getParent()->setAbstract(true);
6002 return false;
6003 }
6004
6005 if (!Method->isInvalidDecl())
6006 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6007 << Method->getDeclName() << InitRange;
6008 return true;
6009}
6010
John McCall1f4ee7b2009-12-19 09:28:58 +00006011/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6012/// an initializer for the out-of-line declaration 'Dcl'. The scope
6013/// is a fresh scope pushed for just this purpose.
6014///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006015/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6016/// static data member of class X, names should be looked up in the scope of
6017/// class X.
6018void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006019 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006020 Decl *D = Dcl.getAs<Decl>();
6021 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006022
John McCall1f4ee7b2009-12-19 09:28:58 +00006023 // We should only get called for declarations with scope specifiers, like:
6024 // int foo::bar;
6025 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006026 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006027}
6028
6029/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall1f4ee7b2009-12-19 09:28:58 +00006030/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006031void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006032 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006033 Decl *D = Dcl.getAs<Decl>();
6034 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006035
John McCall1f4ee7b2009-12-19 09:28:58 +00006036 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006037 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006038}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006039
6040/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6041/// C++ if/switch/while/for statement.
6042/// e.g: "if (int x = f()) {...}"
6043Action::DeclResult
6044Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6045 // C++ 6.4p2:
6046 // The declarator shall not specify a function or an array.
6047 // The type-specifier-seq shall not contain typedef and shall not declare a
6048 // new class or enumeration.
6049 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6050 "Parser allowed 'typedef' as storage class of condition decl.");
6051
John McCallbcd03502009-12-07 02:54:59 +00006052 TypeSourceInfo *TInfo = 0;
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006053 TagDecl *OwnedTag = 0;
John McCallbcd03502009-12-07 02:54:59 +00006054 QualType Ty = GetTypeForDeclarator(D, S, &TInfo, &OwnedTag);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006055
6056 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6057 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6058 // would be created and CXXConditionDeclExpr wants a VarDecl.
6059 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6060 << D.getSourceRange();
6061 return DeclResult();
6062 } else if (OwnedTag && OwnedTag->isDefinition()) {
6063 // The type-specifier-seq shall not declare a new class or enumeration.
6064 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6065 }
6066
6067 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6068 if (!Dcl)
6069 return DeclResult();
6070
6071 VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>());
6072 VD->setDeclaredInCondition(true);
6073 return Dcl;
6074}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006075
Douglas Gregor88d292c2010-05-13 16:44:06 +00006076void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6077 bool DefinitionRequired) {
6078 // Ignore any vtable uses in unevaluated operands or for classes that do
6079 // not have a vtable.
6080 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6081 CurContext->isDependentContext() ||
6082 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006083 return;
6084
Douglas Gregor88d292c2010-05-13 16:44:06 +00006085 // Try to insert this class into the map.
6086 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6087 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6088 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6089 if (!Pos.second) {
6090 Pos.first->second = Pos.first->second || DefinitionRequired;
6091 return;
6092 }
6093
6094 // Local classes need to have their virtual members marked
6095 // immediately. For all other classes, we mark their virtual members
6096 // at the end of the translation unit.
6097 if (Class->isLocalClass())
6098 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006099 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006100 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006101}
6102
Douglas Gregor88d292c2010-05-13 16:44:06 +00006103bool Sema::DefineUsedVTables() {
6104 // If any dynamic classes have their key function defined within
6105 // this translation unit, then those vtables are considered "used" and must
6106 // be emitted.
6107 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6108 if (const CXXMethodDecl *KeyFunction
6109 = Context.getKeyFunction(DynamicClasses[I])) {
6110 const FunctionDecl *Definition = 0;
Douglas Gregor83de20f2010-05-14 04:08:48 +00006111 if (KeyFunction->getBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006112 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6113 }
6114 }
6115
6116 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006117 return false;
6118
Douglas Gregor88d292c2010-05-13 16:44:06 +00006119 // Note: The VTableUses vector could grow as a result of marking
6120 // the members of a class as "used", so we check the size each
6121 // time through the loop and prefer indices (with are stable) to
6122 // iterators (which are not).
6123 for (unsigned I = 0; I != VTableUses.size(); ++I) {
6124 CXXRecordDecl *Class
6125 = cast_or_null<CXXRecordDecl>(VTableUses[I].first)->getDefinition();
6126 if (!Class)
6127 continue;
6128
6129 SourceLocation Loc = VTableUses[I].second;
6130
6131 // If this class has a key function, but that key function is
6132 // defined in another translation unit, we don't need to emit the
6133 // vtable even though we're using it.
6134 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
6135 if (KeyFunction && !KeyFunction->getBody()) {
6136 switch (KeyFunction->getTemplateSpecializationKind()) {
6137 case TSK_Undeclared:
6138 case TSK_ExplicitSpecialization:
6139 case TSK_ExplicitInstantiationDeclaration:
6140 // The key function is in another translation unit.
6141 continue;
6142
6143 case TSK_ExplicitInstantiationDefinition:
6144 case TSK_ImplicitInstantiation:
6145 // We will be instantiating the key function.
6146 break;
6147 }
6148 } else if (!KeyFunction) {
6149 // If we have a class with no key function that is the subject
6150 // of an explicit instantiation declaration, suppress the
6151 // vtable; it will live with the explicit instantiation
6152 // definition.
6153 bool IsExplicitInstantiationDeclaration
6154 = Class->getTemplateSpecializationKind()
6155 == TSK_ExplicitInstantiationDeclaration;
6156 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6157 REnd = Class->redecls_end();
6158 R != REnd; ++R) {
6159 TemplateSpecializationKind TSK
6160 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6161 if (TSK == TSK_ExplicitInstantiationDeclaration)
6162 IsExplicitInstantiationDeclaration = true;
6163 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6164 IsExplicitInstantiationDeclaration = false;
6165 break;
6166 }
6167 }
6168
6169 if (IsExplicitInstantiationDeclaration)
6170 continue;
6171 }
6172
6173 // Mark all of the virtual members of this class as referenced, so
6174 // that we can build a vtable. Then, tell the AST consumer that a
6175 // vtable for this class is required.
6176 MarkVirtualMembersReferenced(Loc, Class);
6177 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6178 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6179
6180 // Optionally warn if we're emitting a weak vtable.
6181 if (Class->getLinkage() == ExternalLinkage &&
6182 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
6183 if (!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
6184 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6185 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006186 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006187 VTableUses.clear();
6188
Anders Carlsson82fccd02009-12-07 08:24:59 +00006189 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006190}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006191
Rafael Espindola5b334082010-03-26 00:36:59 +00006192void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6193 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006194 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6195 e = RD->method_end(); i != e; ++i) {
6196 CXXMethodDecl *MD = *i;
6197
6198 // C++ [basic.def.odr]p2:
6199 // [...] A virtual member function is used if it is not pure. [...]
6200 if (MD->isVirtual() && !MD->isPure())
6201 MarkDeclarationReferenced(Loc, MD);
6202 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006203
6204 // Only classes that have virtual bases need a VTT.
6205 if (RD->getNumVBases() == 0)
6206 return;
6207
6208 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6209 e = RD->bases_end(); i != e; ++i) {
6210 const CXXRecordDecl *Base =
6211 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6212 if (i->isVirtual())
6213 continue;
6214 if (Base->getNumVBases() == 0)
6215 continue;
6216 MarkVirtualMembersReferenced(Loc, Base);
6217 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006218}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006219
6220/// SetIvarInitializers - This routine builds initialization ASTs for the
6221/// Objective-C implementation whose ivars need be initialized.
6222void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6223 if (!getLangOptions().CPlusPlus)
6224 return;
6225 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6226 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6227 CollectIvarsToConstructOrDestruct(OID, ivars);
6228 if (ivars.empty())
6229 return;
6230 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6231 for (unsigned i = 0; i < ivars.size(); i++) {
6232 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00006233 if (Field->isInvalidDecl())
6234 continue;
6235
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006236 CXXBaseOrMemberInitializer *Member;
6237 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6238 InitializationKind InitKind =
6239 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6240
6241 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6242 Sema::OwningExprResult MemberInit =
6243 InitSeq.Perform(*this, InitEntity, InitKind,
6244 Sema::MultiExprArg(*this, 0, 0));
6245 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6246 // Note, MemberInit could actually come back empty if no initialization
6247 // is required (e.g., because it would call a trivial default constructor)
6248 if (!MemberInit.get() || MemberInit.isInvalid())
6249 continue;
6250
6251 Member =
6252 new (Context) CXXBaseOrMemberInitializer(Context,
6253 Field, SourceLocation(),
6254 SourceLocation(),
6255 MemberInit.takeAs<Expr>(),
6256 SourceLocation());
6257 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00006258
6259 // Be sure that the destructor is accessible and is marked as referenced.
6260 if (const RecordType *RecordTy
6261 = Context.getBaseElementType(Field->getType())
6262 ->getAs<RecordType>()) {
6263 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
6264 if (CXXDestructorDecl *Destructor
6265 = const_cast<CXXDestructorDecl*>(RD->getDestructor(Context))) {
6266 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6267 CheckDestructorAccess(Field->getLocation(), Destructor,
6268 PDiag(diag::err_access_dtor_ivar)
6269 << Context.getBaseElementType(Field->getType()));
6270 }
6271 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006272 }
6273 ObjCImplementation->setIvarInitializers(Context,
6274 AllToInit.data(), AllToInit.size());
6275 }
6276}